diff --git a/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs b/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs index 8c24ce008a2f3..42b47ddad2bee 100644 --- a/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs +++ b/common/ManagementTestShared/Redesign/ManagementRecordedTestBase.cs @@ -117,7 +117,7 @@ protected void CleanupResourceGroups() { try { - _cleanupClient.GetManagementGroupOperations(mgmtGroupId).StartDelete(); + _cleanupClient.GetManagementGroup(mgmtGroupId).StartDelete(); } catch (RequestFailedException e) when (e.Status == 404 || e.Status == 403) { @@ -206,7 +206,7 @@ public void OneTimeCleanupResourceGroups() }); Parallel.ForEach(OneTimeManagementGroupCleanupPolicy.ManagementGroupsCreated, mgmtGroupId => { - _cleanupClient.GetManagementGroupOperations(mgmtGroupId).StartDelete(); + _cleanupClient.GetManagementGroup(mgmtGroupId).StartDelete(); }); } diff --git a/common/Perf/Azure.Test.Perf/PerfOptions.cs b/common/Perf/Azure.Test.Perf/PerfOptions.cs index 6e440ab37dd69..dae55b1b3523e 100644 --- a/common/Perf/Azure.Test.Perf/PerfOptions.cs +++ b/common/Perf/Azure.Test.Perf/PerfOptions.cs @@ -11,9 +11,6 @@ public class PerfOptions [Option('d', "duration", Default = 10, HelpText = "Duration of test in seconds")] public int Duration { get; set; } - [Option("host", HelpText = "Host to redirect HTTP requests")] - public string Host { get; set; } - [Option("insecure", HelpText = "Allow untrusted SSL certs")] public bool Insecure { get; set; } @@ -44,9 +41,6 @@ public class PerfOptions [Option('p', "parallel", Default = 1, HelpText = "Number of operations to execute in parallel")] public int Parallel { get; set; } - [Option("port", HelpText = "Port to redirect HTTP requests")] - public int? Port { get; set; } - [Option('r', "rate", HelpText = "Target throughput (ops/sec)")] public int? Rate { get; set; } diff --git a/eng/CredScanSuppression.json b/eng/CredScanSuppression.json index e7b69666826f9..44f57aebf29f2 100644 --- a/eng/CredScanSuppression.json +++ b/eng/CredScanSuppression.json @@ -4,6 +4,7 @@ { "placeholder": [ "Sanitized", + "%2BLsuqDlN8Us5lp%2FGdyEUMnU1XA4HdXx%2BJUdtkRNr7qI%3D", "fake", "Test12345", "default", @@ -51,6 +52,7 @@ "file":[ "sdk/identity/Azure.Identity/tests/Data/cert.pfx", "sdk/identity/Azure.Identity/tests/Data/cert-invalid-data.pem", + "sdk/identity/Azure.Identity/tests/Data/cert-password-protected.pfx", "sdk/identity/Azure.Identity/tests/Data/cert.pem", "sdk/identity/Azure.Identity/tests/Data/mock-arc-mi-key.key", "sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Common/tests/cert.pem" diff --git a/eng/Directory.Build.Common.props b/eng/Directory.Build.Common.props index 027407069b52f..e8b4c07363515 100644 --- a/eng/Directory.Build.Common.props +++ b/eng/Directory.Build.Common.props @@ -126,7 +126,7 @@ - + diff --git a/eng/Packages.Data.props b/eng/Packages.Data.props index 752e73a3ca86a..1f095f28d9d7c 100644 --- a/eng/Packages.Data.props +++ b/eng/Packages.Data.props @@ -12,7 +12,7 @@ --> - + @@ -79,7 +79,7 @@ - + @@ -122,7 +122,7 @@ - + @@ -173,8 +173,10 @@ + + - + diff --git a/eng/common/scripts/stress-testing/deploy-stress-tests.ps1 b/eng/common/scripts/stress-testing/deploy-stress-tests.ps1 index 1d8d958a2cd06..25af8c9edd729 100644 --- a/eng/common/scripts/stress-testing/deploy-stress-tests.ps1 +++ b/eng/common/scripts/stress-testing/deploy-stress-tests.ps1 @@ -116,10 +116,15 @@ function DeployStressPackage( exit 1 } - if ($pushImages) { - Run helm dependency update $pkg.Directory - if ($LASTEXITCODE) { return $LASTEXITCODE } + Run helm dependency update $pkg.Directory + if ($LASTEXITCODE) { return } + + if (Test-Path "$($pkg.Directory)/test-resources.bicep") { + Run az bicep build -f "$($pkg.Directory)/test-resources.bicep" + if ($LASTEXITCODE) { return } + } + if ($pushImages) { $dockerFiles = Get-ChildItem "$($pkg.Directory)/Dockerfile*" foreach ($dockerFile in $dockerFiles) { # Infer docker image name from parent directory name, if file is named `Dockerfile` @@ -131,13 +136,13 @@ function DeployStressPackage( $imageTag = "${registry}.azurecr.io/$($repository.ToLower())/$($imageName):$deployId" Write-Host "Building and pushing stress test docker image '$imageTag'" Run docker build -t $imageTag -f $dockerFile.FullName $dockerFile.DirectoryName - if ($LASTEXITCODE) { return $LASTEXITCODE } + if ($LASTEXITCODE) { return } Run docker push $imageTag if ($LASTEXITCODE) { if ($PSCmdlet.ParameterSetName -ne 'DoLogin') { Write-Warning "If docker push is failing due to authentication issues, try calling this script with '-Login'" } - return $LASTEXITCODE + return } } } @@ -157,7 +162,7 @@ function DeployStressPackage( # can be the result of cancelled `upgrade` operations (e.g. ctrl-c). # See https://github.com/helm/helm/issues/4558 Write-Warning "The issue may be fixable by first running 'helm rollback -n $($pkg.Namespace) $($pkg.ReleaseName)'" - return $LASTEXITCODE + return } # Helm 3 stores release information in kubernetes secrets. The only way to add extra labels around diff --git a/eng/mgmt/mgmtmetadata/containerinstance_resource-manager.txt b/eng/mgmt/mgmtmetadata/containerinstance_resource-manager.txt index f18ab53d66c02..3bab65895ea44 100644 --- a/eng/mgmt/mgmtmetadata/containerinstance_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/containerinstance_resource-manager.txt @@ -3,12 +3,12 @@ AutoRest installed successfully. Commencing code generation Generating CSharp code Executing AutoRest command -cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/containerinstance/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\Users\nochangi\DEV\azure-sdk-for-net\sdk -2020-06-21 05:01:44 UTC +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/containerinstance/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\Users\josephporter\source\azure-sdk-for-net\sdk +2021-08-03 18:23:56 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: ae8d69cc6c78331c24b13951979bf171bf132d26 +Commit: c25e3a8c81feb4e965d65e8584262fea42b5da0a AutoRest information Requested version: v2 Bootstrapper version: autorest@2.0.4413 diff --git a/eng/mgmt/mgmtmetadata/sql_resource-manager.txt b/eng/mgmt/mgmtmetadata/sql_resource-manager.txt index 5a9a8a1f62fd0..f8fb1dc239544 100644 --- a/eng/mgmt/mgmtmetadata/sql_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/sql_resource-manager.txt @@ -3,13 +3,13 @@ AutoRest installed successfully. Commencing code generation Generating CSharp code Executing AutoRest command -cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/sql/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=D:\azure-sdk-for-net\sdk +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/sql/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\azure-sdk-for-net\sdk Autorest CSharp Version: 2.3.82 -2021-06-22 17:21:35 UTC +2021-08-05 17:02:22 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: 78c2a3fb24bfd4cd3372520bb9df203561c71487 +Commit: 111fbceeeb7c2c4905b80fe2ab760e5564b3458a AutoRest information Requested version: v2 Bootstrapper version: autorest@2.0.4413 diff --git a/samples/CloudClipboard/CloudClipboard/CloudClipboard.csproj b/samples/CloudClipboard/CloudClipboard/CloudClipboard.csproj index 0d0487505f69f..5eaab8d209e93 100644 --- a/samples/CloudClipboard/CloudClipboard/CloudClipboard.csproj +++ b/samples/CloudClipboard/CloudClipboard/CloudClipboard.csproj @@ -11,7 +11,7 @@ - + diff --git a/samples/linecounter/LineCounter.csproj b/samples/linecounter/LineCounter.csproj index 41dd6fec68d01..8f3c616021b2b 100644 --- a/samples/linecounter/LineCounter.csproj +++ b/samples/linecounter/LineCounter.csproj @@ -8,11 +8,11 @@ - + - \ No newline at end of file + diff --git a/sdk/appconfiguration/Azure.Data.AppConfiguration/CHANGELOG.md b/sdk/appconfiguration/Azure.Data.AppConfiguration/CHANGELOG.md index 781aad70d0780..38b9e5c165715 100644 --- a/sdk/appconfiguration/Azure.Data.AppConfiguration/CHANGELOG.md +++ b/sdk/appconfiguration/Azure.Data.AppConfiguration/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.2.0-beta.1 (Unreleased) +## 1.2.0-beta.2 (Unreleased) ### Features Added @@ -10,6 +10,12 @@ ### Other Changes +## 1.2.0-beta.1 (2021-08-10) + +### Features Added + +- Added a `ConfigurationSetting` constructor parameter to set an `ETag`. + ## 1.1.0 (2021-07-06) ### Breaking Changes diff --git a/sdk/appconfiguration/Azure.Data.AppConfiguration/src/Azure.Data.AppConfiguration.csproj b/sdk/appconfiguration/Azure.Data.AppConfiguration/src/Azure.Data.AppConfiguration.csproj index 55c910c357a23..ffdda41b5772c 100644 --- a/sdk/appconfiguration/Azure.Data.AppConfiguration/src/Azure.Data.AppConfiguration.csproj +++ b/sdk/appconfiguration/Azure.Data.AppConfiguration/src/Azure.Data.AppConfiguration.csproj @@ -3,7 +3,7 @@ This is the Microsoft Azure Application Configuration Service client library Microsoft Azure.Data.AppConfiguration client library - 1.2.0-beta.1 + 1.2.0-beta.2 1.1.0 Microsoft Azure Application Configuration;Data;AppConfig;$(PackageCommonTags) diff --git a/sdk/batch/Microsoft.Azure.Batch/CHANGELOG.md b/sdk/batch/Microsoft.Azure.Batch/CHANGELOG.md index 1fe934fba2924..0d2a3d4a8a010 100644 --- a/sdk/batch/Microsoft.Azure.Batch/CHANGELOG.md +++ b/sdk/batch/Microsoft.Azure.Batch/CHANGELOG.md @@ -1,14 +1,10 @@ # Release History -## 15.1.0-beta.1 (Unreleased) +## 15.1.0 (2021-08-10) ### Features Added -### Breaking Changes - -### Bugs Fixed - -### Other Changes +- Added an identity reference argument to various constructors and utility functions to make identities easier to use. ## 15.0.0 (2021-07-30) diff --git a/sdk/batch/Microsoft.Azure.Batch/Tools/ObjectModelCodeGenerator/Spec/AzureBlobFileSystemConfiguration.json b/sdk/batch/Microsoft.Azure.Batch/Tools/ObjectModelCodeGenerator/Spec/AzureBlobFileSystemConfiguration.json index 39304ba9350b1..bb1030750cdec 100644 --- a/sdk/batch/Microsoft.Azure.Batch/Tools/ObjectModelCodeGenerator/Spec/AzureBlobFileSystemConfiguration.json +++ b/sdk/batch/Microsoft.Azure.Batch/Tools/ObjectModelCodeGenerator/Spec/AzureBlobFileSystemConfiguration.json @@ -87,7 +87,8 @@ "SummaryComment": "The reference to the user assigned identity to use to access containerName", "RemarksComment": "This property is mutually exclusive with both accountKey and sasKey; exactly one must be specified.", "BoundAccess": "read", - "UnboundAccess": "read,write" + "UnboundAccess": "read,write", + "ConstructorArgumentType": "Optional" }, "Value": null } diff --git a/sdk/batch/Microsoft.Azure.Batch/Tools/ObjectModelCodeGenerator/Spec/ContainerRegistry.json b/sdk/batch/Microsoft.Azure.Batch/Tools/ObjectModelCodeGenerator/Spec/ContainerRegistry.json index 9fbfd46616128..373a4323eaef3 100644 --- a/sdk/batch/Microsoft.Azure.Batch/Tools/ObjectModelCodeGenerator/Spec/ContainerRegistry.json +++ b/sdk/batch/Microsoft.Azure.Batch/Tools/ObjectModelCodeGenerator/Spec/ContainerRegistry.json @@ -13,7 +13,7 @@ "RemarksComment": null, "BoundAccess": "read", "UnboundAccess": "read,write", - "ConstructorArgumentType": "Required", + "ConstructorArgumentType": "Optional", "HideSetter": true }, "Value": null diff --git a/sdk/batch/Microsoft.Azure.Batch/src/AzureBlobFileSystemConfiguration.cs b/sdk/batch/Microsoft.Azure.Batch/src/AzureBlobFileSystemConfiguration.cs index 30e921ffffeaa..b5ecb497faad0 100644 --- a/sdk/batch/Microsoft.Azure.Batch/src/AzureBlobFileSystemConfiguration.cs +++ b/sdk/batch/Microsoft.Azure.Batch/src/AzureBlobFileSystemConfiguration.cs @@ -25,5 +25,23 @@ public AzureBlobFileSystemConfiguration( SasKey = key.SasKey; AccountKey = key.AccountKey; } + + /// + /// Initializes a new instance of the class. + /// + /// The Azure Storage account name. + /// The Azure Blob Storage Container name. + /// The relative path on the compute node where the file system will be mounted. + /// The managed identity to use to authenticate with Azure Storage. + /// Additional command line options to pass to the mount command. + public AzureBlobFileSystemConfiguration( + string accountName, + string containerName, + string relativeMountPath, + ComputeNodeIdentityReference identityReference, + string blobfuseOptions = default(string)) : this(accountName, containerName, relativeMountPath, blobfuseOptions: blobfuseOptions) + { + IdentityReference = identityReference; + } } } diff --git a/sdk/batch/Microsoft.Azure.Batch/src/ComputeNode.cs b/sdk/batch/Microsoft.Azure.Batch/src/ComputeNode.cs index ac0e39ec5f470..b211f653d0223 100644 --- a/sdk/batch/Microsoft.Azure.Batch/src/ComputeNode.cs +++ b/sdk/batch/Microsoft.Azure.Batch/src/ComputeNode.cs @@ -44,7 +44,7 @@ public Task DeleteComputeNodeUserAsync( IEnumerable additionalBehaviors = null, CancellationToken cancellationToken = default(CancellationToken)) { - // create the behavior managaer + // create the behavior manager BehaviorManager bhMgr = new BehaviorManager(this.CustomBehaviors, additionalBehaviors); Task asyncTask = this.parentBatchClient.ProtocolLayer.DeleteComputeNodeUser(this.parentPoolId, this.Id, userName, bhMgr, cancellationToken); @@ -73,7 +73,7 @@ public void DeleteComputeNodeUser(string userName, IEnumerableA object that represents the asynchronous operation. public Task GetRDPFileAsync(Stream rdpStream, IEnumerable additionalBehaviors = null, CancellationToken cancellationToken = default(CancellationToken)) { - // create the behavior managaer + // create the behavior manager BehaviorManager bhMgr = new BehaviorManager(this.CustomBehaviors, additionalBehaviors); Task asyncTask = this.parentBatchClient.ProtocolLayer.GetComputeNodeRDPFile(this.parentPoolId, this.Id, rdpStream, bhMgr, cancellationToken); @@ -104,7 +104,7 @@ public Task GetRDPFileAsync( IEnumerable additionalBehaviors = null, CancellationToken cancellationToken = default(CancellationToken)) { - // create the behavior managaer + // create the behavior manager BehaviorManager bhMgr = new BehaviorManager(this.CustomBehaviors, additionalBehaviors); Task asyncTask = this.parentBatchClient.PoolOperations.GetRDPFileViaFileNameAsyncImpl(this.parentPoolId, this.Id, rdpFileNameToCreate, bhMgr, cancellationToken); @@ -183,7 +183,7 @@ public Task RemoveFromPoolAsync( IEnumerable additionalBehaviors = null, CancellationToken cancellationToken = default(CancellationToken)) { - // create the behavior managaer + // create the behavior manager BehaviorManager bhMgr = new BehaviorManager(this.CustomBehaviors, additionalBehaviors); List computeNodeIds = new List {this.Id}; @@ -508,6 +508,51 @@ public System.Threading.Tasks.Task UploadComputeNo containerUrl, startTime, endTime, + null, + bhMgr, + cancellationToken); + } + + /// + /// Upload Azure Batch service log files from the compute node. + /// + /// + /// The URL of the container within Azure Blob Storage to which to upload the Batch Service log file(s). The URL must include a Shared Access Signature (SAS) granting write permissions to the container. + /// + /// A managed identity to use for writing to the container. + /// + /// The start of the time range from which to upload Batch Service log file(s). Any log file containing a log message in the time range will be uploaded. + /// This means that the operation might retrieve more logs than have been requested since the entire log file is always uploaded. + /// + /// + /// The end of the time range from which to upload Batch Service log file(s). Any log file containing a log message in the time range will be uploaded. + /// This means that the operation might retrieve more logs than have been requested since the entire log file is always uploaded. If this is omitted, the default is the current time. + /// + /// A collection of instances that are applied to the Batch service request after the . + /// A for controlling the lifetime of the asynchronous operation. + /// A that represents the asynchronous operation. + /// + /// This is for gathering Azure Batch service log files in an automated fashion from nodes if you are experiencing an error and wish to escalate to Azure support. + /// The Azure Batch service log files should be shared with Azure support to aid in debugging issues with the Batch service. + /// + public System.Threading.Tasks.Task UploadComputeNodeBatchServiceLogsAsync( + string containerUrl, + ComputeNodeIdentityReference identityReference, + DateTime startTime, + DateTime? endTime = null, + IEnumerable additionalBehaviors = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + // craft the behavior manager for this call + BehaviorManager bhMgr = new BehaviorManager(this.CustomBehaviors, additionalBehaviors); + + return this.parentBatchClient.PoolOperations.UploadComputeNodeBatchServiceLogsAsyncImpl( + this.parentPoolId, + this.Id, + containerUrl, + startTime, + endTime, + identityReference, bhMgr, cancellationToken); } @@ -546,6 +591,43 @@ public UploadBatchServiceLogsResult UploadComputeNodeBatchServiceLogs( return asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); } + /// + /// Upload Azure Batch service log files from the specified compute node. + /// + /// + /// The URL of the container within Azure Blob Storage to which to upload the Batch Service log file(s). The URL must include a Shared Access Signature (SAS) granting write permissions to the container. + /// + /// A managed identity to use for writing to the container. + /// + /// The start of the time range from which to upload Batch Service log file(s). Any log file containing a log message in the time range will be uploaded. + /// This means that the operation might retrieve more logs than have been requested since the entire log file is always uploaded. + /// + /// + /// The end of the time range from which to upload Batch Service log file(s). Any log file containing a log message in the time range will be uploaded. + /// This means that the operation might retrieve more logs than have been requested since the entire log file is always uploaded. If this is omitted, the default is the current time. + /// + /// A collection of instances that are applied to the Batch service request after the . + /// + /// This is for gathering Azure Batch service log files in an automated fashion from nodes if you are experiencing an error and wish to escalate to Azure support. + /// The Azure Batch service log files should be shared with Azure support to aid in debugging issues with the Batch service. + /// + /// The result of uploading the batch service logs. + public UploadBatchServiceLogsResult UploadComputeNodeBatchServiceLogs( + string containerUrl, + ComputeNodeIdentityReference identityReference, + DateTime startTime, + DateTime? endTime = null, + IEnumerable additionalBehaviors = null) + { + var asyncTask = this.UploadComputeNodeBatchServiceLogsAsync( + containerUrl, + identityReference, + startTime, + endTime, + additionalBehaviors); + return asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + } + #endregion ComputeNode #region IRefreshable @@ -559,7 +641,7 @@ public UploadBatchServiceLogsResult UploadComputeNodeBatchServiceLogs( /// A representing the asynchronous refresh operation. public async Task RefreshAsync(DetailLevel detailLevel = null, IEnumerable additionalBehaviors = null, CancellationToken cancellationToken = default(CancellationToken)) { - // create the behavior managaer + // create the behavior manager BehaviorManager bhMgr = new BehaviorManager(this.CustomBehaviors, additionalBehaviors, detailLevel); System.Threading.Tasks.Task> asyncTask = diff --git a/sdk/batch/Microsoft.Azure.Batch/src/Generated/AzureBlobFileSystemConfiguration.cs b/sdk/batch/Microsoft.Azure.Batch/src/Generated/AzureBlobFileSystemConfiguration.cs index 86fb4655e8cb3..6d6b5df94cd4d 100644 --- a/sdk/batch/Microsoft.Azure.Batch/src/Generated/AzureBlobFileSystemConfiguration.cs +++ b/sdk/batch/Microsoft.Azure.Batch/src/Generated/AzureBlobFileSystemConfiguration.cs @@ -89,13 +89,15 @@ public PropertyContainer(Models.AzureBlobFileSystemConfiguration protocolObject) /// The Azure Storage Account key. This property is mutually exclusive with . /// The Azure Storage SAS token. This property is mutually exclusive with . /// Additional command line options to pass to the mount command. + /// The reference to the user assigned identity to use to access containerName internal AzureBlobFileSystemConfiguration( string accountName, string containerName, string relativeMountPath, string accountKey = default(string), string sasKey = default(string), - string blobfuseOptions = default(string)) + string blobfuseOptions = default(string), + ComputeNodeIdentityReference identityReference = default(ComputeNodeIdentityReference)) { this.propertyContainer = new PropertyContainer(); this.AccountName = accountName; @@ -104,6 +106,7 @@ internal AzureBlobFileSystemConfiguration( this.AccountKey = accountKey; this.SasKey = sasKey; this.BlobfuseOptions = blobfuseOptions; + this.IdentityReference = identityReference; } internal AzureBlobFileSystemConfiguration(Models.AzureBlobFileSystemConfiguration protocolObject) diff --git a/sdk/batch/Microsoft.Azure.Batch/src/Generated/ContainerRegistry.cs b/sdk/batch/Microsoft.Azure.Batch/src/Generated/ContainerRegistry.cs index 547c882b01407..8c4cd5a923386 100644 --- a/sdk/batch/Microsoft.Azure.Batch/src/Generated/ContainerRegistry.cs +++ b/sdk/batch/Microsoft.Azure.Batch/src/Generated/ContainerRegistry.cs @@ -32,7 +32,7 @@ public partial class ContainerRegistry : ITransportObjectProviderThe reference to the user assigned identity to use to access an Azure Container Registry instead of username /// and password. public ContainerRegistry( - string userName, + string userName = default(string), string password = default(string), string registryServer = default(string), ComputeNodeIdentityReference identityReference = default(ComputeNodeIdentityReference)) diff --git a/sdk/batch/Microsoft.Azure.Batch/src/IProtocolLayer.cs b/sdk/batch/Microsoft.Azure.Batch/src/IProtocolLayer.cs index 8386488e46aab..76c18b59d8489 100644 --- a/sdk/batch/Microsoft.Azure.Batch/src/IProtocolLayer.cs +++ b/sdk/batch/Microsoft.Azure.Batch/src/IProtocolLayer.cs @@ -235,6 +235,7 @@ internal interface IProtocolLayer : IDisposable string containerUrl, DateTime startTime, DateTime? endTime, + ComputeNodeIdentityReference identityReference, BehaviorManager bhMgr, CancellationToken cancellationToken); diff --git a/sdk/batch/Microsoft.Azure.Batch/src/Microsoft.Azure.Batch.csproj b/sdk/batch/Microsoft.Azure.Batch/src/Microsoft.Azure.Batch.csproj index 19c417de1a3a8..a3b7ee3f02a58 100644 --- a/sdk/batch/Microsoft.Azure.Batch/src/Microsoft.Azure.Batch.csproj +++ b/sdk/batch/Microsoft.Azure.Batch/src/Microsoft.Azure.Batch.csproj @@ -1,7 +1,7 @@ This client library provides access to the Microsoft Azure Batch service. - 15.1.0-beta.1 + 15.1.0 15.0.0 $(DefineConstants);CODESIGN diff --git a/sdk/batch/Microsoft.Azure.Batch/src/OutputFileBlobContainerDestination.cs b/sdk/batch/Microsoft.Azure.Batch/src/OutputFileBlobContainerDestination.cs new file mode 100644 index 0000000000000..717121e75c6b3 --- /dev/null +++ b/sdk/batch/Microsoft.Azure.Batch/src/OutputFileBlobContainerDestination.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Microsoft.Azure.Batch +{ + public partial class OutputFileBlobContainerDestination + { + /// + /// Initializes a new instance of the class. + /// + /// The URL of the container within Azure Blob Storage to which to upload the file(s). + /// The reference to the user assigned identity to use to access Azure Blob Storage specified by containerUrl + /// The destination blob or virtual directory within the Azure Storage container to which to upload the file(s). + public OutputFileBlobContainerDestination( + string containerUrl, + ComputeNodeIdentityReference identityReference, + string path = default(string)) + { + this.ContainerUrl = containerUrl; + this.IdentityReference = identityReference; + this.Path = path; + } + } +} diff --git a/sdk/batch/Microsoft.Azure.Batch/src/PoolOperations.cs b/sdk/batch/Microsoft.Azure.Batch/src/PoolOperations.cs index 642adead41862..02c413fa22807 100644 --- a/sdk/batch/Microsoft.Azure.Batch/src/PoolOperations.cs +++ b/sdk/batch/Microsoft.Azure.Batch/src/PoolOperations.cs @@ -58,7 +58,7 @@ internal BatchClient ParentBatchClient /// public IList CustomBehaviors { get; set; } -#endregion IInheeritedBehaviors +#endregion IInheritedBehaviors #region // PoolOperations @@ -1912,6 +1912,7 @@ internal async System.Threading.Tasks.Task UploadC string containerUrl, DateTime startTime, DateTime? endTime, + ComputeNodeIdentityReference identityReference, BehaviorManager bhMgr, CancellationToken cancellationToken) { @@ -1921,6 +1922,7 @@ internal async System.Threading.Tasks.Task UploadC containerUrl, startTime, endTime, + identityReference, bhMgr, cancellationToken); @@ -1935,7 +1937,7 @@ internal async System.Threading.Tasks.Task UploadC /// The id of the pool that contains the compute node. /// The id of the compute node. /// - /// The URL of the container within Azure Blob Storage to which to upload the Batch Service log file(s). The URL must include a Shared Access Signature (SAS) granting write permissions to the container. + /// The URL of the container within Azure Blob Storage to which to upload the Batch Service log file(s). If not using a managed identity, the URL must include a Shared Access Signature (SAS) granting write permissions to the container. /// /// /// The start of the time range from which to upload Batch Service log file(s). Any log file containing a log message in the time range will be uploaded. @@ -1970,6 +1972,7 @@ public System.Threading.Tasks.Task UploadComputeNo containerUrl, startTime, endTime, + null, bhMgr, cancellationToken); } @@ -1980,8 +1983,97 @@ public System.Threading.Tasks.Task UploadComputeNo /// The id of the pool that contains the compute node. /// The id of the compute node. /// - /// The URL of the container within Azure Blob Storage to which to upload the Batch Service log file(s). The URL must include a Shared Access Signature (SAS) granting write permissions to the container. + /// The URL of the container within Azure Blob Storage to which to upload the Batch Service log file(s). If not using a managed identity, the URL must include a Shared Access Signature (SAS) granting write permissions to the container. /// + /// A managed identity to use for writing to the container. + /// + /// The start of the time range from which to upload Batch Service log file(s). Any log file containing a log message in the time range will be uploaded. + /// This means that the operation might retrieve more logs than have been requested since the entire log file is always uploaded. + /// + /// + /// The end of the time range from which to upload Batch Service log file(s). Any log file containing a log message in the time range will be uploaded. + /// This means that the operation might retrieve more logs than have been requested since the entire log file is always uploaded. If this is omitted, the default is the current time. + /// + /// A collection of instances that are applied to the Batch service request after the . + /// A for controlling the lifetime of the asynchronous operation. + /// A that represents the asynchronous operation. + /// + /// This is for gathering Azure Batch service log files in an automated fashion from nodes if you are experiencing an error and wish to escalate to Azure support. + /// The Azure Batch service log files should be shared with Azure support to aid in debugging issues with the Batch service. + /// + public System.Threading.Tasks.Task UploadComputeNodeBatchServiceLogsAsync( + string poolId, + string computeNodeId, + string containerUrl, + ComputeNodeIdentityReference identityReference, + DateTime startTime, + DateTime? endTime = null, + IEnumerable additionalBehaviors = null, + CancellationToken cancellationToken = default(CancellationToken)) + { + // craft the behavior manager for this call + BehaviorManager bhMgr = new BehaviorManager(this.CustomBehaviors, additionalBehaviors); + + return UploadComputeNodeBatchServiceLogsAsyncImpl( + poolId, + computeNodeId, + containerUrl, + startTime, + endTime, + identityReference, + bhMgr, + cancellationToken); + } + + /// + /// Upload Azure Batch service log files from the specified compute node. + /// + /// The id of the pool that contains the compute node. + /// The id of the compute node. + /// + /// The URL of the container within Azure Blob Storage to which to upload the Batch Service log file(s). If not using a managed identity, the URL must include a Shared Access Signature (SAS) granting write permissions to the container. + /// + /// + /// The start of the time range from which to upload Batch Service log file(s). Any log file containing a log message in the time range will be uploaded. + /// This means that the operation might retrieve more logs than have been requested since the entire log file is always uploaded. + /// + /// + /// The end of the time range from which to upload Batch Service log file(s). Any log file containing a log message in the time range will be uploaded. + /// This means that the operation might retrieve more logs than have been requested since the entire log file is always uploaded. If this is omitted, the default is the current time. + /// + /// A collection of instances that are applied to the Batch service request after the . + /// + /// This is for gathering Azure Batch service log files in an automated fashion from nodes if you are experiencing an error and wish to escalate to Azure support. + /// The Azure Batch service log files should be shared with Azure support to aid in debugging issues with the Batch service. + /// + /// The result of uploading the batch service logs. + public UploadBatchServiceLogsResult UploadComputeNodeBatchServiceLogs( + string poolId, + string computeNodeId, + string containerUrl, + DateTime startTime, + DateTime? endTime = null, + IEnumerable additionalBehaviors = null) + { + var asyncTask = this.UploadComputeNodeBatchServiceLogsAsync( + poolId, + computeNodeId, + containerUrl, + startTime, + endTime, + additionalBehaviors); + return asyncTask.WaitAndUnaggregateException(this.CustomBehaviors, additionalBehaviors); + } + + /// + /// Upload Azure Batch service log files from the specified compute node. + /// + /// The id of the pool that contains the compute node. + /// The id of the compute node. + /// + /// The URL of the container within Azure Blob Storage to which to upload the Batch Service log file(s). If not using a managed identity, the URL must include a Shared Access Signature (SAS) granting write permissions to the container. + /// + /// A managed identity to use for writing to the container. /// /// The start of the time range from which to upload Batch Service log file(s). Any log file containing a log message in the time range will be uploaded. /// This means that the operation might retrieve more logs than have been requested since the entire log file is always uploaded. @@ -2000,6 +2092,7 @@ public UploadBatchServiceLogsResult UploadComputeNodeBatchServiceLogs( string poolId, string computeNodeId, string containerUrl, + ComputeNodeIdentityReference identityReference, DateTime startTime, DateTime? endTime = null, IEnumerable additionalBehaviors = null) @@ -2008,6 +2101,7 @@ public UploadBatchServiceLogsResult UploadComputeNodeBatchServiceLogs( poolId, computeNodeId, containerUrl, + identityReference, startTime, endTime, additionalBehaviors); diff --git a/sdk/batch/Microsoft.Azure.Batch/src/ProtocolLayer.cs b/sdk/batch/Microsoft.Azure.Batch/src/ProtocolLayer.cs index e7b474cf494d2..a12f46f3cb350 100644 --- a/sdk/batch/Microsoft.Azure.Batch/src/ProtocolLayer.cs +++ b/sdk/batch/Microsoft.Azure.Batch/src/ProtocolLayer.cs @@ -1162,10 +1162,13 @@ internal ProtocolLayer(Protocol.BatchServiceClient clientToUse) string containerUrl, DateTime startTime, DateTime? endTime, + ComputeNodeIdentityReference identityReference, BehaviorManager bhMgr, CancellationToken cancellationToken) { - var parameters = new Models.UploadBatchServiceLogsConfiguration(containerUrl, startTime, endTime); + var identityRefModel = identityReference != null ? new Models.ComputeNodeIdentityReference(identityReference.ResourceId) : null; + + var parameters = new Models.UploadBatchServiceLogsConfiguration(containerUrl, startTime, endTime, identityRefModel); var request = new ComputeNodeUploadBatchServiceLogsBatchRequest(this._client, cancellationToken); request.ServiceRequestFunc = (lambdaCancelToken) => request.RestClient.ComputeNode.UploadBatchServiceLogsWithHttpMessagesAsync( @@ -1856,7 +1859,7 @@ private static void ExecuteRequestInterceptors(IBatchRequest)); - // any changes must be communcated back to the caller + // any changes must be communicated back to the caller request = (Protocol.IBatchRequest)proxyObj; } } @@ -1901,7 +1904,7 @@ private static async Task ExecuteResponseInterceptors( // enforce that the returned object is the required type ValidateReturnObject(responseFromIntercept, typeof(TResponse)); - // promote the intercetor response to official response + // promote the interceptor response to official response response = (TResponse)responseFromIntercept; } } diff --git a/sdk/batch/Microsoft.Azure.Batch/src/ResourceFile.cs b/sdk/batch/Microsoft.Azure.Batch/src/ResourceFile.cs index 13713d80454c8..40c766617992c 100644 --- a/sdk/batch/Microsoft.Azure.Batch/src/ResourceFile.cs +++ b/sdk/batch/Microsoft.Azure.Batch/src/ResourceFile.cs @@ -12,14 +12,27 @@ public partial class ResourceFile /// Creates a new from the specified HTTP URL. /// /// The URL of the file to download. - /// The file permission mode attribute in octal format. - /// The location on the compute node to which to download the file(s), relative to the task's working directory. + /// The location on the compute node to which to download the file(s), relative to the task's working directory. + /// The file permission mode attribute in octal format. /// A from the specified HTTP URL. public static ResourceFile FromUrl(string httpUrl, string filePath, string fileMode = null) { return new ResourceFile(httpUrl: httpUrl, filePath: filePath, fileMode: fileMode); } + /// + /// Creates a new from the specified HTTP URL. + /// + /// The URL of the file to download. + /// The identity to use for accessing the file in Azure Storage + /// The location on the compute node to which to download the file(s), relative to the task's working directory. + /// The file permission mode attribute in octal format. + /// A from the specified HTTP URL. + public static ResourceFile FromUrl(string httpUrl, ComputeNodeIdentityReference identityReference, string filePath, string fileMode = null) + { + return new ResourceFile(httpUrl: httpUrl, filePath: filePath, fileMode: fileMode, identityReference: identityReference); + } + /// /// Creates a new from the specified Azure Storage container URL. /// @@ -34,6 +47,21 @@ public static ResourceFile FromStorageContainerUrl(string storageContainerUrl, s return new ResourceFile(storageContainerUrl: storageContainerUrl, filePath: filePath, blobPrefix: blobPrefix, fileMode: fileMode); } + /// + /// Creates a new from the specified Azure Storage container URL. + /// + /// The URL of the blob container within Azure Blob Storage. + /// The identity to use for accessing the container in Azure Storage + /// The location on the compute node to which to download the file(s), relative to the task's working directory. + /// The blob prefix to use when downloading blobs from an Azure Storage container. Only the blobs whose names begin + /// with the specified prefix will be downloaded. + /// The file permission mode attribute in octal format. + /// A from the specified Azure Storage container URL. + public static ResourceFile FromStorageContainerUrl(string storageContainerUrl, ComputeNodeIdentityReference identityReference, string filePath = null, string blobPrefix = null, string fileMode = null) + { + return new ResourceFile(storageContainerUrl: storageContainerUrl, filePath: filePath, blobPrefix: blobPrefix, fileMode: fileMode, identityReference: identityReference); + } + /// /// Creates a new from the specified auto storage container name. /// diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/AzSdk.RP.props b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/AzSdk.RP.props index fc8a62b985e8c..91a0977596980 100644 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/AzSdk.RP.props +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/AzSdk.RP.props @@ -1,7 +1,7 @@ - ContainerInstance_2019-12-01; + ContainerInstance_2021-03-01; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/Microsoft.Azure.Management.ContainerInstance.sln b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/Microsoft.Azure.Management.ContainerInstance.sln index f3f938f33f422..049f7d32517e3 100644 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/Microsoft.Azure.Management.ContainerInstance.sln +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/Microsoft.Azure.Management.ContainerInstance.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.26228.4 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31515.178 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.Management.ContainerInstance.Tests", "tests\Microsoft.Azure.Management.ContainerInstance.Tests.csproj", "{80C5B642-F93C-4E68-9B37-04565D3CF6AB}" EndProject @@ -25,4 +25,7 @@ Global GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {CB56698B-16FB-484E-B974-BD1C1FF36CEF} + EndGlobalSection EndGlobal diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Customizations/ContainersOperations.cs b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Customizations/ContainersOperations.cs new file mode 100644 index 0000000000000..b01c254e83c3a --- /dev/null +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Customizations/ContainersOperations.cs @@ -0,0 +1,66 @@ +namespace Microsoft.Azure.Management.ContainerInstance +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// ContainersOperations operations. + /// + internal partial class ContainersOperations : IServiceOperations, IContainersOperations + { + /// + /// Get the logs for a specified container instance. + /// + /// + /// Get the logs for a specified container instance in a specified resource + /// group and container group. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container group. + /// + /// + /// The name of the container instance. + /// + /// + /// The number of lines to show from the tail of the container instance log. If + /// not provided, all available logs are shown up to 4mb. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ListLogsWithHttpMessagesAsync(string resourceGroupName, string containerGroupName, string containerName, int? tail, Dictionary> customHeaders, CancellationToken cancellationToken = default(CancellationToken)) + { + return await ListLogsWithHttpMessagesAsync(resourceGroupName: resourceGroupName, containerGroupName: containerGroupName, containerName: containerName, tail: tail, timestamps: false, customHeaders: customHeaders, cancellationToken: cancellationToken); + } + } +} diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Customizations/ContainersOperationsExtensions.cs b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Customizations/ContainersOperationsExtensions.cs new file mode 100644 index 0000000000000..47421636ed778 --- /dev/null +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Customizations/ContainersOperationsExtensions.cs @@ -0,0 +1,48 @@ +namespace Microsoft.Azure.Management.ContainerInstance +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for ContainersOperations. + /// + public static partial class ContainersOperationsExtensions + { + /// + /// Get the logs for a specified container instance. + /// + /// + /// Get the logs for a specified container instance in a specified resource + /// group and container group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container group. + /// + /// + /// The name of the container instance. + /// + /// + /// The number of lines to show from the tail of the container instance log. If + /// not provided, all available logs are shown up to 4mb. + /// + /// + /// The cancellation token. + /// + public static async Task ListLogsAsync(this IContainersOperations operations, string resourceGroupName, string containerGroupName, string containerName, int? tail, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListLogsWithHttpMessagesAsync(resourceGroupName, containerGroupName, containerName, tail, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } +} diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Customizations/IContainersOperations.cs b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Customizations/IContainersOperations.cs new file mode 100644 index 0000000000000..838198edd477a --- /dev/null +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Customizations/IContainersOperations.cs @@ -0,0 +1,53 @@ +namespace Microsoft.Azure.Management.ContainerInstance +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// ContainersOperations operations. + /// + public partial interface IContainersOperations + { + /// + /// Get the logs for a specified container instance. + /// + /// + /// Get the logs for a specified container instance in a specified + /// resource group and container group. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container group. + /// + /// + /// The name of the container instance. + /// + /// + /// The number of lines to show from the tail of the container instance + /// log. If not provided, all available logs are shown up to 4mb. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> ListLogsWithHttpMessagesAsync(string resourceGroupName, string containerGroupName, string containerName, int? tail, Dictionary> customHeaders, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/ContainerGroupsOperations.cs b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/ContainerGroupsOperations.cs index c13aba718d109..6f4ccce1dbebc 100644 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/ContainerGroupsOperations.cs +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/ContainerGroupsOperations.cs @@ -1874,7 +1874,7 @@ internal ContainerGroupsOperations(ContainerInstanceManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 204) + if ((int)_statusCode != 202) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/ContainerInstanceManagementClient.cs b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/ContainerInstanceManagementClient.cs index a4998cdbb712f..fe10d22514613 100644 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/ContainerInstanceManagementClient.cs +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/ContainerInstanceManagementClient.cs @@ -339,7 +339,7 @@ private void Initialize() Location = new LocationOperations(this); Containers = new ContainersOperations(this); BaseUri = new System.Uri("https://management.azure.com"); - ApiVersion = "2019-12-01"; + ApiVersion = "2021-03-01"; AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/ContainersOperations.cs b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/ContainersOperations.cs index 4182cae399c8a..e757fce4974b1 100644 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/ContainersOperations.cs +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/ContainersOperations.cs @@ -70,6 +70,10 @@ internal ContainersOperations(ContainerInstanceManagementClient client) /// The number of lines to show from the tail of the container instance log. If /// not provided, all available logs are shown up to 4mb. /// + /// + /// If true, adds a timestamp at the beginning of every line of log output. If + /// not provided, defaults to false. + /// /// /// Headers that will be added to request. /// @@ -91,7 +95,7 @@ internal ContainersOperations(ContainerInstanceManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ListLogsWithHttpMessagesAsync(string resourceGroupName, string containerGroupName, string containerName, int? tail = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListLogsWithHttpMessagesAsync(string resourceGroupName, string containerGroupName, string containerName, int? tail = default(int?), bool? timestamps = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -124,6 +128,7 @@ internal ContainersOperations(ContainerInstanceManagementClient client) tracingParameters.Add("containerGroupName", containerGroupName); tracingParameters.Add("containerName", containerName); tracingParameters.Add("tail", tail); + tracingParameters.Add("timestamps", timestamps); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListLogs", tracingParameters); } @@ -143,6 +148,10 @@ internal ContainersOperations(ContainerInstanceManagementClient client) { _queryParameters.Add(string.Format("tail={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(tail, Client.SerializationSettings).Trim('"')))); } + if (timestamps != null) + { + _queryParameters.Add(string.Format("timestamps={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(timestamps, Client.SerializationSettings).Trim('"')))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -491,5 +500,214 @@ internal ContainersOperations(ContainerInstanceManagementClient client) return _result; } + /// + /// Attach to the output of a specific container instance. + /// + /// + /// Attach to the output stream of a specific container instance in a specified + /// resource group and container group. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container group. + /// + /// + /// The name of the container instance. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> AttachWithHttpMessagesAsync(string resourceGroupName, string containerGroupName, string containerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (containerGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "containerGroupName"); + } + if (containerName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "containerName"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("containerGroupName", containerGroupName); + tracingParameters.Add("containerName", containerName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Attach", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/containers/{containerName}/attach").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{containerGroupName}", System.Uri.EscapeDataString(containerGroupName)); + _url = _url.Replace("{containerName}", System.Uri.EscapeDataString(containerName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + } } diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/ContainersOperationsExtensions.cs b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/ContainersOperationsExtensions.cs index 4ddbfe9182060..2f6d6af09170f 100644 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/ContainersOperationsExtensions.cs +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/ContainersOperationsExtensions.cs @@ -44,9 +44,13 @@ public static partial class ContainersOperationsExtensions /// The number of lines to show from the tail of the container instance log. If /// not provided, all available logs are shown up to 4mb. /// - public static Logs ListLogs(this IContainersOperations operations, string resourceGroupName, string containerGroupName, string containerName, int? tail = default(int?)) + /// + /// If true, adds a timestamp at the beginning of every line of log output. If + /// not provided, defaults to false. + /// + public static Logs ListLogs(this IContainersOperations operations, string resourceGroupName, string containerGroupName, string containerName, int? tail = default(int?), bool? timestamps = default(bool?)) { - return operations.ListLogsAsync(resourceGroupName, containerGroupName, containerName, tail).GetAwaiter().GetResult(); + return operations.ListLogsAsync(resourceGroupName, containerGroupName, containerName, tail, timestamps).GetAwaiter().GetResult(); } /// @@ -72,12 +76,16 @@ public static partial class ContainersOperationsExtensions /// The number of lines to show from the tail of the container instance log. If /// not provided, all available logs are shown up to 4mb. /// + /// + /// If true, adds a timestamp at the beginning of every line of log output. If + /// not provided, defaults to false. + /// /// /// The cancellation token. /// - public static async Task ListLogsAsync(this IContainersOperations operations, string resourceGroupName, string containerGroupName, string containerName, int? tail = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListLogsAsync(this IContainersOperations operations, string resourceGroupName, string containerGroupName, string containerName, int? tail = default(int?), bool? timestamps = default(bool?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListLogsWithHttpMessagesAsync(resourceGroupName, containerGroupName, containerName, tail, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListLogsWithHttpMessagesAsync(resourceGroupName, containerGroupName, containerName, tail, timestamps, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -143,5 +151,59 @@ public static ContainerExecResponse ExecuteCommand(this IContainersOperations op } } + /// + /// Attach to the output of a specific container instance. + /// + /// + /// Attach to the output stream of a specific container instance in a specified + /// resource group and container group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container group. + /// + /// + /// The name of the container instance. + /// + public static ContainerAttachResponse Attach(this IContainersOperations operations, string resourceGroupName, string containerGroupName, string containerName) + { + return operations.AttachAsync(resourceGroupName, containerGroupName, containerName).GetAwaiter().GetResult(); + } + + /// + /// Attach to the output of a specific container instance. + /// + /// + /// Attach to the output stream of a specific container instance in a specified + /// resource group and container group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container group. + /// + /// + /// The name of the container instance. + /// + /// + /// The cancellation token. + /// + public static async Task AttachAsync(this IContainersOperations operations, string resourceGroupName, string containerGroupName, string containerName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.AttachWithHttpMessagesAsync(resourceGroupName, containerGroupName, containerName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/IContainersOperations.cs b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/IContainersOperations.cs index 76d95fc1ef957..3b44e84e303dc 100644 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/IContainersOperations.cs +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/IContainersOperations.cs @@ -43,6 +43,10 @@ public partial interface IContainersOperations /// The number of lines to show from the tail of the container instance /// log. If not provided, all available logs are shown up to 4mb. /// + /// + /// If true, adds a timestamp at the beginning of every line of log + /// output. If not provided, defaults to false. + /// /// /// The headers that will be added to request. /// @@ -58,7 +62,7 @@ public partial interface IContainersOperations /// /// Thrown when a required parameter is null /// - Task> ListLogsWithHttpMessagesAsync(string resourceGroupName, string containerGroupName, string containerName, int? tail = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListLogsWithHttpMessagesAsync(string resourceGroupName, string containerGroupName, string containerName, int? tail = default(int?), bool? timestamps = default(bool?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Executes a command in a specific container instance. /// @@ -94,5 +98,37 @@ public partial interface IContainersOperations /// Thrown when a required parameter is null /// Task> ExecuteCommandWithHttpMessagesAsync(string resourceGroupName, string containerGroupName, string containerName, ContainerExecRequest containerExecRequest, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Attach to the output of a specific container instance. + /// + /// + /// Attach to the output stream of a specific container instance in a + /// specified resource group and container group. + /// + /// + /// The name of the resource group. + /// + /// + /// The name of the container group. + /// + /// + /// The name of the container instance. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> AttachWithHttpMessagesAsync(string resourceGroupName, string containerGroupName, string containerName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/Models/ContainerAttachResponse.cs b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/Models/ContainerAttachResponse.cs new file mode 100644 index 0000000000000..8487a49174d52 --- /dev/null +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/Models/ContainerAttachResponse.cs @@ -0,0 +1,64 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ContainerInstance.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The information for the output stream from container attach. + /// + public partial class ContainerAttachResponse + { + /// + /// Initializes a new instance of the ContainerAttachResponse class. + /// + public ContainerAttachResponse() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ContainerAttachResponse class. + /// + /// The uri for the output stream from the + /// attach. + /// The password to the output stream from the + /// attach. Send as an Authorization header value when connecting to + /// the websocketUri. + public ContainerAttachResponse(string webSocketUri = default(string), string password = default(string)) + { + WebSocketUri = webSocketUri; + Password = password; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the uri for the output stream from the attach. + /// + [JsonProperty(PropertyName = "webSocketUri")] + public string WebSocketUri { get; set; } + + /// + /// Gets or sets the password to the output stream from the attach. + /// Send as an Authorization header value when connecting to the + /// websocketUri. + /// + [JsonProperty(PropertyName = "password")] + public string Password { get; set; } + + } +} diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/Models/ContainerHttpGet.cs b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/Models/ContainerHttpGet.cs index cc292679fff56..2c79a6825f254 100644 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/Models/ContainerHttpGet.cs +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/Models/ContainerHttpGet.cs @@ -33,11 +33,13 @@ public ContainerHttpGet() /// The path to probe. /// The scheme. Possible values include: 'http', /// 'https' - public ContainerHttpGet(int port, string path = default(string), string scheme = default(string)) + /// The HTTP headers. + public ContainerHttpGet(int port, string path = default(string), string scheme = default(string), HttpHeaders httpHeaders = default(HttpHeaders)) { Path = path; Port = port; Scheme = scheme; + HttpHeaders = httpHeaders; CustomInit(); } @@ -64,6 +66,12 @@ public ContainerHttpGet() [JsonProperty(PropertyName = "scheme")] public string Scheme { get; set; } + /// + /// Gets or sets the HTTP headers. + /// + [JsonProperty(PropertyName = "httpHeaders")] + public HttpHeaders HttpHeaders { get; set; } + /// /// Validate the object. /// diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/Models/HttpHeaders.cs b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/Models/HttpHeaders.cs new file mode 100644 index 0000000000000..1e1fe60953557 --- /dev/null +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/Models/HttpHeaders.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.ContainerInstance.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The HTTP headers. + /// + public partial class HttpHeaders + { + /// + /// Initializes a new instance of the HttpHeaders class. + /// + public HttpHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the HttpHeaders class. + /// + /// The header name. + /// The header value. + public HttpHeaders(string name = default(string), string value = default(string)) + { + Name = name; + Value = value; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the header name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the header value. + /// + [JsonProperty(PropertyName = "value")] + public string Value { get; set; } + + } +} diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/Models/LogAnalytics.cs b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/Models/LogAnalytics.cs index 34ed73b3c474b..2b45c69579949 100644 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/Models/LogAnalytics.cs +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/Models/LogAnalytics.cs @@ -39,12 +39,15 @@ public LogAnalytics() /// The log type to be used. Possible values /// include: 'ContainerInsights', 'ContainerInstanceLogs' /// Metadata for log analytics. - public LogAnalytics(string workspaceId, string workspaceKey, string logType = default(string), IDictionary metadata = default(IDictionary)) + /// The workspace resource id for log + /// analytics + public LogAnalytics(string workspaceId, string workspaceKey, string logType = default(string), IDictionary metadata = default(IDictionary), IDictionary workspaceResourceId = default(IDictionary)) { WorkspaceId = workspaceId; WorkspaceKey = workspaceKey; LogType = logType; Metadata = metadata; + WorkspaceResourceId = workspaceResourceId; CustomInit(); } @@ -78,6 +81,12 @@ public LogAnalytics() [JsonProperty(PropertyName = "metadata")] public IDictionary Metadata { get; set; } + /// + /// Gets or sets the workspace resource id for log analytics + /// + [JsonProperty(PropertyName = "workspaceResourceId")] + public IDictionary WorkspaceResourceId { get; set; } + /// /// Validate the object. /// diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/SdkInfo_ContainerInstanceManagementClient.cs b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/SdkInfo_ContainerInstanceManagementClient.cs deleted file mode 100644 index 647c214046bc3..0000000000000 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Generated/SdkInfo_ContainerInstanceManagementClient.cs +++ /dev/null @@ -1,41 +0,0 @@ - -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.ContainerInstance -{ - using System; - using System.Collections.Generic; - using System.Linq; - - internal static partial class SdkInfo - { - public static IEnumerable> ApiInfo_ContainerInstanceManagementClient - { - get - { - return new Tuple[] - { - new Tuple("ContainerInstance", "ContainerGroups", "2019-12-01"), - new Tuple("ContainerInstance", "Containers", "2019-12-01"), - new Tuple("ContainerInstance", "Location", "2019-12-01"), - new Tuple("ContainerInstance", "Operations", "2019-12-01"), - }.AsEnumerable(); - } - } - // BEGIN: Code Generation Metadata Section - public static readonly String AutoRestVersion = "v2"; - public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4413"; - public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/containerinstance/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\Users\\nochangi\\DEV\\azure-sdk-for-net\\sdk"; - public static readonly String GithubForkName = "Azure"; - public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "ae8d69cc6c78331c24b13951979bf171bf132d26"; - public static readonly String CodeGenerationErrors = ""; - public static readonly String GithubRepoName = "azure-rest-api-specs"; - // END: Code Generation Metadata Section - } -} - diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Microsoft.Azure.Management.ContainerInstance.csproj b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Microsoft.Azure.Management.ContainerInstance.csproj index 1343529a6f615..f163ddd77db60 100644 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Microsoft.Azure.Management.ContainerInstance.csproj +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Microsoft.Azure.Management.ContainerInstance.csproj @@ -5,13 +5,13 @@ Microsoft Azure Container Instance Management Library - 3.0.0 + 4.0.0 Microsoft.Azure.Management.ContainerInstance Microsoft.Azure.Management.ContainerInstance - Microsoft Azure Container Instance Management;Container Instance; + Microsoft Azure Container Instance Management;Container Instance;2021-03-01; diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Properties/AssemblyInfo.cs b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Properties/AssemblyInfo.cs index 9fdfa57642b72..cf3e9c58a481d 100644 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Properties/AssemblyInfo.cs +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/src/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Container Instance Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Container Instance.")] -[assembly: AssemblyVersion("3.0.0.0")] -[assembly: AssemblyFileVersion("3.0.0.0")] +[assembly: AssemblyVersion("4.0.0.0")] +[assembly: AssemblyFileVersion("4.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceCreateTest.json b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceCreateTest.json index f8b337e19b17f..60529930908a5 100644 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceCreateTest.json +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceCreateTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/aci_rg4124?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlZ3JvdXBzL2FjaV9yZzQxMjQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/aci_rg9855?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlZ3JvdXBzL2FjaV9yZzk4NTU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ac6bbf93-e553-439f-ab14-f81233276acf" + "619a732b-cc53-42dc-9fd1-9ced90fe2d1e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -29,9 +29,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:24:08 GMT" - ], "Pragma": [ "no-cache" ], @@ -39,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "6de17a52-f17c-4a26-af16-5eaa5cc04783" + "18f487bf-0050-4d8d-a38a-d0225e853f49" ], "x-ms-correlation-request-id": [ - "6de17a52-f17c-4a26-af16-5eaa5cc04783" + "18f487bf-0050-4d8d-a38a-d0225e853f49" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202409Z:6de17a52-f17c-4a26-af16-5eaa5cc04783" + "WESTUS2:20210804T214851Z:18f487bf-0050-4d8d-a38a-d0225e853f49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,6 +50,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:48:50 GMT" + ], "Content-Length": [ "173" ], @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4124\",\r\n \"name\": \"aci_rg4124\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9855\",\r\n \"name\": \"aci_rg9855\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4124/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk3310?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzQxMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrMzMxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9855/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk8004?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzk4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrODAwND9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk3310\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk3310\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\",\r\n \"workspaceKey\": \"workspacekey\"\r\n }\r\n },\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk3310init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk8004\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk8004\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\",\r\n \"workspaceKey\": \"workspacekey\"\r\n }\r\n },\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk8004init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "90f9fdce-b99e-429d-bc46-62d5ed43fa08" + "15fc0ee7-52bd-4d9c-8f19-9306786f455e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,32 +95,29 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:24:16 GMT" - ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/a6d0efaf-30c1-4c06-baed-eb50b52dc480?api-version=2018-06-01" + "https://management.azure.com/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/c8e330f3-5fbe-4baa-84b6-1986f5532372?api-version=2018-06-01" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ - "99" + "185" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ - "297" + "405" ], "x-ms-request-id": [ - "westus:a6d0efaf-30c1-4c06-baed-eb50b52dc480" + "westus:c8e330f3-5fbe-4baa-84b6-1986f5532372" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "8b2d182e-b778-4656-a5bc-6744931a8cd1" + "453efe89-55ec-4110-a150-38c22711a662" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202416Z:8b2d182e-b778-4656-a5bc-6744931a8cd1" + "WESTUS2:20210804T214858Z:453efe89-55ec-4110-a150-38c22711a662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -128,8 +125,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:48:58 GMT" + ], "Content-Length": [ - "1394" + "1392" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,29 +138,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk3310\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk3310init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": []\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.234.106.129\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk3310\",\r\n \"fqdn\": \"acinetsdk3310.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"498b21fc-b233-4de8-9e81-6d317eb5d547\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4124/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk3310\",\r\n \"name\": \"acinetsdk3310\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk8004\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk8004init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk8004\",\r\n \"fqdn\": \"acinetsdk8004.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"e9761a8e-1096-4f40-9c99-5a602b388bd5\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9855/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk8004\",\r\n \"name\": \"acinetsdk8004\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/a6d0efaf-30c1-4c06-baed-eb50b52dc480?api-version=2018-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL3dlc3R1cy9vcGVyYXRpb25zL2E2ZDBlZmFmLTMwYzEtNGMwNi1iYWVkLWViNTBiNTJkYzQ4MD9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/c8e330f3-5fbe-4baa-84b6-1986f5532372?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL3dlc3R1cy9vcGVyYXRpb25zL2M4ZTMzMGYzLTVmYmUtNGJhYS04NGI2LTE5ODZmNTUzMjM3Mj9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:24:46 GMT" - ], "Pragma": [ "no-cache" ], @@ -168,16 +165,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:68c9975d-2505-4f5c-a72c-c653e063f75e" + "westus:71120706-de98-449c-a40d-70fa343e10d8" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "4a70eeb7-8e58-41ee-b78b-8d88d4ade954" + "9210b08f-9f83-4d39-9bf1-959a3096588a" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202446Z:4a70eeb7-8e58-41ee-b78b-8d88d4ade954" + "WESTUS2:20210804T214928Z:9210b08f-9f83-4d39-9bf1-959a3096588a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +182,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:49:28 GMT" + ], "Content-Length": [ - "884" + "721" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,29 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4124/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk3310\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-06-19T20:24:16.566877Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:24:31Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:24:31Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:24:33Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:24:33Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:24:33Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:24:33Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:24:33Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:24:33Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9855/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk8004\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2021-08-04T21:48:58.2732763Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:49:03Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:49:03Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:49:03Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:49:03Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4124/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk3310?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzQxMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrMzMxMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9855/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk8004?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzk4NTUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrODAwND9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:24:46 GMT" - ], "Pragma": [ "no-cache" ], @@ -225,16 +222,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:13714ae2-dd2f-42f3-aef5-0705b8ac89f1" + "westus:5e5aa03f-df29-4b7f-a793-7dd5a3827f6c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "23c52c55-89e8-49ac-84a1-fde6252bf681" + "7adf4499-b42f-42b6-a653-92f292c80e83" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202447Z:23c52c55-89e8-49ac-84a1-fde6252bf681" + "WESTUS2:20210804T214929Z:7adf4499-b42f-42b6-a653-92f292c80e83" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,8 +239,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:49:28 GMT" + ], "Content-Length": [ - "3005" + "2383" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,16 +252,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk3310\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2020-06-19T20:24:33Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:24:31Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:24:31Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:24:33Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:24:33Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:24:33Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:24:33Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:24:33Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:24:33Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk3310init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2020-06-19T20:24:26Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2020-06-19T20:24:31Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:24:20Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:24:20Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:24:24Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:24:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:24:26Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:24:26Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:24:26Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:24:26Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.234.106.129\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk3310\",\r\n \"fqdn\": \"acinetsdk3310.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"498b21fc-b233-4de8-9e81-6d317eb5d547\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4124/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk3310\",\r\n \"name\": \"acinetsdk3310\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk8004\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2021-08-04T21:49:14.569Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:49:03Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:49:03Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:49:03Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:49:03Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:49:14Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:49:14Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk8004init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T21:49:06.97Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T21:49:13.686Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"13.83.89.53\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk8004\",\r\n \"fqdn\": \"acinetsdk8004.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"e9761a8e-1096-4f40-9c99-5a602b388bd5\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9855/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk8004\",\r\n \"name\": \"acinetsdk8004\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", "StatusCode": 200 } ], "Names": { "CreateResourceGroup": [ - "aci_rg4124" + "aci_rg9855" ], "ContainerInstanceCreateTest": [ - "acinetsdk3310" + "acinetsdk8004" ] }, "Variables": { diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceDeleteTest.json b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceDeleteTest.json index ccdeeecb3cba2..549530d70d99e 100644 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceDeleteTest.json +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceDeleteTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/aci_rg6812?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlZ3JvdXBzL2FjaV9yZzY4MTI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/aci_rg195?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlZ3JvdXBzL2FjaV9yZzE5NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2522ef50-3467-4563-967f-3f8923f7f0eb" + "c6a709a9-fa28-43bb-988b-a0b93e539605" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -29,9 +29,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:21:32 GMT" - ], "Pragma": [ "no-cache" ], @@ -39,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "6a898a34-7e9a-489f-807a-1b8263ec8f22" + "7b3a562e-7ce9-4ee4-abb4-575d74fa568f" ], "x-ms-correlation-request-id": [ - "6a898a34-7e9a-489f-807a-1b8263ec8f22" + "7b3a562e-7ce9-4ee4-abb4-575d74fa568f" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202132Z:6a898a34-7e9a-489f-807a-1b8263ec8f22" + "WESTUS2:20210804T214646Z:7b3a562e-7ce9-4ee4-abb4-575d74fa568f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,8 +50,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:46:46 GMT" + ], "Content-Length": [ - "173" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg6812\",\r\n \"name\": \"aci_rg6812\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg195\",\r\n \"name\": \"aci_rg195\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg6812/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk4862?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzY4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrNDg2Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg195/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk6906?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzE5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2luZXRzZGs2OTA2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk4862\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk4862\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\",\r\n \"workspaceKey\": \"workspacekey\"\r\n }\r\n },\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk4862init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk6906\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk6906\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\",\r\n \"workspaceKey\": \"workspacekey\"\r\n }\r\n },\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk6906init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "61878b20-c30c-49c1-889f-cde859df0584" + "e0bbb6f4-126a-47db-99b2-2104183479b8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,32 +95,29 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:21:43 GMT" - ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/ef826f26-c269-4386-9f46-4eee14cc65e4?api-version=2018-06-01" + "https://management.azure.com/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/25d36c17-4241-407f-9bed-a1aba2e00681?api-version=2018-06-01" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ - "98" + "197" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ - "290" + "441" ], "x-ms-request-id": [ - "westus:ef826f26-c269-4386-9f46-4eee14cc65e4" + "westus:25d36c17-4241-407f-9bed-a1aba2e00681" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "064a236f-208a-4a5b-a8f1-5bcca68e147c" + "a4acad1e-af0c-40cf-b8e0-98a9ec96ae2d" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202144Z:064a236f-208a-4a5b-a8f1-5bcca68e147c" + "WESTUS2:20210804T214656Z:a4acad1e-af0c-40cf-b8e0-98a9ec96ae2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -128,8 +125,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:46:55 GMT" + ], "Content-Length": [ - "1394" + "1391" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,29 +138,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk4862\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk4862init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": []\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.241.147.198\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk4862\",\r\n \"fqdn\": \"acinetsdk4862.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"54c99a84-e122-4bf7-96e1-0932b3b1575b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg6812/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk4862\",\r\n \"name\": \"acinetsdk4862\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk6906\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk6906init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk6906\",\r\n \"fqdn\": \"acinetsdk6906.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"1a405c5e-cec7-4a20-8c60-755139331e4a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg195/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk6906\",\r\n \"name\": \"acinetsdk6906\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/ef826f26-c269-4386-9f46-4eee14cc65e4?api-version=2018-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL3dlc3R1cy9vcGVyYXRpb25zL2VmODI2ZjI2LWMyNjktNDM4Ni05ZjQ2LTRlZWUxNGNjNjVlND9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/25d36c17-4241-407f-9bed-a1aba2e00681?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL3dlc3R1cy9vcGVyYXRpb25zLzI1ZDM2YzE3LTQyNDEtNDA3Zi05YmVkLWExYWJhMmUwMDY4MT9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:22:13 GMT" - ], "Pragma": [ "no-cache" ], @@ -168,16 +165,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:1fe2648b-08ac-4321-9d3d-0ea019696d00" + "westus:37dc1fd9-de31-4db9-bc35-daa84612552c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "84581e89-5d1c-4adb-afd9-7001f1c8990f" + "0959da9d-2d84-493b-b4ea-f7e538c3f391" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202214Z:84581e89-5d1c-4adb-afd9-7001f1c8990f" + "WESTUS2:20210804T214726Z:0959da9d-2d84-493b-b4ea-f7e538c3f391" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +182,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:47:26 GMT" + ], "Content-Length": [ - "885" + "720" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,29 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg6812/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk4862\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-06-19T20:21:43.7319186Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:03Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:03Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg195/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk6906\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2021-08-04T21:46:55.6640766Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:47:00Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:47:00Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:47:03Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:47:03Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg6812/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk4862?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzY4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrNDg2Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg195/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk6906?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzE5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2luZXRzZGs2OTA2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:22:13 GMT" - ], "Pragma": [ "no-cache" ], @@ -225,16 +222,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:8a6c32d9-2cc5-4172-8a4c-692dd4003688" + "westus:47a0deda-9f4c-48bd-b8e7-6eaaec0ae0df" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "6d53ffd0-ecb8-4ab7-ae89-e68132202441" + "6831a143-87dc-4b7e-a5ba-cc64c81a4c24" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202214Z:6d53ffd0-ecb8-4ab7-ae89-e68132202441" + "WESTUS2:20210804T214726Z:6831a143-87dc-4b7e-a5ba-cc64c81a4c24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,8 +239,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:47:26 GMT" + ], "Content-Length": [ - "3005" + "2232" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,35 +252,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk4862\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2020-06-19T20:22:04Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:03Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:03Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk4862init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2020-06-19T20:21:56Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2020-06-19T20:22:01Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:21:53Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:21:53Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:21:56Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:21:56Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:21:56Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:21:56Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:21:57Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:21:57Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.241.147.198\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk4862\",\r\n \"fqdn\": \"acinetsdk4862.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"54c99a84-e122-4bf7-96e1-0932b3b1575b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg6812/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk4862\",\r\n \"name\": \"acinetsdk4862\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk6906\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2021-08-04T21:47:17.515Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:47:00Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:47:00Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:47:03Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:47:03Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk6906init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T21:47:07.959Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T21:47:14.805Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.118.213.104\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk6906\",\r\n \"fqdn\": \"acinetsdk6906.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"1a405c5e-cec7-4a20-8c60-755139331e4a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg195/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk6906\",\r\n \"name\": \"acinetsdk6906\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg6812/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk4862?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzY4MTIvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrNDg2Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg195/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk6906?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzE5NS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2luZXRzZGs2OTA2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4f9e904-7a4d-40b0-b814-998d6be4e71e" + "6e0c4be6-ea1b-4a77-8d61-06358f22d695" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:22:15 GMT" - ], "Pragma": [ "no-cache" ], @@ -288,22 +285,22 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ - "99" + "199" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ - "297" + "436" ], "x-ms-request-id": [ - "westus:8e420121-dfb3-4847-a48f-1036f1e21746" + "westus:f14b54b7-d975-448d-92ac-38f9e317dea6" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "e3b23936-d7d0-43ba-b3f2-06be84ee20e6" + "bbd5ac02-8fe1-4241-8c2b-d83eb66be18b" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202216Z:e3b23936-d7d0-43ba-b3f2-06be84ee20e6" + "WESTUS2:20210804T214728Z:bbd5ac02-8fe1-4241-8c2b-d83eb66be18b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -311,8 +308,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:47:28 GMT" + ], "Content-Length": [ - "3005" + "2232" ], "Content-Type": [ "application/json; charset=utf-8" @@ -321,16 +321,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk4862\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2020-06-19T20:22:04Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:03Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:03Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:04Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk4862init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2020-06-19T20:21:56Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2020-06-19T20:22:01Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:21:53Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:21:53Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:21:56Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:21:56Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:21:56Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:21:56Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:21:57Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:21:57Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.241.147.198\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk4862\",\r\n \"fqdn\": \"acinetsdk4862.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"54c99a84-e122-4bf7-96e1-0932b3b1575b\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg6812/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk4862\",\r\n \"name\": \"acinetsdk4862\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk6906\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2021-08-04T21:47:17.515Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:47:00Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:47:00Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:47:03Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:47:03Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk6906init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T21:47:07.959Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T21:47:14.805Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.118.213.104\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk6906\",\r\n \"fqdn\": \"acinetsdk6906.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"1a405c5e-cec7-4a20-8c60-755139331e4a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg195/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk6906\",\r\n \"name\": \"acinetsdk6906\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", "StatusCode": 200 } ], "Names": { "CreateResourceGroup": [ - "aci_rg6812" + "aci_rg195" ], "ContainerInstanceDeleteTest": [ - "acinetsdk4862" + "acinetsdk6906" ] }, "Variables": { diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceGetTest.json b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceGetTest.json index 967b8d75553f3..57a0573dfe866 100644 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceGetTest.json +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceGetTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/aci_rg4404?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlZ3JvdXBzL2FjaV9yZzQ0MDQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/aci_rg4391?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlZ3JvdXBzL2FjaV9yZzQzOTE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "90f3a485-04ca-452d-b343-257a2a3dbf5d" + "73565521-b22d-458b-8d33-619934cd1f48" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -29,9 +29,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:24:54 GMT" - ], "Pragma": [ "no-cache" ], @@ -39,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "7fe2ab9e-9c10-4bb0-9443-9cca20cc58fc" + "fe50c130-70e0-4415-a8bc-5c0e46a45013" ], "x-ms-correlation-request-id": [ - "7fe2ab9e-9c10-4bb0-9443-9cca20cc58fc" + "fe50c130-70e0-4415-a8bc-5c0e46a45013" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202455Z:7fe2ab9e-9c10-4bb0-9443-9cca20cc58fc" + "WESTUS2:20210804T214932Z:fe50c130-70e0-4415-a8bc-5c0e46a45013" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,6 +50,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:49:31 GMT" + ], "Content-Length": [ "173" ], @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4404\",\r\n \"name\": \"aci_rg4404\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4391\",\r\n \"name\": \"aci_rg4391\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4404/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk5935?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzQ0MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrNTkzNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4391/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk3882?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzQzOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrMzg4Mj9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk5935\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk5935\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\",\r\n \"workspaceKey\": \"workspacekey\"\r\n }\r\n },\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk5935init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk3882\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk3882\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\",\r\n \"workspaceKey\": \"workspacekey\"\r\n }\r\n },\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk3882init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5d69e35e-ccd8-4407-8473-9fdc116cdafc" + "de78f561-83e9-4e80-86cc-0c6e1df8efc0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,32 +95,29 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:25:02 GMT" - ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/47984b42-4ac7-4049-b773-45a43622b206?api-version=2018-06-01" + "https://management.azure.com/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/3ff7e4cf-9655-44ba-8abe-8dcfee7619ae?api-version=2018-06-01" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ - "99" + "185" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ - "292" + "428" ], "x-ms-request-id": [ - "westus:47984b42-4ac7-4049-b773-45a43622b206" + "westus:3ff7e4cf-9655-44ba-8abe-8dcfee7619ae" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "1a957db9-1cad-44e7-940f-1c86834dd05a" + "635fe10c-c12c-4ccf-a28f-39321cbce16b" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202503Z:1a957db9-1cad-44e7-940f-1c86834dd05a" + "WESTUS2:20210804T214940Z:635fe10c-c12c-4ccf-a28f-39321cbce16b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -128,8 +125,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:49:40 GMT" + ], "Content-Length": [ - "1393" + "1392" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,29 +138,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk5935\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk5935init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": []\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.225.99.248\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk5935\",\r\n \"fqdn\": \"acinetsdk5935.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"670f0826-ab77-4f92-bd44-d5d98b6589d9\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4404/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk5935\",\r\n \"name\": \"acinetsdk5935\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk3882\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk3882init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk3882\",\r\n \"fqdn\": \"acinetsdk3882.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"7d8a672a-6c72-4298-89ad-fa087f3815a1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4391/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk3882\",\r\n \"name\": \"acinetsdk3882\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/47984b42-4ac7-4049-b773-45a43622b206?api-version=2018-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL3dlc3R1cy9vcGVyYXRpb25zLzQ3OTg0YjQyLTRhYzctNDA0OS1iNzczLTQ1YTQzNjIyYjIwNj9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/3ff7e4cf-9655-44ba-8abe-8dcfee7619ae?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL3dlc3R1cy9vcGVyYXRpb25zLzNmZjdlNGNmLTk2NTUtNDRiYS04YWJlLThkY2ZlZTc2MTlhZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:25:33 GMT" - ], "Pragma": [ "no-cache" ], @@ -168,16 +165,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:7b4e8175-521e-4476-850e-7fb47cada3a2" + "westus:d7142a06-fd3b-4914-af13-ffc278d7b368" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11984" ], "x-ms-correlation-request-id": [ - "fc10b08d-12c6-459e-aed9-97c2fed33f03" + "8c752736-52a3-49e4-bf45-fbf053e234f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202533Z:fc10b08d-12c6-459e-aed9-97c2fed33f03" + "WESTUS2:20210804T215010Z:8c752736-52a3-49e4-bf45-fbf053e234f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +182,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:50:09 GMT" + ], "Content-Length": [ - "885" + "875" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,29 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4404/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk5935\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-06-19T20:25:02.9535971Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:23Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:23Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:24Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:24Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:24Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:25Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:25Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4391/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk3882\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2021-08-04T21:49:39.8609865Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:49:44Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:49:44Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:49:46Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:49:46Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:49:57Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:49:57Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4404/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk5935?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzQ0MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrNTkzNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4391/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk3882?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzQzOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrMzg4Mj9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:25:33 GMT" - ], "Pragma": [ "no-cache" ], @@ -225,16 +222,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:e19d401a-74af-43e7-a280-723689f2fc2e" + "westus:53e1e931-7ed8-488d-b6f6-674e0f512bc8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11983" ], "x-ms-correlation-request-id": [ - "86e3c0b8-8d64-4c07-b8ee-86975feea559" + "55a5e246-b779-4b72-baa9-5bccda0b360c" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202533Z:86e3c0b8-8d64-4c07-b8ee-86975feea559" + "WESTUS2:20210804T215010Z:55a5e246-b779-4b72-baa9-5bccda0b360c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,8 +239,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:50:09 GMT" + ], "Content-Length": [ - "3004" + "2384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,35 +252,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk5935\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2020-06-19T20:25:25Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:23Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:23Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:24Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:24Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:24Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:25Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:25Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk5935init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2020-06-19T20:25:17Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2020-06-19T20:25:22Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:12Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:12Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:16Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:16Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:17Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:17Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:17Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:17Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.225.99.248\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk5935\",\r\n \"fqdn\": \"acinetsdk5935.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"670f0826-ab77-4f92-bd44-d5d98b6589d9\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4404/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk5935\",\r\n \"name\": \"acinetsdk5935\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk3882\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2021-08-04T21:49:57.009Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:49:44Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:49:44Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:49:46Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:49:46Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:49:57Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:49:57Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk3882init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T21:49:50.677Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T21:49:55.991Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.78.29.15\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk3882\",\r\n \"fqdn\": \"acinetsdk3882.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"7d8a672a-6c72-4298-89ad-fa087f3815a1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4391/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk3882\",\r\n \"name\": \"acinetsdk3882\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4404/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk5935?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzQ0MDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrNTkzNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4391/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk3882?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzQzOTEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrMzg4Mj9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6c0f15d-9488-4f49-8df2-06e33f9e9359" + "814840bb-f163-419f-8526-16f70cef130c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:25:33 GMT" - ], "Pragma": [ "no-cache" ], @@ -288,16 +285,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:475edd44-c473-4c93-b6ab-91dd5938735d" + "westus:7f5b0f1c-b0c2-4827-9e73-31317c677648" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11982" ], "x-ms-correlation-request-id": [ - "30f17753-4bf9-463a-bfca-41d78fddd1dd" + "f8f77b88-55e3-43f7-93f0-1f2ed5216d26" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202533Z:30f17753-4bf9-463a-bfca-41d78fddd1dd" + "WESTUS2:20210804T215010Z:f8f77b88-55e3-43f7-93f0-1f2ed5216d26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -305,8 +302,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:50:10 GMT" + ], "Content-Length": [ - "3004" + "2384" ], "Content-Type": [ "application/json; charset=utf-8" @@ -315,16 +315,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk5935\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2020-06-19T20:25:25Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:23Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:23Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:24Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:24Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:24Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:25Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:25Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk5935init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2020-06-19T20:25:17Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2020-06-19T20:25:22Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:12Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:12Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:16Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:16Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:17Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:17Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:17Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:17Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.225.99.248\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk5935\",\r\n \"fqdn\": \"acinetsdk5935.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"670f0826-ab77-4f92-bd44-d5d98b6589d9\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4404/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk5935\",\r\n \"name\": \"acinetsdk5935\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"encryptionProperties\": {\r\n \"vaultBaseUrl\": \"https://cloudaci-cloudtest.vault.azure.net/\",\r\n \"keyName\": \"testencryptionkey\",\r\n \"keyVersion\": \"804d3f1d5ce2456b9bc3dc9e35aaa67e\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk3882\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2021-08-04T21:49:57.009Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:49:44Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:49:44Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:49:46Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:49:46Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:49:57Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:49:57Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk3882init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T21:49:50.677Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T21:49:55.991Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.78.29.15\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk3882\",\r\n \"fqdn\": \"acinetsdk3882.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"7d8a672a-6c72-4298-89ad-fa087f3815a1\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4391/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk3882\",\r\n \"name\": \"acinetsdk3882\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", "StatusCode": 200 } ], "Names": { "CreateResourceGroup": [ - "aci_rg4404" + "aci_rg4391" ], "ContainerInstanceGetTest": [ - "acinetsdk5935" + "acinetsdk3882" ] }, "Variables": { diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceListByResourceGroupTest.json b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceListByResourceGroupTest.json index 35dac0f6de97a..ddb6d0edac041 100644 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceListByResourceGroupTest.json +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceListByResourceGroupTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/aci_rg9456?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlZ3JvdXBzL2FjaV9yZzk0NTY/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/aci_rg9661?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlZ3JvdXBzL2FjaV9yZzk2NjE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "acb75709-0050-4399-9b4f-853a717b66d0" + "4937ade5-324d-440a-a270-9bd572ceabd6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -29,9 +29,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:25:34 GMT" - ], "Pragma": [ "no-cache" ], @@ -39,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "8edd4479-2f85-4531-b711-6464dd3a250d" + "0b91e27e-7c9b-4fdb-bab6-eeee251c9935" ], "x-ms-correlation-request-id": [ - "8edd4479-2f85-4531-b711-6464dd3a250d" + "0b91e27e-7c9b-4fdb-bab6-eeee251c9935" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202534Z:8edd4479-2f85-4531-b711-6464dd3a250d" + "WESTUS2:20210804T215013Z:0b91e27e-7c9b-4fdb-bab6-eeee251c9935" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,6 +50,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:50:13 GMT" + ], "Content-Length": [ "173" ], @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9456\",\r\n \"name\": \"aci_rg9456\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9661\",\r\n \"name\": \"aci_rg9661\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9456/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk9992?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzk0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrOTk5Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9661/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk5769?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzk2NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrNTc2OT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk9992\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk9992\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\",\r\n \"workspaceKey\": \"workspacekey\"\r\n }\r\n },\r\n \"sku\": \"Standard\",\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk9992init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk5769\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk5769\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\",\r\n \"workspaceKey\": \"workspacekey\"\r\n }\r\n },\r\n \"sku\": \"Standard\",\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk5769init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e17afd9f-ab86-432e-8097-bae62f30664d" + "9d14de14-9d6e-4d53-a222-9f7564350edd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,32 +95,29 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:25:41 GMT" - ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/f0384796-9bb4-471a-b47c-68a3250dc263?api-version=2018-06-01" + "https://management.azure.com/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/d5fc0f9e-acb2-4c63-8c6f-eb6a040b7c55?api-version=2018-06-01" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ - "98" + "199" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ - "294" + "402" ], "x-ms-request-id": [ - "westus:f0384796-9bb4-471a-b47c-68a3250dc263" + "westus:d5fc0f9e-acb2-4c63-8c6f-eb6a040b7c55" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "0c227d40-87fc-4e2c-b15a-7557b74d7719" + "607dd35d-2d87-4e03-bf30-cc710a6d0cd1" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202542Z:0c227d40-87fc-4e2c-b15a-7557b74d7719" + "WESTUS2:20210804T215022Z:607dd35d-2d87-4e03-bf30-cc710a6d0cd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -128,8 +125,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:50:21 GMT" + ], "Content-Length": [ - "1229" + "1228" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,29 +138,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk9992\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk9992init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": []\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.241.146.79\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk9992\",\r\n \"fqdn\": \"acinetsdk9992.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"da5dd59e-b7b8-4df9-80db-3716056c8bd7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9456/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk9992\",\r\n \"name\": \"acinetsdk9992\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk5769\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk5769init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk5769\",\r\n \"fqdn\": \"acinetsdk5769.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"dd51f8a2-c8b5-49dd-8941-b1697427bcc4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9661/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk5769\",\r\n \"name\": \"acinetsdk5769\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/f0384796-9bb4-471a-b47c-68a3250dc263?api-version=2018-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL3dlc3R1cy9vcGVyYXRpb25zL2YwMzg0Nzk2LTliYjQtNDcxYS1iNDdjLTY4YTMyNTBkYzI2Mz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/d5fc0f9e-acb2-4c63-8c6f-eb6a040b7c55?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL3dlc3R1cy9vcGVyYXRpb25zL2Q1ZmMwZjllLWFjYjItNGM2My04YzZmLWViNmEwNDBiN2M1NT9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:26:11 GMT" - ], "Pragma": [ "no-cache" ], @@ -168,16 +165,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:8c144ce2-2c85-464c-bb8c-ec8a95d229a3" + "westus:603f03dd-c1c4-4edc-80f4-11fd38318c19" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "7c868761-7442-49e6-b6ad-8ffc854b4f55" + "85fcf124-7a18-4ec3-95fa-d9cd2148675e" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202612Z:7c868761-7442-49e6-b6ad-8ffc854b4f55" + "WESTUS2:20210804T215052Z:85fcf124-7a18-4ec3-95fa-d9cd2148675e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +182,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:50:51 GMT" + ], "Content-Length": [ - "885" + "875" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,29 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9456/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk9992\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-06-19T20:25:42.0764549Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:58Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:58Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:59Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:59Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:26:00Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:26:00Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:26:00Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:26:00Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9661/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk5769\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2021-08-04T21:50:21.6007941Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:50:26Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:50:26Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:50:29Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:50:29Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:50:38Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:50:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9456/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk9992?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzk0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrOTk5Mj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9661/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk5769?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzk2NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrNTc2OT9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:26:11 GMT" - ], "Pragma": [ "no-cache" ], @@ -225,16 +222,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:6673fb05-ba10-4df6-bf2d-a5df1fd3f9bf" + "westus:5ab8730a-401e-41eb-8687-780425556b98" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "51a13c78-2164-47b7-a36b-bd8b3d80b71b" + "3b65a811-5232-4f6e-9133-18e80efd2195" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202612Z:51a13c78-2164-47b7-a36b-bd8b3d80b71b" + "WESTUS2:20210804T215052Z:3b65a811-5232-4f6e-9133-18e80efd2195" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,8 +239,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:50:51 GMT" + ], "Content-Length": [ - "2840" + "2220" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,25 +252,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk9992\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2020-06-19T20:26:00Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:58Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:58Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:59Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:59Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:26:00Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:26:00Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:26:00Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:26:00Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk9992init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2020-06-19T20:25:52Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2020-06-19T20:25:57Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:47Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:47Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:51Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:51Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:52Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:52Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:25:52Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:25:52Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.241.146.79\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk9992\",\r\n \"fqdn\": \"acinetsdk9992.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"da5dd59e-b7b8-4df9-80db-3716056c8bd7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9456/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk9992\",\r\n \"name\": \"acinetsdk9992\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk5769\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2021-08-04T21:50:38.493Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:50:26Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:50:26Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:50:29Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:50:29Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:50:38Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:50:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk5769init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T21:50:32.397Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T21:50:37.623Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"13.64.23.41\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk5769\",\r\n \"fqdn\": \"acinetsdk5769.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"dd51f8a2-c8b5-49dd-8941-b1697427bcc4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9661/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk5769\",\r\n \"name\": \"acinetsdk5769\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/aci_rg3645?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlZ3JvdXBzL2FjaV9yZzM2NDU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/aci_rg6000?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlZ3JvdXBzL2FjaV9yZzYwMDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e41e9fd1-1a3d-418d-a234-5178b8101931" + "2e9f46d2-92c9-45a1-8fb2-bcaaff88fd3b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -284,9 +284,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:26:12 GMT" - ], "Pragma": [ "no-cache" ], @@ -294,13 +291,13 @@ "1197" ], "x-ms-request-id": [ - "44e7f380-0775-4a11-86ff-77991bd6b747" + "901f29c9-8071-48ca-83c8-9974c51b91a8" ], "x-ms-correlation-request-id": [ - "44e7f380-0775-4a11-86ff-77991bd6b747" + "901f29c9-8071-48ca-83c8-9974c51b91a8" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202612Z:44e7f380-0775-4a11-86ff-77991bd6b747" + "WESTUS2:20210804T215052Z:901f29c9-8071-48ca-83c8-9974c51b91a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -308,6 +305,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:50:52 GMT" + ], "Content-Length": [ "173" ], @@ -318,64 +318,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg3645\",\r\n \"name\": \"aci_rg3645\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg6000\",\r\n \"name\": \"aci_rg6000\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg3645/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk4311?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzM2NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrNDMxMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg6000/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk516?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrNTE2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk4311\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk4311\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\",\r\n \"workspaceKey\": \"workspacekey\"\r\n }\r\n },\r\n \"sku\": \"Standard\",\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk4311init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk516\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk516\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\",\r\n \"workspaceKey\": \"workspacekey\"\r\n }\r\n },\r\n \"sku\": \"Standard\",\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk516init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ce375fae-4f46-4f83-86d3-384667006087" + "6ad3e13b-ab52-489e-9520-fa5f0f04b472" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1792" + "1789" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:26:20 GMT" - ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/6fb4795a-ad4d-4b9b-905c-357ab69def9f?api-version=2018-06-01" + "https://management.azure.com/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/0bf49c5d-f325-43fc-8d6e-23294d191597?api-version=2018-06-01" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ - "98" + "198" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ - "293" + "401" ], "x-ms-request-id": [ - "westus:6fb4795a-ad4d-4b9b-905c-357ab69def9f" + "westus:0bf49c5d-f325-43fc-8d6e-23294d191597" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "ab1fdc15-63d5-4718-a6fa-d4fa96e70834" + "c10627f9-0716-42a6-b9ae-17daebb50957" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202620Z:ab1fdc15-63d5-4718-a6fa-d4fa96e70834" + "WESTUS2:20210804T215057Z:c10627f9-0716-42a6-b9ae-17daebb50957" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -383,8 +380,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:50:56 GMT" + ], "Content-Length": [ - "1230" + "1222" ], "Content-Type": [ "application/json; charset=utf-8" @@ -393,29 +393,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk4311\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk4311init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": []\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.241.147.253\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk4311\",\r\n \"fqdn\": \"acinetsdk4311.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"40ccbf6e-e2f7-4def-a866-5cafb3b6bbdc\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg3645/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk4311\",\r\n \"name\": \"acinetsdk4311\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk516\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk516init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk516\",\r\n \"fqdn\": \"acinetsdk516.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"05ee2797-1602-43e3-98ea-d2876eca9a23\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg6000/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk516\",\r\n \"name\": \"acinetsdk516\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/6fb4795a-ad4d-4b9b-905c-357ab69def9f?api-version=2018-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL3dlc3R1cy9vcGVyYXRpb25zLzZmYjQ3OTVhLWFkNGQtNGI5Yi05MDVjLTM1N2FiNjlkZWY5Zj9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/0bf49c5d-f325-43fc-8d6e-23294d191597?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL3dlc3R1cy9vcGVyYXRpb25zLzBiZjQ5YzVkLWYzMjUtNDNmYy04ZDZlLTIzMjk0ZDE5MTU5Nz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:26:49 GMT" - ], "Pragma": [ "no-cache" ], @@ -423,16 +420,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4c62174b-6102-467e-8ce9-f01765025266" + "westus:135d801f-9278-496f-8d11-fa7f3a4ba748" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "d744f35c-eb45-4166-a423-81fa93461d0e" + "5cefd817-46b2-4f95-8432-1ac3fe0a0b64" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202650Z:d744f35c-eb45-4166-a423-81fa93461d0e" + "WESTUS2:20210804T215127Z:5cefd817-46b2-4f95-8432-1ac3fe0a0b64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -440,8 +437,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:51:27 GMT" + ], "Content-Length": [ - "884" + "720" ], "Content-Type": [ "application/json; charset=utf-8" @@ -450,29 +450,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg3645/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk4311\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-06-19T20:26:20.601384Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:26:36Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:26:36Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:26:37Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:26:37Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:26:38Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:26:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:26:38Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:26:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg6000/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk516\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2021-08-04T21:50:57.1510333Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:51:02Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:51:02Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:51:03Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:51:03Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg3645/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk4311?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzM2NDUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrNDMxMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg6000/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk516?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzYwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrNTE2P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:26:50 GMT" - ], "Pragma": [ "no-cache" ], @@ -480,16 +477,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:b8c66437-51ec-4534-a54b-94447cf7dacb" + "westus:e54f2a91-bca0-4fcc-9837-1f68e099e1ee" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "f07943ab-1d2a-44f8-96d9-21754f320d27" + "874fe066-ce47-4ba4-b9d1-a56f63f84bbe" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202651Z:f07943ab-1d2a-44f8-96d9-21754f320d27" + "WESTUS2:20210804T215127Z:874fe066-ce47-4ba4-b9d1-a56f63f84bbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -497,8 +494,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:51:27 GMT" + ], "Content-Length": [ - "2841" + "2213" ], "Content-Type": [ "application/json; charset=utf-8" @@ -507,35 +507,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk4311\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2020-06-19T20:26:38Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:26:36Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:26:36Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:26:37Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:26:37Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:26:38Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:26:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:26:38Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:26:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk4311init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2020-06-19T20:26:31Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2020-06-19T20:26:36Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:26:26Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:26:26Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:26:30Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:26:30Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:26:31Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:26:31Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:26:31Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:26:31Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.241.147.253\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk4311\",\r\n \"fqdn\": \"acinetsdk4311.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"40ccbf6e-e2f7-4def-a866-5cafb3b6bbdc\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg3645/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk4311\",\r\n \"name\": \"acinetsdk4311\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk516\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2021-08-04T21:51:13.437Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:51:02Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:51:02Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:51:03Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:51:03Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:51:13Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:51:13Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk516init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T21:51:07.04Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T21:51:12.37Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"13.91.96.225\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk516\",\r\n \"fqdn\": \"acinetsdk516.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"05ee2797-1602-43e3-98ea-d2876eca9a23\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg6000/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk516\",\r\n \"name\": \"acinetsdk516\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9456/providers/Microsoft.ContainerInstance/containerGroups?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzk0NTYvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9661/providers/Microsoft.ContainerInstance/containerGroups?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzk2NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHM/YXBpLXZlcnNpb249MjAyMS0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27c4efd0-fa67-4655-afd6-46a42bb39c2b" + "5f9249d9-1d2e-4d0c-a5ed-ae9904a0771c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:26:50 GMT" - ], "Pragma": [ "no-cache" ], @@ -543,16 +540,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:fa2a150b-40b0-4b1e-993a-786c9dad5223" + "westus:5f57a69d-8e10-409c-b769-47277443e6d6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "72d233eb-d62c-4925-9cdd-be569dc8c749" + "e7d6e238-61f9-4058-9255-ec3dcf550959" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202651Z:72d233eb-d62c-4925-9cdd-be569dc8c749" + "WESTUS2:20210804T215127Z:e7d6e238-61f9-4058-9255-ec3dcf550959" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -560,8 +557,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:51:27 GMT" + ], "Content-Length": [ - "1196" + "1214" ], "Content-Type": [ "application/json; charset=utf-8" @@ -570,18 +570,18 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk9992\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk9992init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": []\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.241.146.79\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk9992\",\r\n \"fqdn\": \"acinetsdk9992.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"da5dd59e-b7b8-4df9-80db-3716056c8bd7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9456/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk9992\",\r\n \"name\": \"acinetsdk9992\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk5769\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk5769init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"13.64.23.41\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk5769\",\r\n \"fqdn\": \"acinetsdk5769.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"dd51f8a2-c8b5-49dd-8941-b1697427bcc4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg9661/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk5769\",\r\n \"name\": \"acinetsdk5769\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "CreateResourceGroup": [ - "aci_rg9456", - "aci_rg3645" + "aci_rg9661", + "aci_rg6000" ], "ContainerInstanceListByResourceGroupTest": [ - "acinetsdk9992", - "acinetsdk4311" + "acinetsdk5769", + "acinetsdk516" ] }, "Variables": { diff --git a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceListTest.json b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceListTest.json index 2507e784ee15f..75136a4e0fab9 100644 --- a/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceListTest.json +++ b/sdk/containerinstance/Microsoft.Azure.Management.ContainerInstance/tests/SessionRecords/ContainerInstanceTests/ContainerInstanceListTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/aci_rg5244?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlZ3JvdXBzL2FjaV9yZzUyNDQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/aci_rg2147?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlZ3JvdXBzL2FjaV9yZzIxNDc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d0672a9d-1a9d-4a70-8a9d-53a1e53d9d13" + "91c19a27-e25e-4812-ab2a-3e731f79ad1e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -29,9 +29,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:22:17 GMT" - ], "Pragma": [ "no-cache" ], @@ -39,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "0835b716-08d9-41f2-a76d-ead7b3548fea" + "87fd7f69-cbf3-419b-b6bb-f79d329a8bfd" ], "x-ms-correlation-request-id": [ - "0835b716-08d9-41f2-a76d-ead7b3548fea" + "87fd7f69-cbf3-419b-b6bb-f79d329a8bfd" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202217Z:0835b716-08d9-41f2-a76d-ead7b3548fea" + "WESTUS2:20210804T214731Z:87fd7f69-cbf3-419b-b6bb-f79d329a8bfd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -53,6 +50,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:47:30 GMT" + ], "Content-Length": [ "173" ], @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg5244\",\r\n \"name\": \"aci_rg5244\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg2147\",\r\n \"name\": \"aci_rg2147\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg5244/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk2386?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzUyNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrMjM4Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg2147/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk8842?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzIxNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrODg0Mj9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk2386\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk2386\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\",\r\n \"workspaceKey\": \"workspacekey\"\r\n }\r\n },\r\n \"sku\": \"Standard\",\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk2386init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk8842\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk8842\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\",\r\n \"workspaceKey\": \"workspacekey\"\r\n }\r\n },\r\n \"sku\": \"Standard\",\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk8842init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fe3a128b-4d64-4d60-9ef9-34a083f8ac3c" + "923b95e7-b910-4480-8cdf-64845e7e1671" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,32 +95,29 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:22:24 GMT" - ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/5091658b-82be-4e63-92c6-2ea10254697d?api-version=2018-06-01" + "https://management.azure.com/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/8072737b-69b1-4915-a9ec-bf2f8db86106?api-version=2018-06-01" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ - "99" + "189" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ - "297" + "463" ], "x-ms-request-id": [ - "westus:5091658b-82be-4e63-92c6-2ea10254697d" + "westus:8072737b-69b1-4915-a9ec-bf2f8db86106" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "c9649772-a76d-4a91-b0da-f5706e589e57" + "dfba724d-c261-482b-86ca-fd060d03749a" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202225Z:c9649772-a76d-4a91-b0da-f5706e589e57" + "WESTUS2:20210804T214737Z:dfba724d-c261-482b-86ca-fd060d03749a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -128,8 +125,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:47:36 GMT" + ], "Content-Length": [ - "1229" + "1228" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,29 +138,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk2386\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk2386init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": []\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.234.94.160\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk2386\",\r\n \"fqdn\": \"acinetsdk2386.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"f8851008-9ebe-4577-a43e-8bc8fd4997e7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg5244/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk2386\",\r\n \"name\": \"acinetsdk2386\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk8842\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk8842init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk8842\",\r\n \"fqdn\": \"acinetsdk8842.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"11d9f62d-1ddc-4cd5-bc90-0f55de757963\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg2147/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk8842\",\r\n \"name\": \"acinetsdk8842\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/5091658b-82be-4e63-92c6-2ea10254697d?api-version=2018-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL3dlc3R1cy9vcGVyYXRpb25zLzUwOTE2NThiLTgyYmUtNGU2My05MmM2LTJlYTEwMjU0Njk3ZD9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/8072737b-69b1-4915-a9ec-bf2f8db86106?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL3dlc3R1cy9vcGVyYXRpb25zLzgwNzI3MzdiLTY5YjEtNDkxNS1hOWVjLWJmMmY4ZGI4NjEwNj9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:22:55 GMT" - ], "Pragma": [ "no-cache" ], @@ -168,16 +165,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:75b664d7-9e1a-4c54-a118-bbddb99fb9fe" + "westus:c4a258c3-7a4c-4818-8ef2-47955939ed23" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "73951d35-881a-43ee-918d-1dc7f49af2a4" + "be0971c2-d9a1-4b55-a92c-3ae0e640936f" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202255Z:73951d35-881a-43ee-918d-1dc7f49af2a4" + "WESTUS2:20210804T214807Z:be0971c2-d9a1-4b55-a92c-3ae0e640936f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,8 +182,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:48:06 GMT" + ], "Content-Length": [ - "243" + "875" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,29 +195,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg5244/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk2386\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2020-06-19T20:22:24.9408304Z\",\r\n \"properties\": {\r\n \"events\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg2147/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk8842\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2021-08-04T21:47:36.6287879Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:47:41Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:47:41Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:47:44Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:47:44Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:47:55Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:47:55Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/5091658b-82be-4e63-92c6-2ea10254697d?api-version=2018-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL3dlc3R1cy9vcGVyYXRpb25zLzUwOTE2NThiLTgyYmUtNGU2My05MmM2LTJlYTEwMjU0Njk3ZD9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg2147/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk8842?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzIxNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrODg0Mj9hcGktdmVyc2lvbj0yMDIxLTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:23:25 GMT" - ], "Pragma": [ "no-cache" ], @@ -225,16 +222,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:76ddbca3-3e61-48d6-a124-113c89997465" + "westus:cc4a7887-9444-47b1-b088-eefa7821aad6" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "ed4f4cc0-c1f3-4f82-95e6-b5ef2e11e70a" + "08ef0b9b-8b0f-4df9-99c4-d41cddc22a71" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202325Z:ed4f4cc0-c1f3-4f82-95e6-b5ef2e11e70a" + "WESTUS2:20210804T214807Z:08ef0b9b-8b0f-4df9-99c4-d41cddc22a71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,65 +239,11 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "885" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg5244/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk2386\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-06-19T20:22:24.9408304Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:52Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:52Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:53Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:53Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:54Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:54Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:54Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:54Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg5244/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk2386?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzUyNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrMjM4Nj9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 19 Jun 2020 20:23:25 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Vary": [ - "Accept-Encoding" - ], - "x-ms-request-id": [ - "westus:97bd2872-6f5e-48f8-936b-3c9b1513ca03" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "55bd0189-09a3-4c22-8273-2de7b9da44a7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200619T202325Z:55bd0189-09a3-4c22-8273-2de7b9da44a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "Wed, 04 Aug 2021 21:48:06 GMT" ], "Content-Length": [ - "2840" + "2221" ], "Content-Type": [ "application/json; charset=utf-8" @@ -309,25 +252,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk2386\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2020-06-19T20:22:54Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:52Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:52Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:53Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:53Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:54Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:54Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:54Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:54Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk2386init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2020-06-19T20:22:46Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2020-06-19T20:22:51Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:41Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:41Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:45Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:45Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:46Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:46Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:22:46Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:22:46Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.234.94.160\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk2386\",\r\n \"fqdn\": \"acinetsdk2386.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"f8851008-9ebe-4577-a43e-8bc8fd4997e7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg5244/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk2386\",\r\n \"name\": \"acinetsdk2386\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk8842\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2021-08-04T21:47:55.602Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:47:41Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:47:41Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:47:44Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:47:44Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:47:55Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:47:55Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk8842init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T21:47:48.692Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T21:47:54.529Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.86.184.23\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk8842\",\r\n \"fqdn\": \"acinetsdk8842.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"11d9f62d-1ddc-4cd5-bc90-0f55de757963\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg2147/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk8842\",\r\n \"name\": \"acinetsdk8842\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/aci_rg5461?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlZ3JvdXBzL2FjaV9yZzU0NjE/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/aci_rg4665?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlZ3JvdXBzL2FjaV9yZzQ2NjU/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0f7a9256-2b21-4c37-8bf0-64710a66eb9b" + "bd5ea136-b14e-4e61-9358-25153a01f516" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -341,23 +284,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:23:26 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "a50902a3-8de0-4fb9-9652-1fe1dd373331" + "6831a140-53e1-427c-ba45-e9d5259e0559" ], "x-ms-correlation-request-id": [ - "a50902a3-8de0-4fb9-9652-1fe1dd373331" + "6831a140-53e1-427c-ba45-e9d5259e0559" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202326Z:a50902a3-8de0-4fb9-9652-1fe1dd373331" + "WESTUS2:20210804T214807Z:6831a140-53e1-427c-ba45-e9d5259e0559" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -365,6 +305,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:48:07 GMT" + ], "Content-Length": [ "173" ], @@ -375,64 +318,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg5461\",\r\n \"name\": \"aci_rg5461\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4665\",\r\n \"name\": \"aci_rg4665\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg5461/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk7463?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzU0NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrNzQ2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4665/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk809?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzQ2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrODA5P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk7463\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk7463\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\",\r\n \"workspaceKey\": \"workspacekey\"\r\n }\r\n },\r\n \"sku\": \"Standard\",\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk7463init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk809\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk809\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\",\r\n \"workspaceKey\": \"workspacekey\"\r\n }\r\n },\r\n \"sku\": \"Standard\",\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk809init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\",\r\n \"secureValue\": \"secretValue1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c74b1e3f-44f3-4737-ac6b-7b8fffa48d3c" + "d6b3bad5-bcea-4492-8328-170bb7a0efd5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1792" + "1789" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:23:32 GMT" - ], "Pragma": [ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/024eb452-5e19-429d-9016-a95c6780fdda?api-version=2018-06-01" + "https://management.azure.com/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/88c29dfa-7652-473f-ac8f-7b1b98d236cf?api-version=2018-06-01" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ - "99" + "192" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ - "297" + "462" ], "x-ms-request-id": [ - "westus:024eb452-5e19-429d-9016-a95c6780fdda" + "westus:88c29dfa-7652-473f-ac8f-7b1b98d236cf" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "2e682912-21fa-4c12-97bd-4fd683c4c69e" + "4f20b0d9-6e10-477c-8452-e7fe8fa33f7d" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202333Z:2e682912-21fa-4c12-97bd-4fd683c4c69e" + "WESTUS2:20210804T214815Z:4f20b0d9-6e10-477c-8452-e7fe8fa33f7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -440,8 +380,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:48:14 GMT" + ], "Content-Length": [ - "1229" + "1222" ], "Content-Type": [ "application/json; charset=utf-8" @@ -450,29 +393,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk7463\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk7463init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": []\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.241.145.47\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk7463\",\r\n \"fqdn\": \"acinetsdk7463.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"46d4be99-b86c-414b-acc9-c040ef6c36b6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg5461/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk7463\",\r\n \"name\": \"acinetsdk7463\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk809\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk809init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk809\",\r\n \"fqdn\": \"acinetsdk809.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"3ed6700f-d522-410d-8f77-34f1c6c8ae97\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4665/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk809\",\r\n \"name\": \"acinetsdk809\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/024eb452-5e19-429d-9016-a95c6780fdda?api-version=2018-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL3dlc3R1cy9vcGVyYXRpb25zLzAyNGViNDUyLTVlMTktNDI5ZC05MDE2LWE5NWM2NzgwZmRkYT9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/locations/westus/operations/88c29dfa-7652-473f-ac8f-7b1b98d236cf?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL3dlc3R1cy9vcGVyYXRpb25zLzg4YzI5ZGZhLTc2NTItNDczZi1hYzhmLTdiMWI5OGQyMzZjZj9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:24:02 GMT" - ], "Pragma": [ "no-cache" ], @@ -480,16 +420,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:db143a81-0fcd-41da-8ae3-fc1042663ebb" + "westus:27f54816-b0a2-465d-8e80-afe6fcabf676" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "6205f0b9-2148-4062-b656-fbc568e203c8" + "a10a89c5-0ecc-490e-9514-bb6f3031eca3" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202403Z:6205f0b9-2148-4062-b656-fbc568e203c8" + "WESTUS2:20210804T214845Z:a10a89c5-0ecc-490e-9514-bb6f3031eca3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -497,8 +437,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:48:44 GMT" + ], "Content-Length": [ - "885" + "874" ], "Content-Type": [ "application/json; charset=utf-8" @@ -507,29 +450,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg5461/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk7463\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2020-06-19T20:23:33.0028334Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:23:47Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:23:47Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:23:48Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:23:48Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:23:48Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:23:48Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:23:49Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:23:49Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4665/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk809\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2021-08-04T21:48:14.8363238Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:48:19Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:48:19Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:48:21Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:48:21Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:48:32Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:48:32Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg5461/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk7463?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzU0NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrNzQ2Mz9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4665/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk809?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Jlc291cmNlR3JvdXBzL2FjaV9yZzQ2NjUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db250YWluZXJJbnN0YW5jZS9jb250YWluZXJHcm91cHMvYWNpbmV0c2RrODA5P2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:24:03 GMT" - ], "Pragma": [ "no-cache" ], @@ -537,16 +477,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:554d835c-c769-47d7-ad4a-d67d1ebb6a35" + "westus:683f1007-acc3-4cd8-81bc-55b88fe362a7" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "12f69f91-f0a3-42de-865b-f65c01c4d7fb" + "11edde28-16a0-47fc-ade0-a9fb18cf99f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202403Z:12f69f91-f0a3-42de-865b-f65c01c4d7fb" + "WESTUS2:20210804T214845Z:11edde28-16a0-47fc-ade0-a9fb18cf99f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -554,8 +494,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Wed, 04 Aug 2021 21:48:44 GMT" + ], "Content-Length": [ - "2840" + "2215" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,67 +507,79 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk7463\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2020-06-19T20:23:49Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:23:47Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:23:47Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:23:48Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:23:48Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:23:48Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:23:48Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:23:49Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:23:49Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk7463init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2020-06-19T20:23:41Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2020-06-19T20:23:46Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:23:37Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:23:37Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:23:41Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:23:41Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:23:41Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:23:41Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-06-19T20:23:41Z\",\r\n \"lastTimestamp\": \"2020-06-19T20:23:41Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.241.145.47\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk7463\",\r\n \"fqdn\": \"acinetsdk7463.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"46d4be99-b86c-414b-acc9-c040ef6c36b6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg5461/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk7463\",\r\n \"name\": \"acinetsdk7463\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk809\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2021-08-04T21:48:32.449Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:48:19Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:48:19Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:48:21Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:48:21Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"alpine@sha256:1775bebec23e1f3ce486989bfc9ff3c4e951690df84aa9f926497d82f2ffca9d\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T21:48:32Z\",\r\n \"lastTimestamp\": \"2021-08-04T21:48:32Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk809init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T21:48:25.462Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T21:48:31.525Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.83.207.60\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk809\",\r\n \"fqdn\": \"acinetsdk809.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n },\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"3ed6700f-d522-410d-8f77-34f1c6c8ae97\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4665/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk809\",\r\n \"name\": \"acinetsdk809\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/containerGroups?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvY29udGFpbmVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/providers/Microsoft.ContainerInstance/containerGroups?api-version=2021-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZGEyOGY1ZTUtYWE0NS00NmZlLTkwYzgtMDUzY2E0OWFiNGI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvY29udGFpbmVyR3JvdXBzP2FwaS12ZXJzaW9uPTIwMjEtMDMtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7bdb6e01-3a5b-4308-8fa3-ed03a69454b6" + "ed8551d5-0b00-453c-bff2-39edbab76d34" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/2.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ContainerInstance.ContainerInstanceManagementClient/4.0.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Fri, 19 Jun 2020 20:24:06 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "westcentralus:40d7f628-03a5-4bbe-92a7-54f3bb5fe907", - "westus:025fa71e-9464-4e65-a79b-f603e08f59d8", - "eastus:3c5e7c9d-3a15-4132-94ba-d9f088a3af29", - "westeurope:571d01a7-ca63-4990-9f66-ab290675ca4d", - "westus2:c6aaead5-cb93-490a-aab7-13bbc2078846", - "northeurope:d3245c39-1ab8-4744-b60d-0c08f95ef4ac", - "southeastasia:71ddf199-61bb-4846-918c-3972acd31e79", - "eastus2:e44f5988-2ec4-4e88-b7e8-626b9b4096f5", - "centralus:c405cf19-7dc4-4492-bebb-7a5c0afec0bb", - "australiaeast:8bc1e9f6-f979-4d22-be23-6e764ffc347c", - "southcentralus:148c0057-6aac-4cee-b0db-45deb415ae18", - "eastasia:92b1683d-9cfd-44f7-8b3e-39d190405849", - "canadacentral:1e8c8cf9-1eec-42fe-ad63-7397447821cd", - "japaneast:b04e5e8e-fe8e-4022-b979-0f546c8a2dc0", - "centraluseuap:4a3fb139-8577-4ec5-aaca-bab6711d819c", - "eastus2euap:3892f984-97ce-4ed7-9f9f-fde103964a43" + "australiaeast:6b3811fc-9088-45c0-9135-eb4b65b2f18a", + "australiasoutheast:c2c49eff-6b79-47af-ac31-39231107992d", + "brazilsouth:89058d30-a795-4c4e-b9cf-408818ffb8e4", + "canadacentral:5bf74b1a-5c57-468c-8446-736575ecc628", + "canadaeast:9b04bcfa-da1c-40b0-bd35-ad586e84fabd", + "centralindia:1a9446c3-cb70-4b2e-82f0-7c75ad54de04", + "centralus:7ef6d807-4a23-47e2-b306-b6eba1b81445", + "eastasia:0c96ddf3-f63f-4ba0-a201-44c58337bb3e", + "eastus:7fa747b1-820f-4717-8f1f-1998bc467862", + "eastus2:b75eaba6-d020-4f93-b44c-22139f5a3127", + "francecentral:3d99ce8f-f695-40ea-ae71-f3e03e11d8c8", + "germanywestcentral:a479cf4f-b25d-4f88-bd49-b3c9ea9e4de6", + "japaneast:dbe871f8-7c6a-4a9f-b7e5-fcaaf14752ed", + "japanwest:aed62614-0050-49df-8667-cc1b6b1bb42f", + "koreacentral:d11c49b9-5dce-44ec-85fe-3d93c6cc41f8", + "northcentralus:9bc93eba-f115-411c-a048-ed32fff00ad2", + "northeurope:388cba87-c462-4442-b93b-dd00393b046d", + "norwayeast:ac04c6ff-296d-412c-8f03-dcc623276e58", + "southcentralus:7f26bec1-c5b1-47ac-af6c-1adc46a9b4e2", + "southeastasia:c27504fd-92fd-46df-8cb5-6c6e8efe4b64", + "southindia:4c13039b-44db-4893-9855-92d61dd1e6e6", + "switzerlandnorth:e4a1665f-f4f7-4122-971f-866dde470818", + "uaenorth:9ef83079-8f44-4cf1-8fb7-3efce1a5d5da", + "uksouth:3f18f8e3-4e00-4215-8409-6704de7a6eda", + "ukwest:98b70ac3-d669-4ea5-94b7-724a6319682f", + "westcentralus:7191a96c-5654-4cb8-9763-ea711ce5b496", + "westeurope:4cadf3d4-665d-46c5-bcac-07e8805b86ee", + "westus:f882c1b2-5622-4bd7-83cd-8066167bfcb1", + "westus2:1340fbf0-3649-485e-a7a3-923e0f0037ed", + "centraluseuap:a8102e09-57cb-4f0a-b3c8-34a3b6427796", + "eastus2euap:d19a4d38-3dd7-43ee-be87-82e53eec9c1c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-request-id": [ - "1ce85e9e-e965-4fa5-a2d0-54f2fd75b737" + "e9384f63-0dba-405a-ad53-126f7fcccddc" ], "x-ms-correlation-request-id": [ - "1ce85e9e-e965-4fa5-a2d0-54f2fd75b737" + "e9384f63-0dba-405a-ad53-126f7fcccddc" ], "x-ms-routing-request-id": [ - "WESTUS:20200619T202406Z:1ce85e9e-e965-4fa5-a2d0-54f2fd75b737" + "WESTUS2:20210804T214847Z:e9384f63-0dba-405a-ad53-126f7fcccddc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -632,28 +587,31 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "639544" + "Date": [ + "Wed, 04 Aug 2021 21:48:46 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "998970" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainerwestcentralus\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.6\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnetwestcentralus-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainerwestcentralus\",\r\n \"name\": \"appcontainerwestcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-d35f16b5-910f-42ef-a7dd-103354a894bb/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-66b8451a-6425-4d92-9e52-2582f6e731ad\",\r\n \"name\": \"zeiny-k8s-66b8451a-6425-4d92-9e52-2582f6e731ad\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/testjobs:zeiny\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e746d14a-d89f-4b38-a085-b75a7ba21e94/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-fedef55a-4e41-4ef6-a302-bf81e18852b6\",\r\n \"name\": \"zeiny-k8s-fedef55a-4e41-4ef6-a302-bf81e18852b6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk2386\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk2386init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": []\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.234.94.160\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk2386\",\r\n \"fqdn\": \"acinetsdk2386.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"f8851008-9ebe-4577-a43e-8bc8fd4997e7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg5244/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk2386\",\r\n \"name\": \"acinetsdk2386\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk7463\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk7463init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": []\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.241.145.47\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk7463\",\r\n \"fqdn\": \"acinetsdk7463.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"46d4be99-b86c-414b-acc9-c040ef6c36b6\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg5461/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk7463\",\r\n \"name\": \"acinetsdk7463\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/sbz-helloworld:1.0-alpine\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierf85a36c961f24223b779d9c9b83c606bACIContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westus-f85a36c961f24223b779d9c9b83c606670f85897b62c023\",\r\n \"name\": \"cgposts-westus-f85a36c961f24223b779d9c9b83c606670f85897b62c023\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"juhacket3\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/juhacketTEST/providers/Microsoft.ManagedIdentity/userAssignedIdentities/juhacketMSI\": {\r\n \"principalId\": \"e7d7fd79-33c2-4f87-a42c-178f95d31c6e\",\r\n \"clientId\": \"3d7e5847-dc4c-4031-b138-0c7e68c812ad\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/juhacket3\",\r\n \"name\": \"juhacket3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"minsha-windows-3b\",\r\n \"properties\": {\r\n \"image\": \"shaomq/windows-server\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 8.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"13.86.248.148\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/minsha/providers/Microsoft.ContainerInstance/containerGroups/minsha-windows-3b\",\r\n \"name\": \"minsha-windows-3b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"minsha-windows-3b-7g\",\r\n \"properties\": {\r\n \"image\": \"shaomq/windows-server\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 7.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.234.107.146\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/minsha/providers/Microsoft.ContainerInstance/containerGroups/minsha-windows-3b-7g\",\r\n \"name\": \"minsha-windows-3b-7g\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainer5\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainer5\",\r\n \"name\": \"appcontainer5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"main\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"sidecar\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-tutorial-sidecar\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"netsidecar\",\r\n \"properties\": {\r\n \"image\": \"dariob/netstats-alpine:1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"PORT\",\r\n \"value\": \"9999\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8807d057-fff3-4995-b86d-63934ab69f3b\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/logtestmultcontainer\",\r\n \"name\": \"logtestmultcontainer\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/mycg\",\r\n \"name\": \"mycg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"main\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"sidecar\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-tutorial-sidecar\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"netsidecar\",\r\n \"properties\": {\r\n \"image\": \"dariob/netstats-alpine:1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"PORT\",\r\n \"value\": \"9999\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/netsidecartest\",\r\n \"name\": \"netsidecartest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/testpongserver:31010\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-1ff462da-e090-4804-9091-44a3bbb0745d/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-5e04c767-29d5-4d69-9b14-282b30415a84\",\r\n \"name\": \"zeiny-atlas-5e04c767-29d5-4d69-9b14-282b30415a84\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/testpongserver:31010\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-1ff462da-e090-4804-9091-44a3bbb0745d/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-f226436b-6309-4559-8f8e-47d885885498\",\r\n \"name\": \"zeiny-k8s-f226436b-6309-4559-8f8e-47d885885498\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/testpongserver:31010\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-2ee4ad02-5ccb-4077-867a-c725b5dec25a/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-54b7e292-c80a-48e9-83a8-cd9ac8bad34b\",\r\n \"name\": \"zeiny-atlas-54b7e292-c80a-48e9-83a8-cd9ac8bad34b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/testpongserver:31010\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-2ee4ad02-5ccb-4077-867a-c725b5dec25a/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-a9ee7454-c707-4ae9-8dda-a5b25ee30ba9\",\r\n \"name\": \"zeiny-k8s-a9ee7454-c707-4ae9-8dda-a5b25ee30ba9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/servercore:10.0.17763.504\",\r\n \"command\": [\r\n \"pwsh.exe\",\r\n \"-Command\",\r\n \"while ($true) { Write - Host(Get - Date); Start - Sleep 1000000; }\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 8.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-38a6fa40-70e4-403f-a48f-225ea4277f09/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-dab8d1cf-7432-40e7-a0e4-5616946f44aa\",\r\n \"name\": \"zeiny-k8s-dab8d1cf-7432-40e7-a0e4-5616946f44aa\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-4b642f7e-dbbb-41a7-9b17-daf2c9994226/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-862798a8-24c1-4d82-8cb6-274b89f36457\",\r\n \"name\": \"zeiny-atlas-862798a8-24c1-4d82-8cb6-274b89f36457\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-4b642f7e-dbbb-41a7-9b17-daf2c9994226/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-5b8e5728-924c-4e69-8f2e-65c7c939ebc6\",\r\n \"name\": \"zeiny-k8s-5b8e5728-924c-4e69-8f2e-65c7c939ebc6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"principalId\": \"ed7d3f91-3415-4c29-b5c9-18110f0b3c0a\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-4cb0326d-3049-42a5-87e3-81a615696673/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-6769a18b-27fc-421c-bb7f-24a859c6e806\",\r\n \"name\": \"zeiny-atlas-6769a18b-27fc-421c-bb7f-24a859c6e806\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"principalId\": \"7e7a4a12-fd53-4dfe-8330-29f4be41855d\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-4cb0326d-3049-42a5-87e3-81a615696673/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-8b7bdbed-5e9a-4498-bfba-7553622cd79e\",\r\n \"name\": \"zeiny-k8s-8b7bdbed-5e9a-4498-bfba-7553622cd79e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/testdiskspace:zeiny\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"mountPath\": \"/mnt/omak\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-5320c2e0-5582-4ada-bfa2-c85f2f647c62/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-059ae286-095a-4310-bb2e-d4791e6b2e23\",\r\n \"name\": \"zeiny-k8s-059ae286-095a-4310-bb2e-d4791e6b2e23\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/testdiskspace:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"0e5b845e-f683-4c5c-ba60-d51f35df208d\",\r\n \"fqdn\": \"0e5b845e-f683-4c5c-ba60-d51f35df208d.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-571f1736-82eb-4994-8210-eb1cf87224e7/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-0e5b845e-f683-4c5c-ba60-d51f35df208d\",\r\n \"name\": \"zeiny-k8s-0e5b845e-f683-4c5c-ba60-d51f35df208d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"mountPath\": \"/etc\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-730d1d52-80b0-4bb0-bb24-bff48f7f0fb0/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-011f9540-e8c9-4765-8401-a4abec759342\",\r\n \"name\": \"zeiny-atlas-011f9540-e8c9-4765-8401-a4abec759342\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"mountPath\": \"/etc\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-730d1d52-80b0-4bb0-bb24-bff48f7f0fb0/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-f306deb4-75e6-4de8-a4ba-b27b041254f4\",\r\n \"name\": \"zeiny-k8s-f306deb4-75e6-4de8-a4ba-b27b041254f4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"principalId\": \"8330437f-1ae9-4924-a739-b18a0bc3b6d0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-76df0609-48b8-466c-8946-82770638521d/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-03bb8224-3544-48c9-b466-a9b5e1a69b03\",\r\n \"name\": \"zeiny-atlas-03bb8224-3544-48c9-b466-a9b5e1a69b03\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"principalId\": \"5740e2e9-6e4d-48b3-8a79-d045ae7d32cb\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-76df0609-48b8-466c-8946-82770638521d/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-92cd1fe4-0be1-4bf2-ba22-0d70b7d5ad8d\",\r\n \"name\": \"zeiny-k8s-92cd1fe4-0be1-4bf2-ba22-0d70b7d5ad8d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"principalId\": \"3c496d32-7b19-4d84-80fb-46d0c908d354\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-8374084f-7e9c-446a-8406-d8cef6086388/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-e640c4aa-16b7-4c82-a2eb-dc77bdc63219\",\r\n \"name\": \"zeiny-atlas-e640c4aa-16b7-4c82-a2eb-dc77bdc63219\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"principalId\": \"3c1c7e3c-077e-4183-b9a0-091971c89b0f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-8374084f-7e9c-446a-8406-d8cef6086388/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-8e940f07-e556-40d1-b750-0b7e01245031\",\r\n \"name\": \"zeiny-k8s-8e940f07-e556-40d1-b750-0b7e01245031\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/testdiskspace:zeiny\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"mountPath\": \"/mnt/omak\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-89a7b59a-6fec-44eb-92ce-5985b58b034a/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-8eaa71d3-0ae9-49eb-a018-150f52f31dea\",\r\n \"name\": \"zeiny-k8s-8eaa71d3-0ae9-49eb-a018-150f52f31dea\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-9518b4a5-aec5-4ec9-b833-5ee940883dfb/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-20c361ec-1326-44e8-b192-8b41c329b7e0\",\r\n \"name\": \"zeiny-atlas-20c361ec-1326-44e8-b192-8b41c329b7e0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-9518b4a5-aec5-4ec9-b833-5ee940883dfb/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-bbcd5af9-3fcf-4b6f-945d-3c317a0940f0\",\r\n \"name\": \"zeiny-k8s-bbcd5af9-3fcf-4b6f-945d-3c317a0940f0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-b82d103a-fa5d-4ceb-9ec9-9a89d96f2bda/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-da41579d-ba30-4bd3-b97c-5225b89b1df3\",\r\n \"name\": \"zeiny-atlas-da41579d-ba30-4bd3-b97c-5225b89b1df3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-b82d103a-fa5d-4ceb-9ec9-9a89d96f2bda/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-25bab461-4a5f-48c8-bde5-136c4a5ef5e6\",\r\n \"name\": \"zeiny-k8s-25bab461-4a5f-48c8-bde5-136c4a5ef5e6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"=https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-04f5ec07-c114-4b8e-a38b-dffd9ad34f6f\",\r\n \"name\": \"zeiny-atlas-04f5ec07-c114-4b8e-a38b-dffd9ad34f6f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"=https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-cd7a96c1-3c7e-43ed-8383-9bc361c9e52f\",\r\n \"name\": \"zeiny-k8s-cd7a96c1-3c7e-43ed-8383-9bc361c9e52f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/testpongserver:31010\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-d93e3f3a-22cb-4928-a1fa-6a63043b6254/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-17971170-343c-4e2c-9000-96630d16d6e6\",\r\n \"name\": \"zeiny-atlas-17971170-343c-4e2c-9000-96630d16d6e6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/testpongserver:31010\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-d93e3f3a-22cb-4928-a1fa-6a63043b6254/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-e7b77244-72d0-490b-97d0-9987bc341740\",\r\n \"name\": \"zeiny-k8s-e7b77244-72d0-490b-97d0-9987bc341740\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/perf-f745b17e-5aea-4d9b-91db-56eee672d1ca/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-c02bd104-8ae5-41a0-9684-07dc8f65c5aa\": {\r\n \"principalId\": \"d653e5c4-6660-4ddf-a0af-7d9b5b34a800\",\r\n \"clientId\": \"6ce2587d-e8bd-4c70-8970-495764651970\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-f745b17e-5aea-4d9b-91db-56eee672d1ca/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-c02bd104-8ae5-41a0-9684-07dc8f65c5aa\",\r\n \"name\": \"zeiny-k8s-c02bd104-8ae5-41a0-9684-07dc8f65c5aa\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"principalId\": \"f79da3d3-439e-47d6-80b7-69aeb0b6a7e3\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-fbf46b9f-262e-4e11-b549-1ae27c9d5830/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-76612f5c-18cf-4d3b-b30e-3411e4b7af2d\",\r\n \"name\": \"zeiny-atlas-76612f5c-18cf-4d3b-b30e-3411e4b7af2d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"principalId\": \"d68de8c6-44e4-4f6e-b529-ae82d500b6e5\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-fbf46b9f-262e-4e11-b549-1ae27c9d5830/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-69dc86f5-1d26-4bba-9f1e-050ad5b4270b\",\r\n \"name\": \"zeiny-k8s-69dc86f5-1d26-4bba-9f1e-050ad5b4270b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/meshidentitytestapplication:aci\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-3\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnfailthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.234.107.32\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637267937410485409/providers/Microsoft.ContainerInstance/containerGroups/diff1-westus-637267937410485409\",\r\n \"name\": \"diff1-westus-637267937410485409\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/meshidentitytestapplication:aci\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-3\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnfailthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.241.141.50\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637267937410485409/providers/Microsoft.ContainerInstance/containerGroups/diff2-westus-637267937410485409\",\r\n \"name\": \"diff2-westus-637267937410485409\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/testwestus/providers/Microsoft.Network/networkProfiles/aci-network-profile-testwestusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/testwestus/providers/Microsoft.ContainerInstance/containerGroups/test1\",\r\n \"name\": \"test1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"byovnet-test\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.241.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/virtual-kubelet-tests/providers/Microsoft.Network/networkProfiles/aci-network-profile-virtual-kubelet-tests-vnet-aci-connector\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/virtual-kubelet-tests/providers/Microsoft.ContainerInstance/containerGroups/byovnet-test\",\r\n \"name\": \"byovnet-test\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"command\": [\r\n \"nginx\",\r\n \"-g\",\r\n \"daemon off;\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n },\r\n \"limits\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/virtual-kubelet-tests-728e0a/providers/Microsoft.ContainerInstance/containerGroups/virtual-kubelet-test-container-group\",\r\n \"name\": \"virtual-kubelet-test-container-group\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"command\": [\r\n \"nginx\",\r\n \"-g\",\r\n \"daemon off;\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n },\r\n \"limits\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"port\": 80,\r\n \"scheme\": \"Http\"\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/virtual-kubelet-tests-728e0a/providers/Microsoft.ContainerInstance/containerGroups/virtual-kubelet-test-container-group-89ee80\",\r\n \"name\": \"virtual-kubelet-test-container-group-89ee80\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"command\": [\r\n \"nginx\",\r\n \"-g\",\r\n \"daemon off;\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n },\r\n \"limits\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"readinessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/\",\r\n \"port\": 80,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 3,\r\n \"timeoutSeconds\": 120\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/virtual-kubelet-tests-728e0a/providers/Microsoft.ContainerInstance/containerGroups/virtual-kubelet-test-container-group-91f9f8\",\r\n \"name\": \"virtual-kubelet-test-container-group-91f9f8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a4cba867-30d7-4c62-aa5c-553c03704330\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.32\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-03be3132-0178-42fe-b697-33c0d71d9c39\",\r\n \"name\": \"validation-03be3132-0178-42fe-b697-33c0d71d9c39\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3e5a259b-9ef8-4f4f-bd2c-c49f6c674735\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.35\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-0616b7be-5338-49c8-bb2d-1540f74ef598\",\r\n \"name\": \"validation-0616b7be-5338-49c8-bb2d-1540f74ef598\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7b7bdb2e-e820-4e17-a169-cf3254b7089e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.14\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-0e3b1ac3-7abd-4d1c-99b7-d41c36baac00\",\r\n \"name\": \"validation-0e3b1ac3-7abd-4d1c-99b7-d41c36baac00\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2ab36d39-e9a0-4653-9cdf-f7d51efe23cc\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.12\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-1c901d41-c8e9-4cb2-9754-0f078bb9a075\",\r\n \"name\": \"validation-1c901d41-c8e9-4cb2-9754-0f078bb9a075\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f3dd5e0d-57fb-4182-946c-16cda03752b2\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.17\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-24577b62-e5e0-49f3-a8d8-66a554569384\",\r\n \"name\": \"validation-24577b62-e5e0-49f3-a8d8-66a554569384\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a7e6aa83-2c84-49f1-8c1b-7442fb345b6c\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.19\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-3366fe5b-409a-48fe-b1b6-04d2715af88c\",\r\n \"name\": \"validation-3366fe5b-409a-48fe-b1b6-04d2715af88c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c8d636fa-7494-42ac-88fb-32c1d014feec\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.36\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-3628e15a-f5f6-463b-a31d-e711ec99e94b\",\r\n \"name\": \"validation-3628e15a-f5f6-463b-a31d-e711ec99e94b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-56674f72-a6a3-46ff-9b94-3429e7367428\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.21\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-377f8b34-83b5-4225-8695-af0ef165a092\",\r\n \"name\": \"validation-377f8b34-83b5-4225-8695-af0ef165a092\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1c8b3b79-9f24-4412-9788-5fa549af0a54\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.24\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-3c1eef81-24fa-49ad-9871-1d55499a6dc0\",\r\n \"name\": \"validation-3c1eef81-24fa-49ad-9871-1d55499a6dc0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-17a8087c-3af5-40ba-9de1-b5e983be7ce0\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.26\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-4855c805-bffb-4cca-8d7b-84202356ccd5\",\r\n \"name\": \"validation-4855c805-bffb-4cca-8d7b-84202356ccd5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-ca802e7c-fc82-4659-8512-28546cf9bc19\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.16\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-4a4abf9a-e6f4-4179-b747-6e1c1e90a282\",\r\n \"name\": \"validation-4a4abf9a-e6f4-4179-b747-6e1c1e90a282\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-d9f747d0-79c6-4e2e-ba14-08f6f41332c2\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.10\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-4bede9d2-2107-4c1d-bd5a-8b4100e1ae05\",\r\n \"name\": \"validation-4bede9d2-2107-4c1d-bd5a-8b4100e1ae05\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7ff59d0f-8668-4ecf-a60e-c20362a738b3\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.25\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-50e4b9d6-599c-4f74-b5bd-57f651dfb015\",\r\n \"name\": \"validation-50e4b9d6-599c-4f74-b5bd-57f651dfb015\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-df827df8-c1ef-4c1d-9426-5a097d30aa6c\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.31\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-544f4f7d-0d3f-47d3-b13e-91a6862f3a2e\",\r\n \"name\": \"validation-544f4f7d-0d3f-47d3-b13e-91a6862f3a2e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-44c543a6-6610-4a06-8cea-e3c439850338\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-6112e1e9-bcda-458b-b32a-03b584263341\",\r\n \"name\": \"validation-6112e1e9-bcda-458b-b32a-03b584263341\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-d7bff310-11c8-4151-a2f1-e3a3156f63b1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.43\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-6be53863-086d-4f0a-8bb4-7ec679b37edd\",\r\n \"name\": \"validation-6be53863-086d-4f0a-8bb4-7ec679b37edd\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c26a8eed-3df4-4818-b58e-468a53e1360b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.38\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-7809e165-528e-4905-b85c-1f269e841db0\",\r\n \"name\": \"validation-7809e165-528e-4905-b85c-1f269e841db0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-aaf1e8f9-8d6a-4d43-896f-36f6c857c496\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.34\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-7a74e472-f3ee-4659-a7fc-da984e2d43fc\",\r\n \"name\": \"validation-7a74e472-f3ee-4659-a7fc-da984e2d43fc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6b4b6f81-8e35-415e-8d39-1311302841c4\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.41\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-7d0c879a-7ab2-40ce-887a-d4b6bb42bbbc\",\r\n \"name\": \"validation-7d0c879a-7ab2-40ce-887a-d4b6bb42bbbc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-353c19d0-08d0-4570-822e-804b91a6efdb\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.39\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-83b35cdb-5c9e-43a2-887e-6af3ad331213\",\r\n \"name\": \"validation-83b35cdb-5c9e-43a2-887e-6af3ad331213\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3bca87a3-b4c6-4952-bcea-248af286f9d8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.11\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-863408ca-d8fe-41b5-b191-454a135a3368\",\r\n \"name\": \"validation-863408ca-d8fe-41b5-b191-454a135a3368\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-bc20dd29-865f-47cd-8260-17074c70ef99\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.52\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-896a9267-f6d0-49b9-8fe5-c020c018e6d0\",\r\n \"name\": \"validation-896a9267-f6d0-49b9-8fe5-c020c018e6d0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0c3bdc95-921f-4f71-9e43-4bdc6b34c409\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.46\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-8f067648-2639-4391-8a4f-ebbf9e6f605f\",\r\n \"name\": \"validation-8f067648-2639-4391-8a4f-ebbf9e6f605f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9d813c0e-9ff7-4882-90ed-82bc8be7aa48\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.20\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-9769403d-e1ff-4274-b4b0-3a5161cc33cc\",\r\n \"name\": \"validation-9769403d-e1ff-4274-b4b0-3a5161cc33cc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-978b66c6-b8eb-4c64-aeed-6eb87d77204c\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.23\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-a38ea3ba-f495-47b2-9e36-566154954a58\",\r\n \"name\": \"validation-a38ea3ba-f495-47b2-9e36-566154954a58\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-5a69adea-b7a8-410d-a327-1242f6a4331f\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.40\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-af728308-9d01-471d-94be-64d0295d414c\",\r\n \"name\": \"validation-af728308-9d01-471d-94be-64d0295d414c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-da341f5a-94c0-4e2c-95e2-18ca7ae6f7fe\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.48\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-b01684a6-f028-439c-b390-7d5e55fbf03f\",\r\n \"name\": \"validation-b01684a6-f028-439c-b390-7d5e55fbf03f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-957b3977-cc67-4b45-9920-fcef20e4b2c8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.30\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-baa57158-5167-40e1-88d0-8495a4023045\",\r\n \"name\": \"validation-baa57158-5167-40e1-88d0-8495a4023045\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a13f92c1-a3d1-4837-8ff9-8e80537867b3\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.22\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-bbd289f3-c558-4fd5-82be-0aaa2af23036\",\r\n \"name\": \"validation-bbd289f3-c558-4fd5-82be-0aaa2af23036\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9bdd81ab-194d-4844-b3c8-b68b906ddf5b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.37\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-bf35f1b3-e145-424f-9ff0-b778a1452fc7\",\r\n \"name\": \"validation-bf35f1b3-e145-424f-9ff0-b778a1452fc7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-21b9cf9a-17bc-4859-80b6-8d7680349915\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.27\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-cac4f1c4-999d-49c0-ad4d-99d78de845aa\",\r\n \"name\": \"validation-cac4f1c4-999d-49c0-ad4d-99d78de845aa\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-bcd689f0-3d07-4f43-9087-151b2619a6f8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.45\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-dde17c13-0dc1-41b7-a29b-1174d06340af\",\r\n \"name\": \"validation-dde17c13-0dc1-41b7-a29b-1174d06340af\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2e2027c3-9c9a-43d8-8317-795116fe5f30\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.13\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-e04190e9-e78e-427f-8721-656683fab175\",\r\n \"name\": \"validation-e04190e9-e78e-427f-8721-656683fab175\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-cb78c324-8fda-437d-8154-79d73fdcf491\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.42\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-e2b1dba7-cad4-4554-bbb8-2d8eb9a75d81\",\r\n \"name\": \"validation-e2b1dba7-cad4-4554-bbb8-2d8eb9a75d81\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3243e4a7-47a6-48c9-8117-b60b4b217f00\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.47\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-e60f4bcc-04ba-4d85-84b8-8136505a343e\",\r\n \"name\": \"validation-e60f4bcc-04ba-4d85-84b8-8136505a343e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-cb560c96-329e-4b58-a9fc-897727a90004\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.18\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-e6cf3ccd-87b1-42c4-8297-5d58643ce88d\",\r\n \"name\": \"validation-e6cf3ccd-87b1-42c4-8297-5d58643ce88d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6cca4330-5ea0-43b6-904c-3342678bf647\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.29\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-e820be01-5fd8-4ef8-a771-cecdc2376ec5\",\r\n \"name\": \"validation-e820be01-5fd8-4ef8-a771-cecdc2376ec5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2174bc16-79f1-443d-99ca-ffce8aebf8ed\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.44\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ecc8c558-b205-4f51-a48d-4a8f1e15f4fb\",\r\n \"name\": \"validation-ecc8c558-b205-4f51-a48d-4a8f1e15f4fb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7ea90089-fa2b-42b3-b199-fd94a7e7a9c6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.15\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ecefe4b8-5a68-42ec-ad78-f43547ab24f1\",\r\n \"name\": \"validation-ecefe4b8-5a68-42ec-ad78-f43547ab24f1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-75164667-ad0d-4b16-974d-c89735d07757\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.28\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ef5aa20a-98fe-44b0-96f1-d7d602995f6e\",\r\n \"name\": \"validation-ef5aa20a-98fe-44b0-96f1-d7d602995f6e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"log-anal-restart\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"56630367-1a6e-4a00-9fa3-deed276b4a87\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zedrg/providers/Microsoft.ContainerInstance/containerGroups/log-anal-restart\",\r\n \"name\": \"log-anal-restart\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/19repro/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus19repro-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/19repro/providers/Microsoft.ContainerInstance/containerGroups/stet2\",\r\n \"name\": \"stet2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/19repro/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus19repro-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/19repro/providers/Microsoft.ContainerInstance/containerGroups/test1\",\r\n \"name\": \"test1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/19repro/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus19repro-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/19repro/providers/Microsoft.ContainerInstance/containerGroups/test2\",\r\n \"name\": \"test2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"bcdr-eastus\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"bcdr-test\",\r\n \"fqdn\": \"bcdr-test.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/ACI-Compliance/providers/Microsoft.ContainerInstance/containerGroups/bcdr-eastus\",\r\n \"name\": \"bcdr-eastus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Updating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/sbz-helloworld:1.0-alpine\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier86e91ad7c49043e6a59d6cb7a6dbac85ACIContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastus-86e91ad7c49043e6a59d6cb7a6dbac8ca1cb0a6721792f5\",\r\n \"name\": \"cgposts-eastus-86e91ad7c49043e6a59d6cb7a6dbac8ca1cb0a6721792f5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/meshidentitytestapplication:aci\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera0506c3758884716a02cf5636c6194bfACIManagedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-eastus-a0506c3758884716a02cf5636c6194bfacimanagedidentity\",\r\n \"name\": \"msi-eastus-a0506c3758884716a02cf5636c6194bfacimanagedidentity\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"create-share\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli:latest\",\r\n \"command\": [\r\n \"az\",\r\n \"storage\",\r\n \"share\",\r\n \"create\",\r\n \"--name\",\r\n \"automonsftpfileshare\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"AZURE_STORAGE_KEY\",\r\n \"value\": \"hpRjd2O5uE8W73nYsqvQRSTAr8dehTjRRyHMTOH9bqImgHHWlYDv0kkIjsSBMiVgdPaGknvhReSCF/07JH99cg==\"\r\n },\r\n {\r\n \"name\": \"AZURE_STORAGE_ACCOUNT\",\r\n \"value\": \"sftpstgec4el4r7oroxm\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketSFTP/providers/Microsoft.ContainerInstance/containerGroups/create-share-group\",\r\n \"name\": \"create-share-group\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"sftp\",\r\n \"properties\": {\r\n \"image\": \"atmoz/sftp:latest\",\r\n \"ports\": [\r\n {\r\n \"port\": 22\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"SFTP_USERS\",\r\n \"value\": \"juhacket:test123:1001\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 2.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"sftpvolume\",\r\n \"mountPath\": \"/home/juhacket/upload\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 22\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"sftpvolume\",\r\n \"azureFile\": {\r\n \"shareName\": \"automonsftpfileshare\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sftpstgec4el4r7oroxm\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketSFTP/providers/Microsoft.ContainerInstance/containerGroups/sftp-group\",\r\n \"name\": \"sftp-group\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine-test-01\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/d\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTest/providers/Microsoft.ContainerInstance/containerGroups/alpine-test-01\",\r\n \"name\": \"alpine-test-01\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"juhacket\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.6\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/juhacket\",\r\n \"name\": \"juhacket\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"juhacket1\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/juhacketTEST/providers/Microsoft.ManagedIdentity/userAssignedIdentities/juhacketMSI\": {\r\n \"principalId\": \"e7d7fd79-33c2-4f87-a42c-178f95d31c6e\",\r\n \"clientId\": \"3d7e5847-dc4c-4031-b138-0c7e68c812ad\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/juhacket1\",\r\n \"name\": \"juhacket1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"juhacket2\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/juhacketTEST/providers/Microsoft.ManagedIdentity/userAssignedIdentities/juhacketMSI\": {\r\n \"principalId\": \"e7d7fd79-33c2-4f87-a42c-178f95d31c6e\",\r\n \"clientId\": \"3d7e5847-dc4c-4031-b138-0c7e68c812ad\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/juhacket2\",\r\n \"name\": \"juhacket2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"juhacket-win1\",\r\n \"properties\": {\r\n \"image\": \"microsoft/iis:nanoserver\",\r\n \"command\": [\r\n \"powershell\",\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/juhacket-win1\",\r\n \"name\": \"juhacket-win1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainer6\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainer6\",\r\n \"name\": \"appcontainer6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainereastus\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet1-aci-subnet1\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainereastus\",\r\n \"name\": \"appcontainereastus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"testcontainer\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/sbz-helloworld:1.0-alpine\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"mount\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/acivolumeinitcontainer:1.0\",\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2020-04-10T23:38:38Z\",\r\n \"exitCode\": 1,\r\n \"finishTime\": \"2020-04-10T23:38:38Z\",\r\n \"detailStatus\": \"Error\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-04-10T23:38:31Z\",\r\n \"lastTimestamp\": \"2020-04-10T23:38:31Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"sbzend2end.azurecr.io/acivolumeinitcontainer:1.0\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-04-10T23:38:37Z\",\r\n \"lastTimestamp\": \"2020-04-10T23:38:37Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"sbzend2end.azurecr.io/acivolumeinitcontainer:1.0\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-04-10T23:38:38Z\",\r\n \"lastTimestamp\": \"2020-04-10T23:38:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2020-04-10T23:38:38Z\",\r\n \"lastTimestamp\": \"2020-04-10T23:38:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/initvolumemounttest\",\r\n \"name\": \"initvolumemounttest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"testcontainer\",\r\n \"properties\": {\r\n \"image\": \"fluent/fluentd\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testexistingflow\",\r\n \"name\": \"testexistingflow\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"fluentd\",\r\n \"properties\": {\r\n \"image\": \"fluent/fluentd\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testexistingflow2\",\r\n \"name\": \"testexistingflow2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-32043b16-9933-4f97-80f9-1a41b6920b4e/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-dfacb43f-6fbc-4f23-9785-fcb32a18cb2b\",\r\n \"name\": \"zeiny-atlas-dfacb43f-6fbc-4f23-9785-fcb32a18cb2b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/servercore:10.0.14393.2791\",\r\n \"command\": [\r\n \"powershell.exe\",\r\n \"-Command\",\r\n \"while ($true) { Write - Host(Get - Date); Start - Sleep 1000000; }\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 8.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-420b54d8-c15e-46ba-97b7-7021c940b396/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-5692d14e-60ff-4850-8c35-2e098039a7cd\",\r\n \"name\": \"zeiny-k8s-5692d14e-60ff-4850-8c35-2e098039a7cd\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/servercore:10.0.14393.2791\",\r\n \"command\": [\r\n \"powershell.exe\",\r\n \"-Command\",\r\n \"while ($true) { Write - Host(Get - Date); Start - Sleep 1000000; }\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-7bce66db-f343-4218-8f58-84323dbe26a0/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-243a8f95-f62b-4e39-a8fe-d5e0794ac7eb\",\r\n \"name\": \"zeiny-k8s-243a8f95-f62b-4e39-a8fe-d5e0794ac7eb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/servercore:10.0.14393.2791\",\r\n \"command\": [\r\n \"pwsh\",\r\n \"-File\",\r\n \"/aci/userscript.ps1\",\r\n \"-First \\\"foo: String\\\"\",\r\n \"-Second \\\"bar: String\\\"\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-d9160793-acaf-401e-b00f-7105feb15155/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-ca8d6cfd-f222-456e-afe1-c8753dda9734\",\r\n \"name\": \"zeiny-k8s-ca8d6cfd-f222-456e-afe1-c8753dda9734\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 10;cat /etc/hosts\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/aci/infra:master_20190628.2\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"/mount_azure_file.sh\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"AZURE_FILE_ENDPOINT\",\r\n \"value\": \"//zeinysa.file.core.windows.net/fs1\"\r\n },\r\n {\r\n \"name\": \"AZURE_STORAGE_ACCOUNT_NAME\",\r\n \"value\": \"zeinysa\"\r\n },\r\n {\r\n \"name\": \"AZURE_STORAGE_ACCOUNT_KEY\",\r\n \"value\": \"wvBLfPAndC1jvEAD8IsCFp8vK5HixMsunHO1BsAr3kl/9lNQwWGz2PxxSsIZqipcH0h6WEY4QkGNUxhQ6riA+A==\"\r\n },\r\n {\r\n \"name\": \"MOUNT_POINT\",\r\n \"value\": \"/mount/azurefile/mnt\"\r\n },\r\n {\r\n \"name\": \"MOUNT_DIR_MODE\",\r\n \"value\": \"0777\"\r\n },\r\n {\r\n \"name\": \"MOUNT_FILE_MODE\",\r\n \"value\": \"0777\"\r\n },\r\n {\r\n \"name\": \"MOUNT_ACCESS_MODE\",\r\n \"value\": \"rw\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637280669887694272/providers/Microsoft.ContainerInstance/containerGroups/azf-eastus-637280669887694272\",\r\n \"name\": \"azf-eastus-637280669887694272\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.65.35.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnetpeeringeastus/providers/Microsoft.Network/networkProfiles/aci-network-profile-vnet1-default\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnetpeeringeastus/providers/Microsoft.ContainerInstance/containerGroups/test1\",\r\n \"name\": \"test1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.65.35.132\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnetpeeringeastus/providers/Microsoft.Network/networkProfiles/aci-network-profile-vnet2-default\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnetpeeringeastus/providers/Microsoft.ContainerInstance/containerGroups/test2\",\r\n \"name\": \"test2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny/providers/Microsoft.ContainerInstance/containerGroups/appcontainer\",\r\n \"name\": \"appcontainer\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeinyeastus/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeinyeastus/providers/Microsoft.ContainerInstance/containerGroups/appcontainer\",\r\n \"name\": \"appcontainer\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"bcdr-westeurope\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"51.138.102.233\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"bcdr-test\",\r\n \"fqdn\": \"bcdr-test.westeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/ACI-Compliance/providers/Microsoft.ContainerInstance/containerGroups/bcdr-westeurope\",\r\n \"name\": \"bcdr-westeurope\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"macolso/aci-python-app:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.44\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/garbage/providers/Microsoft.ContainerInstance/containerGroups/garbage\",\r\n \"name\": \"garbage\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainerwesteurope\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnetwesteurope-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainerwesteurope\",\r\n \"name\": \"appcontainerwesteurope\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.21\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnet1\",\r\n \"name\": \"vnet1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.22\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnet2\",\r\n \"name\": \"vnet2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.24\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnet3\",\r\n \"name\": \"vnet3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.26\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnet4\",\r\n \"name\": \"vnet4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.27\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnet5\",\r\n \"name\": \"vnet5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.28\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnet6\",\r\n \"name\": \"vnet6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.29\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnet7\",\r\n \"name\": \"vnet7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.30\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnet8\",\r\n \"name\": \"vnet8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.31\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnet9\",\r\n \"name\": \"vnet9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.10\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnetandvol1\",\r\n \"name\": \"vnetandvol1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.43\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnetandvol10\",\r\n \"name\": \"vnetandvol10\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.14\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnetandvol2\",\r\n \"name\": \"vnetandvol2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.36\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnetandvol3\",\r\n \"name\": \"vnetandvol3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.37\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnetandvol4\",\r\n \"name\": \"vnetandvol4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.38\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnetandvol5\",\r\n \"name\": \"vnetandvol5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.39\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnetandvol6\",\r\n \"name\": \"vnetandvol6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.40\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnetandvol7\",\r\n \"name\": \"vnetandvol7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.41\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnetandvol8\",\r\n \"name\": \"vnetandvol8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.42\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/vnetandvol9\",\r\n \"name\": \"vnetandvol9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/powershell\",\r\n \"command\": [\r\n \"pwsh\",\r\n \"-File\",\r\n \"/aci/script.ps1\",\r\n \"-DropPath \\\"kos: omak\\\"\",\r\n \"-TargetPath \\\"abo: omak\\\"\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"mountPath\": \"/aci\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-2a2f1fa1-118f-4074-8f59-71bb8b4467da/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-1148ed5e-61e8-4c71-ad56-e0a837a0ab80\",\r\n \"name\": \"zeiny-k8s-1148ed5e-61e8-4c71-ad56-e0a837a0ab80\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"ip\": \"10.0.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny-vnet-weu/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-a34e7047-b34c-4339-a37c-049e0558fb16/providers/Microsoft.ContainerInstance/containerGroups/zeiny-largecluster-09f3650d-a6ee-4525-955c-a685be04f6c8\",\r\n \"name\": \"zeiny-largecluster-09f3650d-a6ee-4525-955c-a685be04f6c8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c2b47c7e-41e9-448b-8dc9-09b2f5e6175a/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-20c71548-6b13-4d35-b134-270e53aa5f0d\",\r\n \"name\": \"zeiny-k8s-20c71548-6b13-4d35-b134-270e53aa5f0d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-cfbd5f03-ea4c-433b-9a9a-cff901a0b9e6/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-c972f330-09ef-4047-8c35-c718da15a301\",\r\n \"name\": \"zeiny-k8s-c972f330-09ef-4047-8c35-c718da15a301\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"ip\": \"10.0.0.7\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny-vnet-weu/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1bd56b8-f63f-4a9f-9749-857822f524a1/providers/Microsoft.ContainerInstance/containerGroups/zeiny-largecluster-3d852192-ebdf-4dc2-a1bb-086bc5575c1d\",\r\n \"name\": \"zeiny-largecluster-3d852192-ebdf-4dc2-a1bb-086bc5575c1d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/powershell\",\r\n \"command\": [\r\n \"pwsh\",\r\n \"-File\",\r\n \"/aci/userscript.ps1\",\r\n \"-First \\\"foo: String\\\"\",\r\n \"-Second \\\"bar: String\\\"\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-eff9e6bf-74a5-4838-ac0e-2c63ebac74ba/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-70b8470e-099b-4da9-851a-d92fbe010ec4\",\r\n \"name\": \"zeiny-k8s-70b8470e-099b-4da9-851a-d92fbe010ec4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/powershell\",\r\n \"command\": [\r\n \"pwsh\",\r\n \"-File\",\r\n \"/aci/script.ps1\",\r\n \"-DropPath\",\r\n \"kos: omak\",\r\n \"-TargetPath\",\r\n \"abo: omak\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"mountPath\": \"/aci\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol1\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-fc83a3e1-6458-453e-b51d-ffdfde78dc56/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-b6c50df7-0e1e-4f61-93f7-03f53d002a28\",\r\n \"name\": \"zeiny-k8s-b6c50df7-0e1e-4f61-93f7-03f53d002a28\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"myapp6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.32\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/myapp6\",\r\n \"name\": \"myapp6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"myapp7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 25\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 25\r\n }\r\n ],\r\n \"ip\": \"10.0.1.33\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/myapp7\",\r\n \"name\": \"myapp7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"myapp8\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/servercore:ltsc2019\",\r\n \"command\": [\r\n \"powershell\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/myapp8\",\r\n \"name\": \"myapp8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.241.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropetemp/providers/Microsoft.Network/networkProfiles/aci-network-profile-weu\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropetemp/providers/Microsoft.ContainerInstance/containerGroups/test2\",\r\n \"name\": \"test2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.241.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropetemp/providers/Microsoft.Network/networkProfiles/aci-network-profile-weu\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropetemp/providers/Microsoft.ContainerInstance/containerGroups/test3\",\r\n \"name\": \"test3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.241.0.7\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropetemp/providers/Microsoft.Network/networkProfiles/aci-network-profile-weu\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropetemp/providers/Microsoft.ContainerInstance/containerGroups/test4\",\r\n \"name\": \"test4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny-vnet-weu/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny-vnet-weu/providers/Microsoft.ContainerInstance/containerGroups/appcontainer\",\r\n \"name\": \"appcontainer\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/adobe/providers/Microsoft.Network/networkProfiles/aci-network-profile-adobevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/adobe/providers/Microsoft.ContainerInstance/containerGroups/testudr1\",\r\n \"name\": \"testudr1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/byovnet/providers/Microsoft.Network/networkProfiles/aci-network-profile-testvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/byovnet/providers/Microsoft.ContainerInstance/containerGroups/test1\",\r\n \"name\": \"test1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"evicttest\",\r\n \"properties\": {\r\n \"image\": \"progrium/stress\",\r\n \"command\": [\r\n \"--cpu\",\r\n \"1000\",\r\n \"--io\",\r\n \"1\",\r\n \"--vm\",\r\n \"2\",\r\n \"--vm-bytes\",\r\n \"128M\",\r\n \"--timeout\",\r\n \"2000s\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 8.0,\r\n \"cpu\": 4.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/evicttest/providers/Microsoft.ContainerInstance/containerGroups/evicttest\",\r\n \"name\": \"evicttest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"itsthenetwork/alpine-ncat\",\r\n \"command\": [\r\n \"nc\",\r\n \"-vz\",\r\n \"-w1\",\r\n \"google.com\",\r\n \"443\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/netcat/providers/Microsoft.Network/networkProfiles/aci-network-profile-netcatvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/netcat/providers/Microsoft.ContainerInstance/containerGroups/test1\",\r\n \"name\": \"test1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/perf-7d6b69c9-749f-457b-931d-3ac36f471fc5/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-2482bc8d-d04a-4581-b58c-eb2212f4f54b\": {\r\n \"principalId\": \"c0ce67b3-b0c7-41f2-9836-0d6b38b3b136\",\r\n \"clientId\": \"94197683-0afb-4fa3-a1f5-6ea5db730e1b\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-7d6b69c9-749f-457b-931d-3ac36f471fc5/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-2482bc8d-d04a-4581-b58c-eb2212f4f54b\",\r\n \"name\": \"zeiny-atlas-2482bc8d-d04a-4581-b58c-eb2212f4f54b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/perf-d60ef29d-e29c-4ba3-a1cb-59c7e2207a58/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-7a831b56-9adf-4b1b-bed7-bfc1ff922970\": {\r\n \"principalId\": \"30b4cf4b-b210-4582-8264-ca53aaacedc5\",\r\n \"clientId\": \"19691f60-6ef5-4d00-8ba2-2f01e6e9fa71\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-d60ef29d-e29c-4ba3-a1cb-59c7e2207a58/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-7a831b56-9adf-4b1b-bed7-bfc1ff922970\",\r\n \"name\": \"zeiny-k8s-7a831b56-9adf-4b1b-bed7-bfc1ff922970\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/testjobs:zeiny\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-f463b5e4-00bc-448f-b9c9-49760971663b/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-4a8a6ff3-ca24-4baf-a127-adcda68fbdbc\",\r\n \"name\": \"zeiny-k8s-4a8a6ff3-ca24-4baf-a127-adcda68fbdbc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny-vnet-westus2/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny-vnet-westus2/providers/Microsoft.ContainerInstance/containerGroups/appcontainer\",\r\n \"name\": \"appcontainer\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessinstant\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier5e86586b92c4445697ac981d9910053bACIRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-northeurope-5e86586b92c4445697acc6bf476ab4baf893\",\r\n \"name\": \"restartpolicy-northeurope-5e86586b92c4445697acc6bf476ab4baf893\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c60f0c9d-5a65-4088-9bb5-94c5d65df1ea\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.8\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-0c4e4b55-f527-4cf2-a08d-d22ea9b27283\",\r\n \"name\": \"validation-0c4e4b55-f527-4cf2-a08d-d22ea9b27283\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a6f04d4f-b47d-42cb-acae-f57dca71c49a\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.48\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-0e59bba5-4804-4b6d-8994-c1a4c79e380b\",\r\n \"name\": \"validation-0e59bba5-4804-4b6d-8994-c1a4c79e380b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-98e10cb1-33f8-4c44-b9cc-fd758b31974b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.32\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-0f9a519a-1d8d-4b9c-98a1-a6e0d2f72c8c\",\r\n \"name\": \"validation-0f9a519a-1d8d-4b9c-98a1-a6e0d2f72c8c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-186cff44-2eb8-4e4b-b35b-3c22010bf16d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.16\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-1d0a8a41-3595-4a79-adb4-0fb79a6a7b0f\",\r\n \"name\": \"validation-1d0a8a41-3595-4a79-adb4-0fb79a6a7b0f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0f3d0d6c-0ecd-44c5-96db-caf3f56ef5fd\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.50\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-202d307b-cfa2-443f-8e16-3d1bc5772d0e\",\r\n \"name\": \"validation-202d307b-cfa2-443f-8e16-3d1bc5772d0e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-13ec76a2-12b6-4238-a399-2b88ba0c988e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.52\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-3c9c7113-b5e1-4950-8118-ca4c8953a480\",\r\n \"name\": \"validation-3c9c7113-b5e1-4950-8118-ca4c8953a480\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9d7c28f6-19dd-4149-96a5-ba7b2569a0f7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.31\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-3ee4945c-f8c0-439d-a018-329716b9d134\",\r\n \"name\": \"validation-3ee4945c-f8c0-439d-a018-329716b9d134\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9d0219fb-6c23-498c-88e9-f77b44364e40\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.37\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-405c8b25-f7bd-4b28-8ce7-2c351e396b90\",\r\n \"name\": \"validation-405c8b25-f7bd-4b28-8ce7-2c351e396b90\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-b37f14c8-c56c-4005-b2ae-9c4f9b2e92d6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.38\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-49045b77-23e6-4ef7-bf49-07205975a26a\",\r\n \"name\": \"validation-49045b77-23e6-4ef7-bf49-07205975a26a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6329c31f-cd31-48c8-8c3c-970608c6bd8e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.42\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-4fd115c8-c055-455f-9805-3be7fd598d2b\",\r\n \"name\": \"validation-4fd115c8-c055-455f-9805-3be7fd598d2b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f0e07961-f61f-4aec-9a65-865fdd8f1969\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.17\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-60c84f47-188a-4160-886a-a14588175f08\",\r\n \"name\": \"validation-60c84f47-188a-4160-886a-a14588175f08\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0f775c5a-f42c-4cac-829b-55c5264d577f\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.20\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-66072238-6972-42f1-a64f-c02b91378ea7\",\r\n \"name\": \"validation-66072238-6972-42f1-a64f-c02b91378ea7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-4b2bcfd8-8801-4d62-bce2-f423b6cbcecc\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.6\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-6e437031-d39e-4ff7-a588-db73d15cc441\",\r\n \"name\": \"validation-6e437031-d39e-4ff7-a588-db73d15cc441\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0a8fd519-607e-45af-9e48-33be91cc6f77\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.35\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-70187ba1-ab78-4633-b369-4806f486aa8f\",\r\n \"name\": \"validation-70187ba1-ab78-4633-b369-4806f486aa8f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-66f9d785-fcb6-4b0f-a63b-d7a338ef2f82\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.15\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-80430de2-c840-429a-bb15-7b52312a74bf\",\r\n \"name\": \"validation-80430de2-c840-429a-bb15-7b52312a74bf\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-e4f31613-e132-4a2e-9842-abfa9c05e2e3\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.25\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-822fd1be-749a-4065-9066-0b93b86c3561\",\r\n \"name\": \"validation-822fd1be-749a-4065-9066-0b93b86c3561\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c741b2f2-8cc1-4ce5-9034-f5550a0b276d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.41\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-87d89ae5-6ec7-4b53-ae99-820e326ec56c\",\r\n \"name\": \"validation-87d89ae5-6ec7-4b53-ae99-820e326ec56c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9cb44209-ef83-4a44-a331-0afb39bc8e43\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.33\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-89b496ed-191e-4e62-8492-749545a792ba\",\r\n \"name\": \"validation-89b496ed-191e-4e62-8492-749545a792ba\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-5288405a-68f2-4005-b7f7-96c34401df52\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.40\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-8e018f47-9f69-4df4-9f7e-803d4cbb3e42\",\r\n \"name\": \"validation-8e018f47-9f69-4df4-9f7e-803d4cbb3e42\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-153b7a72-1c38-496c-a86a-de47d73feaf6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.51\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-91555b5f-1de1-4c47-bb06-4b3ca2b42c8f\",\r\n \"name\": \"validation-91555b5f-1de1-4c47-bb06-4b3ca2b42c8f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-e6ec281a-d883-4e0a-8d02-e8f7da65333d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.9\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-98747885-5571-4d6d-a655-d8302b4f46d8\",\r\n \"name\": \"validation-98747885-5571-4d6d-a655-d8302b4f46d8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-d76313c3-81a2-42d6-bd71-2cbecd3a77ea\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.28\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-a0affeb0-15f9-433d-9f11-ca21ff2a936f\",\r\n \"name\": \"validation-a0affeb0-15f9-433d-9f11-ca21ff2a936f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1536d65b-1692-419f-85eb-ccde3e5e29d9\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.39\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-a4c1013c-0263-4bde-8140-9d8c20280453\",\r\n \"name\": \"validation-a4c1013c-0263-4bde-8140-9d8c20280453\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-ee540bd4-b440-493d-bfe5-698fc0b6d777\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.7\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-aa73ac3a-30b5-4e45-a552-77379fe82144\",\r\n \"name\": \"validation-aa73ac3a-30b5-4e45-a552-77379fe82144\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1c83f330-753b-4c57-9502-0cfd5b69ed90\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-b9a9be6d-423b-4308-bf13-f18213ed3ecc\",\r\n \"name\": \"validation-b9a9be6d-423b-4308-bf13-f18213ed3ecc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f2dbfbb0-d390-4a49-b631-a7109f99eafb\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.22\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ba2322d0-cc22-4ab5-afdf-63051f319b7c\",\r\n \"name\": \"validation-ba2322d0-cc22-4ab5-afdf-63051f319b7c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c955c979-33c2-416b-ac8f-39ff259cce06\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.45\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-c14405b2-f970-4a20-bef0-17b4cfc9a2da\",\r\n \"name\": \"validation-c14405b2-f970-4a20-bef0-17b4cfc9a2da\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-e899c5ec-cd79-4b73-92f8-e1215bf05956\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.11\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ca3ec087-86e2-4e7e-a450-a36b860784e8\",\r\n \"name\": \"validation-ca3ec087-86e2-4e7e-a450-a36b860784e8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-bdbf71e2-2b29-4dfb-a654-76952f78c986\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.23\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-cf5bfff5-53f1-433a-97bd-a715290d96c7\",\r\n \"name\": \"validation-cf5bfff5-53f1-433a-97bd-a715290d96c7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9c92e963-5989-4a8b-9379-4ed4b65a5ca8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.29\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-d1bc7f1b-258d-4539-99c4-e7e88c0e716c\",\r\n \"name\": \"validation-d1bc7f1b-258d-4539-99c4-e7e88c0e716c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1f18fdc3-9f08-4946-b135-eeaf6643c27e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.34\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-d67ba42c-e204-4eb8-9a55-3a85d9ec5a3d\",\r\n \"name\": \"validation-d67ba42c-e204-4eb8-9a55-3a85d9ec5a3d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-4642633b-6365-4859-9537-52a8689131cc\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.19\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-e355ea61-5f44-4026-8c8a-694b66f9686d\",\r\n \"name\": \"validation-e355ea61-5f44-4026-8c8a-694b66f9686d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-35026f92-7068-4458-af1d-ce316dc6f01e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.27\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-eaab0427-9c85-47be-be9f-b3b30ac63467\",\r\n \"name\": \"validation-eaab0427-9c85-47be-be9f-b3b30ac63467\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-376e6cbf-868c-4cda-9e38-79eb47cde0ae\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.36\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ed8f31e1-9573-4071-8dab-df51e01bec6b\",\r\n \"name\": \"validation-ed8f31e1-9573-4071-8dab-df51e01bec6b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1914006a-a3bc-42c1-8f06-82a9187db60d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.21\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ef81bdc8-d0b5-43b4-8c1d-59d0dc3a3fb0\",\r\n \"name\": \"validation-ef81bdc8-d0b5-43b4-8c1d-59d0dc3a3fb0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9d6e3a8e-7f75-4c6c-b067-496e928e3b6d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.47\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-f47359a3-e15d-409e-9019-124ac10525ce\",\r\n \"name\": \"validation-f47359a3-e15d-409e-9019-124ac10525ce\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-33e85a9d-04d2-4978-8953-f8d7e2a9b4a2\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.44\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-f56320b8-faa2-480f-8014-ce9323ab7449\",\r\n \"name\": \"validation-f56320b8-faa2-480f-8014-ce9323ab7449\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f5d6fad0-b079-4443-af61-0b429096c0c8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.18\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-f5be515e-81f6-45df-ae2e-f53a000b5dea\",\r\n \"name\": \"validation-f5be515e-81f6-45df-ae2e-f53a000b5dea\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2de0311e-9f6f-4606-935d-418b4362f9df\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.24\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-f6d75671-c012-478f-aafa-52dd8474ef5e\",\r\n \"name\": \"validation-f6d75671-c012-478f-aafa-52dd8474ef5e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"91cc4694-f4ca-498a-9395-472bd5d270b2\",\r\n \"fqdn\": \"91cc4694-f4ca-498a-9395-472bd5d270b2.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-544d8ff8-0238-425f-a7bd-67f8b251f808/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-91cc4694-f4ca-498a-9395-472bd5d270b2\",\r\n \"name\": \"zeiny-atlas-91cc4694-f4ca-498a-9395-472bd5d270b2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeinynortheu/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeinynortheu/providers/Microsoft.ContainerInstance/containerGroups/appcontainer\",\r\n \"name\": \"appcontainer\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f4fdb8e2-c72a-4e6c-9d29-747cae57063b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.129\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-0c8f69b9-8fe2-4c81-bc70-9f4dc2dbfa8e\",\r\n \"name\": \"validation-0c8f69b9-8fe2-4c81-bc70-9f4dc2dbfa8e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c2c0632d-9cff-46ce-8269-b9bc994685a5\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.149\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-17fc2ce9-ce81-483d-b016-e3d2926cdc39\",\r\n \"name\": \"validation-17fc2ce9-ce81-483d-b016-e3d2926cdc39\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-5c60d550-f9aa-45a7-8006-0900a419a646\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.112\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-1f7d3d4d-ccdd-413e-9537-1ddcd8d80f19\",\r\n \"name\": \"validation-1f7d3d4d-ccdd-413e-9537-1ddcd8d80f19\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0bfa66ac-cd60-489b-9e62-b5b8eb517695\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.108\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-251e283c-6763-4fa6-8c59-5dbf2a1576d1\",\r\n \"name\": \"validation-251e283c-6763-4fa6-8c59-5dbf2a1576d1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-192115fc-e43a-44a6-bef4-f0d70f7b9b58\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.138\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-27522cab-cd83-4ae3-abd0-7a4b9b8a9e58\",\r\n \"name\": \"validation-27522cab-cd83-4ae3-abd0-7a4b9b8a9e58\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-626fa557-01b5-47ef-855a-c146a04d3216\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.114\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-27d48c5a-befd-419b-abf3-182b1972c259\",\r\n \"name\": \"validation-27d48c5a-befd-419b-abf3-182b1972c259\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3d0a32d3-3538-43bc-8ed3-ba42c59a40bf\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.140\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-27f73af9-eba2-4cc2-9edd-08db551101e2\",\r\n \"name\": \"validation-27f73af9-eba2-4cc2-9edd-08db551101e2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-59a49c59-46a3-4024-9fbb-649aac9907f0\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.143\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-28a82830-a763-4fd9-b30d-3179e20e1646\",\r\n \"name\": \"validation-28a82830-a763-4fd9-b30d-3179e20e1646\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-e2274bdd-f7fc-4cc0-bf75-cd3aad8c816c\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.141\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-30eff563-7697-4627-934b-cdb1da976104\",\r\n \"name\": \"validation-30eff563-7697-4627-934b-cdb1da976104\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f2fa1572-0f44-4260-810c-df7a75323792\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.139\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-3485c516-8460-4542-a14b-615297bc4fe5\",\r\n \"name\": \"validation-3485c516-8460-4542-a14b-615297bc4fe5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c8ddee87-bb42-47c4-b9ed-a01e0703fe4c\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.66\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-36d46423-9900-4e52-af02-0da6f5cdd5d0\",\r\n \"name\": \"validation-36d46423-9900-4e52-af02-0da6f5cdd5d0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-d9f31ded-73c3-42c0-8733-7e534f97ecc9\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.144\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-3e766320-fa2d-421f-b9f4-3ff8cbfe6c42\",\r\n \"name\": \"validation-3e766320-fa2d-421f-b9f4-3ff8cbfe6c42\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-34152b34-d773-4f00-b36f-948b16a0a583\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.99\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-46cfd951-b73a-4612-91cc-c380e6a14b01\",\r\n \"name\": \"validation-46cfd951-b73a-4612-91cc-c380e6a14b01\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-fe3460f6-9b42-4311-bfff-c799132b812b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.142\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-4bc36bfe-03ad-4f83-a41a-d99572008915\",\r\n \"name\": \"validation-4bc36bfe-03ad-4f83-a41a-d99572008915\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-12b004df-45e1-48dd-9adf-6d2dd021d5fe\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.131\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-4e777df2-638e-4e2a-9d25-388fc8c2743f\",\r\n \"name\": \"validation-4e777df2-638e-4e2a-9d25-388fc8c2743f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-b36f8de5-8b94-4a17-97f9-468609a840e2\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.136\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-58ca1232-7f21-4175-9320-98dac73ae66f\",\r\n \"name\": \"validation-58ca1232-7f21-4175-9320-98dac73ae66f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3e8600c9-5583-4c36-bbaf-1594dd5ef3f8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.93\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-5eb9bba3-0271-4b95-882a-214606c64c86\",\r\n \"name\": \"validation-5eb9bba3-0271-4b95-882a-214606c64c86\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-bcf7da68-c7e7-4dde-9e9d-79c00e014d56\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.122\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-65ad152b-3eff-44c3-9075-e22c31c8a2b2\",\r\n \"name\": \"validation-65ad152b-3eff-44c3-9075-e22c31c8a2b2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-aa91d3d3-bce0-4a8f-abb1-e9af88926146\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.69\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-67662477-2326-461e-9df4-f50b33f20204\",\r\n \"name\": \"validation-67662477-2326-461e-9df4-f50b33f20204\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-67190b89-d810-43d6-9ef3-39d3efa7c172\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.70\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-69305e49-4693-4553-a05b-8a52668cc5aa\",\r\n \"name\": \"validation-69305e49-4693-4553-a05b-8a52668cc5aa\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3cfffc6d-0823-4dc5-967c-0a5c05f081ef\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.126\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-7144e931-3459-4fdf-b40e-45b0e0e5351c\",\r\n \"name\": \"validation-7144e931-3459-4fdf-b40e-45b0e0e5351c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a2a000a2-c5c6-442a-9823-72f9e86116c1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.88\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-71ab65f7-b963-49f7-957f-53a4cd74cdb9\",\r\n \"name\": \"validation-71ab65f7-b963-49f7-957f-53a4cd74cdb9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7bd97a76-b860-440a-b973-9d98a9e8cbca\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.124\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-72858e84-67c9-4930-a020-10b86f16d232\",\r\n \"name\": \"validation-72858e84-67c9-4930-a020-10b86f16d232\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-eb7e3b1e-ae5b-45a2-ac41-91ade22cb519\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.135\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-74a886cb-9995-4c27-adc6-91cb1d602961\",\r\n \"name\": \"validation-74a886cb-9995-4c27-adc6-91cb1d602961\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-20ddda1e-f42b-43a8-9703-c207cdff6bcf\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.89\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-75a1afc9-edbf-4442-8038-a54f85fd72c1\",\r\n \"name\": \"validation-75a1afc9-edbf-4442-8038-a54f85fd72c1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3324b771-e50a-458a-bf3f-3e0b9ee8eabc\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.120\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-760af0ae-df10-4b5a-b5bc-594a73eeb7c6\",\r\n \"name\": \"validation-760af0ae-df10-4b5a-b5bc-594a73eeb7c6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-84720446-a23b-4ccd-b1ed-85b83f0f1d5d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.84\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-7b25d6b6-2529-4369-a33e-9d9f0d2d25ac\",\r\n \"name\": \"validation-7b25d6b6-2529-4369-a33e-9d9f0d2d25ac\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7bd6b3a5-e944-4dd5-b08d-3c6418a7f7f4\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.127\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-816dab00-ef83-4184-a1e9-b1953910f205\",\r\n \"name\": \"validation-816dab00-ef83-4184-a1e9-b1953910f205\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-69586239-5bbb-4d54-b9e0-2d6fbd6997b1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.148\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-8e8647bd-5a08-4d71-8118-352ee2c20a51\",\r\n \"name\": \"validation-8e8647bd-5a08-4d71-8118-352ee2c20a51\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-689fe834-ea66-447b-9090-67ef08123656\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.43\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-9142bc94-566c-4004-a6eb-d8eb885c56be\",\r\n \"name\": \"validation-9142bc94-566c-4004-a6eb-d8eb885c56be\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-cb41a70d-10ad-4810-b724-b154e79e1b1b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.67\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-945da32e-e898-4fcc-85a5-ed580012d553\",\r\n \"name\": \"validation-945da32e-e898-4fcc-85a5-ed580012d553\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0f11d4ae-2212-4962-b8c5-9f194f879b49\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.110\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-947f639b-8b81-4a13-a6e0-9c3dd7475bf1\",\r\n \"name\": \"validation-947f639b-8b81-4a13-a6e0-9c3dd7475bf1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-567e4739-3630-4e16-9da8-cc045ac126d8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.132\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-a391d286-e2a5-4aff-bc80-c21510990eb2\",\r\n \"name\": \"validation-a391d286-e2a5-4aff-bc80-c21510990eb2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-e2da8f1c-5d70-4569-a5c5-06b60db92838\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.96\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-a4001417-d2a9-493f-9e22-3438a78f2408\",\r\n \"name\": \"validation-a4001417-d2a9-493f-9e22-3438a78f2408\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7929ddb5-65fb-4ba4-97fb-9b9323189be7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.130\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-a688caa9-a40c-4024-920d-60769c45c2d5\",\r\n \"name\": \"validation-a688caa9-a40c-4024-920d-60769c45c2d5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a5d013a4-3ed7-46bc-9d52-d758b18c5066\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.119\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-a93374f3-7d2e-4274-9dd3-54bbffbca3f7\",\r\n \"name\": \"validation-a93374f3-7d2e-4274-9dd3-54bbffbca3f7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f9319486-5c8d-403d-992a-507bda81fa22\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.78\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-aab9ee5c-9cdd-47c0-8029-1c91f40da130\",\r\n \"name\": \"validation-aab9ee5c-9cdd-47c0-8029-1c91f40da130\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-ce5dc47d-f2e6-452e-9813-c9f1f0feb3fc\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.125\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-afcb76bf-f485-4cc7-aa00-934b1f07d030\",\r\n \"name\": \"validation-afcb76bf-f485-4cc7-aa00-934b1f07d030\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-d337ac15-bc9a-46a0-9f82-6ccea8a4b386\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.151\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-b714fbf4-0120-4bcd-aa69-fa0c3c8d3a7a\",\r\n \"name\": \"validation-b714fbf4-0120-4bcd-aa69-fa0c3c8d3a7a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-81627f38-2165-479c-bbad-0fae02c2044d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.118\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-be1120b9-e392-403b-ab2c-8d4c2e70e9e2\",\r\n \"name\": \"validation-be1120b9-e392-403b-ab2c-8d4c2e70e9e2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-705c6e8e-919e-4e4d-8028-47fb857f9d98\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.137\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-bfa54cb1-0877-416f-8ee9-c99941fca446\",\r\n \"name\": \"validation-bfa54cb1-0877-416f-8ee9-c99941fca446\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2037f6a4-d5e7-4732-8e43-210b6ffa5fc5\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.97\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-c2cfcfa9-aa00-43a4-a89a-946cf2c3a692\",\r\n \"name\": \"validation-c2cfcfa9-aa00-43a4-a89a-946cf2c3a692\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-8d6eaee2-6ba4-4a25-90e9-1889d714e03c\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.75\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-c53adec9-5da8-4e7e-9a93-64943d5a4232\",\r\n \"name\": \"validation-c53adec9-5da8-4e7e-9a93-64943d5a4232\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0b010768-2356-45eb-a256-f4d8179c97c7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.133\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-c5a59c76-3618-4f77-a5bd-576414d6e865\",\r\n \"name\": \"validation-c5a59c76-3618-4f77-a5bd-576414d6e865\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a34c207f-7a1a-4745-8949-bcde0fb22f2a\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.65\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-c6770e4a-a162-4df4-82a9-d5206120bde9\",\r\n \"name\": \"validation-c6770e4a-a162-4df4-82a9-d5206120bde9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2db57f26-ea63-4063-b039-d816ce8b626e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.102\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-c94570bd-8f6f-4de5-92e7-011b13d8f5dc\",\r\n \"name\": \"validation-c94570bd-8f6f-4de5-92e7-011b13d8f5dc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-75e0f215-d387-471e-a12e-b91c70e79c6c\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.104\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-c9b7fb67-5e53-41a1-b5c6-997a5781d9d1\",\r\n \"name\": \"validation-c9b7fb67-5e53-41a1-b5c6-997a5781d9d1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-83dc4a81-a04f-4bd7-8ba6-a1f6196d776a\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.85\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-cb8b9482-f00f-46c7-9500-2864618e0e11\",\r\n \"name\": \"validation-cb8b9482-f00f-46c7-9500-2864618e0e11\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6ae33cbc-bf64-4edd-bdf9-8d3c3ced217e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.145\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-d3578ae9-a3e5-42fa-9492-d451e93d9921\",\r\n \"name\": \"validation-d3578ae9-a3e5-42fa-9492-d451e93d9921\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-51dfc2ca-3440-4629-b018-70d54ccb46c0\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.146\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-d59d1628-36d4-4d38-b9d9-da885c6b088b\",\r\n \"name\": \"validation-d59d1628-36d4-4d38-b9d9-da885c6b088b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-da3c9e71-0e3f-4222-a4d9-ba732b950a95\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.134\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-d923255c-70ab-4f55-8f49-4826ec1a5b83\",\r\n \"name\": \"validation-d923255c-70ab-4f55-8f49-4826ec1a5b83\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-b85a49ae-20d3-44e9-8f28-ff9648576cd6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.87\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-da3810fe-8167-4eb5-a100-c3853c5be7a4\",\r\n \"name\": \"validation-da3810fe-8167-4eb5-a100-c3853c5be7a4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-659229fc-6064-4892-95d7-188f798f04d0\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.128\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-e31a04b7-bd93-4dcb-9711-ceabf3b935f9\",\r\n \"name\": \"validation-e31a04b7-bd93-4dcb-9711-ceabf3b935f9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2d7bc1ef-e369-43cd-bb64-ea90cf898ca7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.109\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-e5a3143a-b3db-4bba-8027-8d0a2f5a8986\",\r\n \"name\": \"validation-e5a3143a-b3db-4bba-8027-8d0a2f5a8986\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-5af2aa1a-5be8-4e31-a7c1-d23e3ac080d4\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.98\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-ea9ee331-2880-439e-9ebb-e9739dccbd61\",\r\n \"name\": \"validation-ea9ee331-2880-439e-9ebb-e9739dccbd61\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-446873bd-e5c9-4e57-8e33-6e2ef079f140\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.150\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-ecacc6eb-cb8c-485d-9c7f-f7c6e362f5a2\",\r\n \"name\": \"validation-ecacc6eb-cb8c-485d-9c7f-f7c6e362f5a2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-023bc6bd-ccb8-4ced-8bc0-d234b2f679c4\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.101\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-edea970e-d993-4761-83f7-c0fbd31c05eb\",\r\n \"name\": \"validation-edea970e-d993-4761-83f7-c0fbd31c05eb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1b0fdbd0-d2fe-4a70-86c0-277ca7f30cd2\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.147\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-f1ecbbe3-cabb-4d92-ba7f-fe4f5fadbe40\",\r\n \"name\": \"validation-f1ecbbe3-cabb-4d92-ba7f-fe4f5fadbe40\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-19d2425c-2831-4049-9e8f-582c25bd653b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.68\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-fd1764f7-3b25-4e71-9bd3-b04ddc1fee20\",\r\n \"name\": \"validation-fd1764f7-3b25-4e71-9bd3-b04ddc1fee20\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0d81f64a-f6bc-4ebf-947d-0455791c0609\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.113\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-ff7df678-bb9b-42e6-b168-9c0ba4144bda\",\r\n \"name\": \"validation-ff7df678-bb9b-42e6-b168-9c0ba4144bda\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.18\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny-vnet-sea/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny-vnet-sea/providers/Microsoft.ContainerInstance/containerGroups/appcontainer\",\r\n \"name\": \"appcontainer\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"juhacket-adobe\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/juhacket-adobe\",\r\n \"name\": \"juhacket-adobe\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainereastus2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vneteastus2-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainereastus2\",\r\n \"name\": \"appcontainereastus2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainercentralus\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnetcentralus-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainercentralus\",\r\n \"name\": \"appcontainercentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aestoragetest/providers/Microsoft.Network/networkProfiles/aci-network-profile-aestoragetest-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aestoragetest/providers/Microsoft.ContainerInstance/containerGroups/aestoragetest1\",\r\n \"name\": \"aestoragetest1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Updating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/sbz-helloworld:1.0-alpine\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier9ded57215c354310831e2eb3f444a826ACIContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-australiaeast-9ded57215c354310831e2eb3918940c0e66611d4\",\r\n \"name\": \"cgposts-australiaeast-9ded57215c354310831e2eb3918940c0e66611d4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontaineraustraliaeast\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet2-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontaineraustraliaeast\",\r\n \"name\": \"appcontaineraustraliaeast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"8c3fad37-dbc0-4403-b99f-bff43e547992\",\r\n \"fqdn\": \"8c3fad37-dbc0-4403-b99f-bff43e547992.australiaeast.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-544d8ff8-0238-425f-a7bd-67f8b251f808/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-8c3fad37-dbc0-4403-b99f-bff43e547992\",\r\n \"name\": \"zeiny-atlas-8c3fad37-dbc0-4403-b99f-bff43e547992\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainersouthcentralus\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnetsouthcentralus-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainersouthcentralus\",\r\n \"name\": \"appcontainersouthcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"be995a97-489b-4f3e-a638-bfe8a1b543cb\",\r\n \"fqdn\": \"be995a97-489b-4f3e-a638-bfe8a1b543cb.eastasia.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-544d8ff8-0238-425f-a7bd-67f8b251f808/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-be995a97-489b-4f3e-a638-bfe8a1b543cb\",\r\n \"name\": \"zeiny-atlas-be995a97-489b-4f3e-a638-bfe8a1b543cb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainercanadacentral\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.6\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnetcanadacentral-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainercanadacentral\",\r\n \"name\": \"appcontainercanadacentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/mi1\",\r\n \"name\": \"mi1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/mi2\",\r\n \"name\": \"mi2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/mi3\",\r\n \"name\": \"mi3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/mi4\",\r\n \"name\": \"mi4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/mi5\",\r\n \"name\": \"mi5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/mi6\",\r\n \"name\": \"mi6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/mi7\",\r\n \"name\": \"mi7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/mi8\",\r\n \"name\": \"mi8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/mi9\",\r\n \"name\": \"mi9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/msi1\",\r\n \"name\": \"msi1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/msi2\",\r\n \"name\": \"msi2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/msi3\",\r\n \"name\": \"msi3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/msi4\",\r\n \"name\": \"msi4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/msi5\",\r\n \"name\": \"msi5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/msi6\",\r\n \"name\": \"msi6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/msiagain1\",\r\n \"name\": \"msiagain1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-30c357d9-5c0d-40aa-a8bf-87ff225a456a\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.64\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-011815f7-2ca6-422f-a32a-cb33125fb4ef\",\r\n \"name\": \"validation-011815f7-2ca6-422f-a32a-cb33125fb4ef\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-b59506b3-619c-42e0-a632-64fd2b0a49c1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.58\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-02876309-342e-40b5-9767-df6b1acc65af\",\r\n \"name\": \"validation-02876309-342e-40b5-9767-df6b1acc65af\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-ed81925b-71b4-40b9-a77b-26dabe292e32\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.77\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-05b0a12c-3fad-4200-a857-f82b818f39c3\",\r\n \"name\": \"validation-05b0a12c-3fad-4200-a857-f82b818f39c3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-b2b59cdf-0914-4306-b676-9eb991e13a16\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.71\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-078b3b10-7536-4af3-b4b8-b91811d51044\",\r\n \"name\": \"validation-078b3b10-7536-4af3-b4b8-b91811d51044\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-cd4757d2-63fb-4dbe-aa55-9e2c96722f70\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.85\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-095aa15b-e5cf-4f1c-b94b-e329dbf06510\",\r\n \"name\": \"validation-095aa15b-e5cf-4f1c-b94b-e329dbf06510\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-4c9cb52b-8292-4623-b148-59521cd158b5\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.99\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-0d0471e9-a614-4506-9a62-335ee8d34d8f\",\r\n \"name\": \"validation-0d0471e9-a614-4506-9a62-335ee8d34d8f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f61d230e-07c6-460d-807c-275383db3ac9\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.89\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-1195810d-b8ac-42ee-a541-0b936645d07e\",\r\n \"name\": \"validation-1195810d-b8ac-42ee-a541-0b936645d07e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-8fef2167-b98d-4a97-85cd-37f32ff4d619\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.91\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-122fdd7b-bc86-4b0c-8875-0e169fa2d275\",\r\n \"name\": \"validation-122fdd7b-bc86-4b0c-8875-0e169fa2d275\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-11b677b3-b2c4-4d60-9acd-183089048cec\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.93\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-1428eb22-9a9b-4189-8549-9a6cd0fb855c\",\r\n \"name\": \"validation-1428eb22-9a9b-4189-8549-9a6cd0fb855c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-48d679b8-9890-4918-a27a-a6a6b82e9ca7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.81\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-246c207d-ee54-4cb8-ade8-70d00c588883\",\r\n \"name\": \"validation-246c207d-ee54-4cb8-ade8-70d00c588883\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7fdffcdc-fc39-4bfb-99f1-442151a440cd\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.87\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-27ef19fb-8359-43cb-a666-fabd0f7a3b90\",\r\n \"name\": \"validation-27ef19fb-8359-43cb-a666-fabd0f7a3b90\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-45d98ec0-cf01-46ad-ae60-6d974f702312\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.57\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-3987d643-9209-47a7-ad61-88065efc5635\",\r\n \"name\": \"validation-3987d643-9209-47a7-ad61-88065efc5635\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6885b362-f15f-4f91-9738-2bcdabc99cbb\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.56\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-4cf19902-0df1-4e18-9df0-8c1278886ef1\",\r\n \"name\": \"validation-4cf19902-0df1-4e18-9df0-8c1278886ef1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-e8441e8e-8dd5-446c-919e-3c11c128ec62\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.65\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-4eae2453-ca5f-495e-b275-d4992075879d\",\r\n \"name\": \"validation-4eae2453-ca5f-495e-b275-d4992075879d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0cb61323-291c-4c30-a7c9-90a9e2930f1e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.63\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-56b771ac-d97b-443e-8e84-8ca6ce891f30\",\r\n \"name\": \"validation-56b771ac-d97b-443e-8e84-8ca6ce891f30\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6eef36d6-d78b-466d-b6d1-603e1b28d13d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.55\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-591c0062-cabc-46d3-8e27-17de8e08597f\",\r\n \"name\": \"validation-591c0062-cabc-46d3-8e27-17de8e08597f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-08569f1b-3277-4e47-ab4c-358d4c951ca4\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.61\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-5db2cfc5-495a-4798-830e-63caca3b9609\",\r\n \"name\": \"validation-5db2cfc5-495a-4798-830e-63caca3b9609\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-157830aa-b324-4c03-9df4-f5831659b37b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.62\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-5dfcf406-d816-433b-9f49-60b95c17d971\",\r\n \"name\": \"validation-5dfcf406-d816-433b-9f49-60b95c17d971\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2e7aace5-a69f-4a2a-b895-8d5ea3dc6089\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.67\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-5ea544c9-7061-4911-9ca5-4eca534e1c44\",\r\n \"name\": \"validation-5ea544c9-7061-4911-9ca5-4eca534e1c44\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6b7dea3f-bed7-41ca-a50e-938b9d00486e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.83\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-6332bc9f-18fa-4a7c-b3d5-3c9b976a2aba\",\r\n \"name\": \"validation-6332bc9f-18fa-4a7c-b3d5-3c9b976a2aba\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-de729e7f-db68-4ba2-999b-2d1a2f0c9b76\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.94\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-75d9a853-e461-43d7-bdae-c1106d3ce839\",\r\n \"name\": \"validation-75d9a853-e461-43d7-bdae-c1106d3ce839\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-cfd58097-f297-4f37-bc5e-a01773becbca\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.53\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-7769e3eb-69ac-4f26-8c40-38d877d93e29\",\r\n \"name\": \"validation-7769e3eb-69ac-4f26-8c40-38d877d93e29\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7f426788-3a42-4be3-a228-9f620b7c9f0f\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.51\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-7813e704-e293-49b8-860e-503318b8c146\",\r\n \"name\": \"validation-7813e704-e293-49b8-860e-503318b8c146\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6e7d413f-88fe-4357-beef-1acaeb676d73\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.60\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-82f55599-fe4e-4003-bb8a-25faa597cdf7\",\r\n \"name\": \"validation-82f55599-fe4e-4003-bb8a-25faa597cdf7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9de79955-f969-4fdd-b7ad-b5d1e69c78ff\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.97\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-8b4c2315-5808-4db2-b71a-23318db48ffc\",\r\n \"name\": \"validation-8b4c2315-5808-4db2-b71a-23318db48ffc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-581000c9-c77d-4e06-8704-b04bd4f79e0f\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.90\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-8e5253f3-f298-4aeb-a02e-7e0141b8e84a\",\r\n \"name\": \"validation-8e5253f3-f298-4aeb-a02e-7e0141b8e84a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-415a1944-de35-4a95-8f75-7a0fbda03944\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.72\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-8ff24bec-f68e-480e-855f-dd86c6edf0e3\",\r\n \"name\": \"validation-8ff24bec-f68e-480e-855f-dd86c6edf0e3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-dbe7571e-8487-491e-bec3-cae723e280fb\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.59\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-92cf452e-d759-4835-ab76-3eb9b42a5dc3\",\r\n \"name\": \"validation-92cf452e-d759-4835-ab76-3eb9b42a5dc3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-e15ef851-3985-479f-bd2d-af4402918ed3\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.98\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-997b1e8e-48a2-4ae3-a48f-c54d05abd7dc\",\r\n \"name\": \"validation-997b1e8e-48a2-4ae3-a48f-c54d05abd7dc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-b18c1c13-b170-4bcf-a2f3-17565e9e001b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.84\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-9ef0925a-5649-4c7c-ba19-85b098c7cd82\",\r\n \"name\": \"validation-9ef0925a-5649-4c7c-ba19-85b098c7cd82\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f8930829-c55a-4bee-a90d-02b128b3aa23\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.88\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-a5097b8d-8d6e-45cc-b1c2-3241f946aa3f\",\r\n \"name\": \"validation-a5097b8d-8d6e-45cc-b1c2-3241f946aa3f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6b6da9e9-f9c6-4662-8fb6-9cbebc501ccb\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.66\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-b58dbdb6-ae09-4a77-9011-34dd792e893a\",\r\n \"name\": \"validation-b58dbdb6-ae09-4a77-9011-34dd792e893a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-07b11f1a-d3c2-4206-8bf4-79764bc0c9df\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.92\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-b7df2c03-749b-4643-b261-8cfcb0c68008\",\r\n \"name\": \"validation-b7df2c03-749b-4643-b261-8cfcb0c68008\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-dd087822-ba7e-4940-a8d6-bb1ce2a18b16\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.95\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-c1cb3000-f78d-4862-adff-e60a391b853c\",\r\n \"name\": \"validation-c1cb3000-f78d-4862-adff-e60a391b853c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-5ea871b7-6693-4061-8813-6df861403842\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.76\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-c1e4c4ca-43c6-4b66-ba16-c004268ff1fa\",\r\n \"name\": \"validation-c1e4c4ca-43c6-4b66-ba16-c004268ff1fa\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3a4cb069-1113-47b3-9925-0d103c79ff54\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.80\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-c7210f65-edc5-4645-9567-d74d8180fe15\",\r\n \"name\": \"validation-c7210f65-edc5-4645-9567-d74d8180fe15\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1d2b6e4b-06f7-46df-b854-cc0c7cc777f7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.78\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-cc20b100-f4c8-418e-9cef-dcce5bc23ad3\",\r\n \"name\": \"validation-cc20b100-f4c8-418e-9cef-dcce5bc23ad3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-bb73f1fe-faff-464f-a5a9-cf23a3e88599\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.70\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ccc0e2cf-f749-4eeb-8f52-0c92c7ad9a86\",\r\n \"name\": \"validation-ccc0e2cf-f749-4eeb-8f52-0c92c7ad9a86\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-cd9f18da-b197-4736-804a-ae60a5e81829\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.82\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ce342729-9216-410a-b21b-31bd82b1c585\",\r\n \"name\": \"validation-ce342729-9216-410a-b21b-31bd82b1c585\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2f12e07a-169d-4e0c-aa41-b1cee81c627a\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.68\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-db96de43-7875-46eb-bcb2-ab39efd40e6b\",\r\n \"name\": \"validation-db96de43-7875-46eb-bcb2-ab39efd40e6b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c3fdce81-be67-4eda-82f2-dfdde518b5c6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.73\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-deebddde-465a-4886-98ca-aac1de557015\",\r\n \"name\": \"validation-deebddde-465a-4886-98ca-aac1de557015\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2d2e7ddd-0674-4bf2-85bb-11a8f49726bc\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.86\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-e4f229cc-bab4-4c06-9cb7-9f731c7f1700\",\r\n \"name\": \"validation-e4f229cc-bab4-4c06-9cb7-9f731c7f1700\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-d1f7f235-5cd4-4419-9870-caca31e2c329\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.69\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ee2186c0-5e53-453f-81b0-59687fe4f387\",\r\n \"name\": \"validation-ee2186c0-5e53-453f-81b0-59687fe4f387\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-5d7d0996-0044-4045-be98-39f1db6c48aa\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.96\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-fa4ad6e3-b2ac-4e39-a8cb-9649f028fee8\",\r\n \"name\": \"validation-fa4ad6e3-b2ac-4e39-a8cb-9649f028fee8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6196d55a-7a28-4a83-9f5f-ddbf2f6433b8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.79\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-fe92d488-9495-47a6-8bf3-124c1eeda265\",\r\n \"name\": \"validation-fe92d488-9495-47a6-8bf3-124c1eeda265\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Repairing\",\r\n \"containers\": [\r\n {\r\n \"name\": \"aci-cluster-pwn\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"git\",\r\n \"mountPath\": \"/mountpath\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.253.157.16\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"git\",\r\n \"gitRepo\": {\r\n \"repository\": \"https://recon.offensi.com/repos/git/repo/CVE-2018-11235/repo\",\r\n \"directory\": \"--recurse-submodules\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aciGroup/providers/Microsoft.ContainerInstance/containerGroups/aci-cluster-pwn\",\r\n \"name\": \"aci-cluster-pwn\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0fbca967-8847-42d2-9c2d-270bbc593ff5\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.22.1.36\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-1262276c-c3e6-41c8-8a04-32dc51ffa64a\",\r\n \"name\": \"validation-1262276c-c3e6-41c8-8a04-32dc51ffa64a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-5c149d5c-612d-4562-8677-9d839b153710\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.22.1.41\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-68a89454-b865-4882-9c53-017eb3848cd6\",\r\n \"name\": \"validation-68a89454-b865-4882-9c53-017eb3848cd6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6d44dac1-8ce0-4d31-aa4b-2e5a5cdd2bdc\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.22.1.31\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-74602e15-4846-4113-a86a-a4fd8780f5eb\",\r\n \"name\": \"validation-74602e15-4846-4113-a86a-a4fd8780f5eb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-8229877e-fa0b-4e3a-8788-c252afc824e3\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.22.1.34\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-74e0edfb-5b8f-4fe2-9313-bf8826b1628a\",\r\n \"name\": \"validation-74e0edfb-5b8f-4fe2-9313-bf8826b1628a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-046842fe-55bc-44a3-b94a-65f8d19d7da3\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.22.1.39\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-a08480df-cfce-41c6-938f-9e153e0a1879\",\r\n \"name\": \"validation-a08480df-cfce-41c6-938f-9e153e0a1879\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-8addffec-105b-4453-85ae-cce6a6e9a88b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.22.1.40\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-be044faf-2610-4351-8fea-6f90752a8299\",\r\n \"name\": \"validation-be044faf-2610-4351-8fea-6f90752a8299\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a0b2285a-0cfc-44c4-8688-a629956f310a\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.22.1.37\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-c269f12d-6909-426f-8728-c78fcb051f60\",\r\n \"name\": \"validation-c269f12d-6909-426f-8728-c78fcb051f60\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-90dfa177-cd59-435d-86f4-3f5da8e6a51b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.22.1.32\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-cd0c7491-5207-4647-89b6-a149cd14384e\",\r\n \"name\": \"validation-cd0c7491-5207-4647-89b6-a149cd14384e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-736a45af-1889-4513-84f2-313af436d72c\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.22.1.35\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-df7b1361-9cb7-450c-b56f-2adc9c4cac32\",\r\n \"name\": \"validation-df7b1361-9cb7-450c-b56f-2adc9c4cac32\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-ab1b26c9-f3f2-4c64-b195-daad53050243\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.22.1.30\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-e6484c41-41f4-44b1-8650-4422ab5c3ca3\",\r\n \"name\": \"validation-e6484c41-41f4-44b1-8650-4422ab5c3ca3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessinstant\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier140e01bf856a4ff8ae413dce0b91d05aACIRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-centraluseuap-140e01bf856a4ff8ae7979a0c011da7082\",\r\n \"name\": \"restartpolicy-centraluseuap-140e01bf856a4ff8ae7979a0c011da7082\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessinstant\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier28180b243722425cac72e94399a78d32ACIRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-centraluseuap-28180b243722425cac5c72841372ccefb7\",\r\n \"name\": \"restartpolicy-centraluseuap-28180b243722425cac5c72841372ccefb7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/sbz-helloworld:1.0-alpine\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier2b8469df08a04a0f865221a570d065c7ACIContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-centraluseuap-2b8469df08a04a0f865221a5e622df4a670dad87\",\r\n \"name\": \"cgposts-centraluseuap-2b8469df08a04a0f865221a5e622df4a670dad87\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/sbz-helloworld:1.0-alpine\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier388bcaed568a4721bbda6020261f4d63ACIContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-centraluseuap-388bcaed568a4721bbda6020261e19f0d0cbd984aa3\",\r\n \"name\": \"exec-centraluseuap-388bcaed568a4721bbda6020261e19f0d0cbd984aa3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/sbz-helloworld:1.0-alpine\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier591fc76c71be478f97d8ca21d8c68e9bACIContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-centraluseuap-591fc76c71be478f97d8ca21d8c015cd597843fc02f\",\r\n \"name\": \"exec-centraluseuap-591fc76c71be478f97d8ca21d8c015cd597843fc02f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessinstant\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8799c309c1634744bc422202f54a2e35ACIRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-centraluseuap-8799c309c1634744bc13c740a4ea9f9cdd\",\r\n \"name\": \"restartpolicy-centraluseuap-8799c309c1634744bc13c740a4ea9f9cdd\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessinstant\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifieracbc5b6f263b488a9d6f97abaf2cc8d0ACIRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-centraluseuap-acbc5b6f263b488a9d4913188d029a8c3f\",\r\n \"name\": \"restartpolicy-centraluseuap-acbc5b6f263b488a9d4913188d029a8c3f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/sbz-helloworld:1.0-alpine\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierb5157218cec448cab32ebe56945ed338ACIContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-centraluseuap-b5157218cec448cab32ebe5694550bca0c92fdb1757\",\r\n \"name\": \"exec-centraluseuap-b5157218cec448cab32ebe5694550bca0c92fdb1757\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/sbz-helloworld:1.0-alpine\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere56caf3589c9418091393d3e6d8542b4ACIContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-centraluseuap-e56caf3589c9418091393d3eb0c8f98cedd6c6f0\",\r\n \"name\": \"cgposts-centraluseuap-e56caf3589c9418091393d3eb0c8f98cedd6c6f0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"democontainer2\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.29.1.6\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/icmtestcentral/providers/Microsoft.Network/networkProfiles/aci-network-profile-icmtestcentral-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/icmtestcentral/providers/Microsoft.ContainerInstance/containerGroups/democontainer2\",\r\n \"name\": \"democontainer2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"CENTRALUSEUAP\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainercentraluseuap\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnetcentraluseuap-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainercentraluseuap\",\r\n \"name\": \"appcontainercentraluseuap\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"double\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 2.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"single\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-tutorial-sidecar\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/atlasmetricstest\",\r\n \"name\": \"atlasmetricstest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"ip\": \"0.0.0.0\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny-vnet-westus2/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-4596b784-5d88-4d4a-9f9a-3c8299acb5d2/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-ea4f8f0e-e7f2-4484-8aa8-48b656de94a6\",\r\n \"name\": \"zeiny-atlas-ea4f8f0e-e7f2-4484-8aa8-48b656de94a6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"ip\": \"0.0.0.0\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny-vnet-westus2/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-4d28ef7a-f781-4080-9655-c8c29b3cf63d/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-0fc3c069-c21a-4818-8705-9d6c06923106\",\r\n \"name\": \"zeiny-atlas-0fc3c069-c21a-4818-8705-9d6c06923106\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest001\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest001\",\r\n \"name\": \"harrywatest001\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest002\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest002\",\r\n \"name\": \"harrywatest002\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest003\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest003\",\r\n \"name\": \"harrywatest003\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest004\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest004\",\r\n \"name\": \"harrywatest004\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest005\",\r\n \"name\": \"harrywatest005\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest006\",\r\n \"name\": \"harrywatest006\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest007\",\r\n \"name\": \"harrywatest007\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest008\",\r\n \"name\": \"harrywatest008\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest009\",\r\n \"name\": \"harrywatest009\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest010\",\r\n \"name\": \"harrywatest010\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest011\",\r\n \"name\": \"harrywatest011\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"crmanalyticstip.azurecr.io/dasdrillcs:1.0.1.0\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"crmanalyticstip.azurecr.io\",\r\n \"username\": \"crmanalyticstip\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest012\",\r\n \"name\": \"harrywatest012\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest014\",\r\n \"name\": \"harrywatest014\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest015\",\r\n \"name\": \"harrywatest015\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest016\",\r\n \"name\": \"harrywatest016\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest017\",\r\n \"name\": \"harrywatest017\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest018\",\r\n \"name\": \"harrywatest018\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest019\",\r\n \"name\": \"harrywatest019\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n },\r\n {\r\n \"name\": \"THE_POD_IP\",\r\n \"value\": \"@ContainerRuntimePodId@\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest020\",\r\n \"name\": \"harrywatest020\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n },\r\n {\r\n \"name\": \"THE_POD_IP\",\r\n \"value\": \"@Endpoints@\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest021\",\r\n \"name\": \"harrywatest021\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n },\r\n {\r\n \"name\": \"THE_POD_IP\",\r\n \"value\": \"@Endpoints@\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest022\",\r\n \"name\": \"harrywatest022\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n },\r\n {\r\n \"name\": \"THE_POD_IP\",\r\n \"value\": \"@Endpoints@\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest023\",\r\n \"name\": \"harrywatest023\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n },\r\n {\r\n \"name\": \"HOSTNAME\",\r\n \"value\": \"+\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest024\",\r\n \"name\": \"harrywatest024\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n },\r\n {\r\n \"name\": \"HOSTNAME\",\r\n \"value\": \"+\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest029\",\r\n \"name\": \"harrywatest029\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n },\r\n {\r\n \"name\": \"HOSTNAME\",\r\n \"value\": \"+\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest030\",\r\n \"name\": \"harrywatest030\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n },\r\n {\r\n \"name\": \"HOSTNAME\",\r\n \"value\": \"+\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest031\",\r\n \"name\": \"harrywatest031\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n },\r\n {\r\n \"name\": \"HOSTNAME\",\r\n \"value\": \"+\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest032\",\r\n \"name\": \"harrywatest032\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n },\r\n {\r\n \"name\": \"HOSTNAME\",\r\n \"value\": \"+\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest033\",\r\n \"name\": \"harrywatest033\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n },\r\n {\r\n \"name\": \"HOSTNAME\",\r\n \"value\": \"+\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest034\",\r\n \"name\": \"harrywatest034\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/zeinydrillbit:zeiny\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"TIP-1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n },\r\n {\r\n \"name\": \"HOSTNAME\",\r\n \"value\": \"+\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/7ae9ba93-d899-4474-a0d4-1383a570ebbb/resourcegroups/crm-analytics-dev/providers/Microsoft.ManagedIdentity/userAssignedIdentities/DynamicsCustomerCareAnalytics-PPE\": {\r\n \"principalId\": \"34b077fc-bc67-4ee1-8a3b-7874d941fc34\",\r\n \"clientId\": \"c5203f30-7ce9-4b94-90c2-f0a7db46132a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest044\",\r\n \"name\": \"harrywatest044\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 60000\",\r\n \"ls\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest045\",\r\n \"name\": \"harrywatest045\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"harrywatest005\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"ls;sleep 10;cat /etc/hosts\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-c585b980-0290-40ca-b41e-1f17778c836c/providers/Microsoft.ContainerInstance/containerGroups/harrywatest046\",\r\n \"name\": \"harrywatest046\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/testpongserver:31010\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-cab20714-bdc6-4940-ae1f-058b9d7921f8/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-d22b6fbe-e791-4abf-bbd3-0701589fe2eb\",\r\n \"name\": \"zeiny-atlas-d22b6fbe-e791-4abf-bbd3-0701589fe2eb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/testpongserver:31010\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"OrganizationId\",\r\n \"value\": \"82edaf5c-da4b-4094-87e5-4b45cacc4bd0\"\r\n },\r\n {\r\n \"name\": \"AnalyticsPackageVersion\",\r\n \"value\": \"b5441582-9e63-4464-bd43-a1c7d160c22a_1.0.1.0\"\r\n },\r\n {\r\n \"name\": \"DataLakeStorageUrl\",\r\n \"value\": \"https://aetha3a656a2e4e149d9b480.dfs.core.windows.net/aeth-05c38dba-f63a-4059-861b-fbc0d8889a30\"\r\n },\r\n {\r\n \"name\": \"ExecutionId\",\r\n \"value\": \"1010-0000000\"\r\n },\r\n {\r\n \"name\": \"OrganizationUrl\",\r\n \"value\": \"https://ccaanalyticstip28.crm10.dynamics.com/\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-cab20714-bdc6-4940-ae1f-058b9d7921f8/providers/Microsoft.ContainerInstance/containerGroups/zeiny-k8s-1c60fcfd-68c6-4710-99ba-90e126d11308\",\r\n \"name\": \"zeiny-k8s-1c60fcfd-68c6-4710-99ba-90e126d11308\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-dde20f01-27d6-430b-ac49-ae8f05b838b4/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-777195b9-944b-4176-8246-6391f31a3818\",\r\n \"name\": \"zeiny-atlas-777195b9-944b-4176-8246-6391f31a3818\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aa2bb0bc-0710-4029-bb4b-750811f6a8ad\",\r\n \"fqdn\": \"aa2bb0bc-0710-4029-bb4b-750811f6a8ad.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1734aa4-1879-442c-ab11-f09adc984796/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas\",\r\n \"name\": \"zeiny-atlas\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"052ce53f-f32d-422f-90a0-75d02f07801d\",\r\n \"fqdn\": \"052ce53f-f32d-422f-90a0-75d02f07801d.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-052ce53f-f32d-422f-90a0-75d02f07801d\",\r\n \"name\": \"zeiny-atlas-052ce53f-f32d-422f-90a0-75d02f07801d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"06b6087c-b185-4151-8981-9aaf06d79918\",\r\n \"fqdn\": \"06b6087c-b185-4151-8981-9aaf06d79918.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-06b6087c-b185-4151-8981-9aaf06d79918\",\r\n \"name\": \"zeiny-atlas-06b6087c-b185-4151-8981-9aaf06d79918\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"07d424cd-49de-45e3-b020-db89ec3f541d\",\r\n \"fqdn\": \"07d424cd-49de-45e3-b020-db89ec3f541d.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-07d424cd-49de-45e3-b020-db89ec3f541d\",\r\n \"name\": \"zeiny-atlas-07d424cd-49de-45e3-b020-db89ec3f541d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"07d8f8b7-d7a4-4364-96ec-ed7192fa841a\",\r\n \"fqdn\": \"07d8f8b7-d7a4-4364-96ec-ed7192fa841a.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-07d8f8b7-d7a4-4364-96ec-ed7192fa841a\",\r\n \"name\": \"zeiny-atlas-07d8f8b7-d7a4-4364-96ec-ed7192fa841a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"11cfa111-7d2a-4565-a039-695c07f1edf2\",\r\n \"fqdn\": \"11cfa111-7d2a-4565-a039-695c07f1edf2.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-11cfa111-7d2a-4565-a039-695c07f1edf2\",\r\n \"name\": \"zeiny-atlas-11cfa111-7d2a-4565-a039-695c07f1edf2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"137abb3f-b7ec-4c29-9c46-eba1e5174083\",\r\n \"fqdn\": \"137abb3f-b7ec-4c29-9c46-eba1e5174083.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-137abb3f-b7ec-4c29-9c46-eba1e5174083\",\r\n \"name\": \"zeiny-atlas-137abb3f-b7ec-4c29-9c46-eba1e5174083\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"160ec20e-e263-4903-8b0a-02862da88a2b\",\r\n \"fqdn\": \"160ec20e-e263-4903-8b0a-02862da88a2b.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-160ec20e-e263-4903-8b0a-02862da88a2b\",\r\n \"name\": \"zeiny-atlas-160ec20e-e263-4903-8b0a-02862da88a2b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"1a161e23-2cd8-4c95-93e9-fe45f65c5a4f\",\r\n \"fqdn\": \"1a161e23-2cd8-4c95-93e9-fe45f65c5a4f.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-1a161e23-2cd8-4c95-93e9-fe45f65c5a4f\",\r\n \"name\": \"zeiny-atlas-1a161e23-2cd8-4c95-93e9-fe45f65c5a4f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"1d8d7960-b75a-491b-acc4-e14f7a71dc5d\",\r\n \"fqdn\": \"1d8d7960-b75a-491b-acc4-e14f7a71dc5d.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-1d8d7960-b75a-491b-acc4-e14f7a71dc5d\",\r\n \"name\": \"zeiny-atlas-1d8d7960-b75a-491b-acc4-e14f7a71dc5d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"2069dd23-e526-4699-bc24-35f22b7e7e97\",\r\n \"fqdn\": \"2069dd23-e526-4699-bc24-35f22b7e7e97.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-2069dd23-e526-4699-bc24-35f22b7e7e97\",\r\n \"name\": \"zeiny-atlas-2069dd23-e526-4699-bc24-35f22b7e7e97\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"235577d8-da9a-4511-b706-98934bb6f0fd\",\r\n \"fqdn\": \"235577d8-da9a-4511-b706-98934bb6f0fd.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-235577d8-da9a-4511-b706-98934bb6f0fd\",\r\n \"name\": \"zeiny-atlas-235577d8-da9a-4511-b706-98934bb6f0fd\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"249a6776-972b-4cf8-9213-2b4abd774290\",\r\n \"fqdn\": \"249a6776-972b-4cf8-9213-2b4abd774290.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-249a6776-972b-4cf8-9213-2b4abd774290\",\r\n \"name\": \"zeiny-atlas-249a6776-972b-4cf8-9213-2b4abd774290\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"253459f1-dd27-45ef-a291-d56cea9a9a4a\",\r\n \"fqdn\": \"253459f1-dd27-45ef-a291-d56cea9a9a4a.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-253459f1-dd27-45ef-a291-d56cea9a9a4a\",\r\n \"name\": \"zeiny-atlas-253459f1-dd27-45ef-a291-d56cea9a9a4a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"257fd73c-90e1-430e-98bf-749e78d27c50\",\r\n \"fqdn\": \"257fd73c-90e1-430e-98bf-749e78d27c50.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-257fd73c-90e1-430e-98bf-749e78d27c50\",\r\n \"name\": \"zeiny-atlas-257fd73c-90e1-430e-98bf-749e78d27c50\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"273616b2-0a8b-4978-ac4e-f30b97ca7dfc\",\r\n \"fqdn\": \"273616b2-0a8b-4978-ac4e-f30b97ca7dfc.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-273616b2-0a8b-4978-ac4e-f30b97ca7dfc\",\r\n \"name\": \"zeiny-atlas-273616b2-0a8b-4978-ac4e-f30b97ca7dfc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"28c27b12-95ca-496c-8bf9-282816e44b8f\",\r\n \"fqdn\": \"28c27b12-95ca-496c-8bf9-282816e44b8f.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-28c27b12-95ca-496c-8bf9-282816e44b8f\",\r\n \"name\": \"zeiny-atlas-28c27b12-95ca-496c-8bf9-282816e44b8f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"2a759ffe-4bf5-40c9-9983-cddc332fcc47\",\r\n \"fqdn\": \"2a759ffe-4bf5-40c9-9983-cddc332fcc47.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-2a759ffe-4bf5-40c9-9983-cddc332fcc47\",\r\n \"name\": \"zeiny-atlas-2a759ffe-4bf5-40c9-9983-cddc332fcc47\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"2b5c0d51-7b60-4b84-8a9e-655964b1647d\",\r\n \"fqdn\": \"2b5c0d51-7b60-4b84-8a9e-655964b1647d.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-2b5c0d51-7b60-4b84-8a9e-655964b1647d\",\r\n \"name\": \"zeiny-atlas-2b5c0d51-7b60-4b84-8a9e-655964b1647d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"33782b60-d616-4896-bbe8-f989e4e17e58\",\r\n \"fqdn\": \"33782b60-d616-4896-bbe8-f989e4e17e58.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-33782b60-d616-4896-bbe8-f989e4e17e58\",\r\n \"name\": \"zeiny-atlas-33782b60-d616-4896-bbe8-f989e4e17e58\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"3453ad11-e918-4dca-b9a9-25bbdc3994fb\",\r\n \"fqdn\": \"3453ad11-e918-4dca-b9a9-25bbdc3994fb.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-3453ad11-e918-4dca-b9a9-25bbdc3994fb\",\r\n \"name\": \"zeiny-atlas-3453ad11-e918-4dca-b9a9-25bbdc3994fb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"360dbdb3-b394-4685-b301-3789f6332e1b\",\r\n \"fqdn\": \"360dbdb3-b394-4685-b301-3789f6332e1b.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-360dbdb3-b394-4685-b301-3789f6332e1b\",\r\n \"name\": \"zeiny-atlas-360dbdb3-b394-4685-b301-3789f6332e1b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"36dd42e5-66e4-4560-8f9e-5da1affc5a81\",\r\n \"fqdn\": \"36dd42e5-66e4-4560-8f9e-5da1affc5a81.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-36dd42e5-66e4-4560-8f9e-5da1affc5a81\",\r\n \"name\": \"zeiny-atlas-36dd42e5-66e4-4560-8f9e-5da1affc5a81\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"39e41a8f-9a5f-4098-a738-cb288c318ab7\",\r\n \"fqdn\": \"39e41a8f-9a5f-4098-a738-cb288c318ab7.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-39e41a8f-9a5f-4098-a738-cb288c318ab7\",\r\n \"name\": \"zeiny-atlas-39e41a8f-9a5f-4098-a738-cb288c318ab7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"3f040206-7ec2-4a97-a1fb-ff1c09d7ef53\",\r\n \"fqdn\": \"3f040206-7ec2-4a97-a1fb-ff1c09d7ef53.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-3f040206-7ec2-4a97-a1fb-ff1c09d7ef53\",\r\n \"name\": \"zeiny-atlas-3f040206-7ec2-4a97-a1fb-ff1c09d7ef53\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"407f2a41-fa26-44e7-bdd8-2beb52d392b8\",\r\n \"fqdn\": \"407f2a41-fa26-44e7-bdd8-2beb52d392b8.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-407f2a41-fa26-44e7-bdd8-2beb52d392b8\",\r\n \"name\": \"zeiny-atlas-407f2a41-fa26-44e7-bdd8-2beb52d392b8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"40aa96cb-7c85-4a7e-9b7e-7fbe53f9cb0e\",\r\n \"fqdn\": \"40aa96cb-7c85-4a7e-9b7e-7fbe53f9cb0e.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-40aa96cb-7c85-4a7e-9b7e-7fbe53f9cb0e\",\r\n \"name\": \"zeiny-atlas-40aa96cb-7c85-4a7e-9b7e-7fbe53f9cb0e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"45f9b604-af10-4b0b-992c-1b384297afbb\",\r\n \"fqdn\": \"45f9b604-af10-4b0b-992c-1b384297afbb.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-45f9b604-af10-4b0b-992c-1b384297afbb\",\r\n \"name\": \"zeiny-atlas-45f9b604-af10-4b0b-992c-1b384297afbb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"462e04ed-df1f-4b09-8c5c-6ab02455de3a\",\r\n \"fqdn\": \"462e04ed-df1f-4b09-8c5c-6ab02455de3a.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-462e04ed-df1f-4b09-8c5c-6ab02455de3a\",\r\n \"name\": \"zeiny-atlas-462e04ed-df1f-4b09-8c5c-6ab02455de3a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"487350ec-b6d0-4640-8151-70e9ddbb0a7b\",\r\n \"fqdn\": \"487350ec-b6d0-4640-8151-70e9ddbb0a7b.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-487350ec-b6d0-4640-8151-70e9ddbb0a7b\",\r\n \"name\": \"zeiny-atlas-487350ec-b6d0-4640-8151-70e9ddbb0a7b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"4e64f972-044a-48e2-bd93-8c923810cebc\",\r\n \"fqdn\": \"4e64f972-044a-48e2-bd93-8c923810cebc.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-4e64f972-044a-48e2-bd93-8c923810cebc\",\r\n \"name\": \"zeiny-atlas-4e64f972-044a-48e2-bd93-8c923810cebc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"56498984-1a21-4c83-b863-ca9f1bef78f3\",\r\n \"fqdn\": \"56498984-1a21-4c83-b863-ca9f1bef78f3.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-56498984-1a21-4c83-b863-ca9f1bef78f3\",\r\n \"name\": \"zeiny-atlas-56498984-1a21-4c83-b863-ca9f1bef78f3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"59033bf4-6e61-4b76-8299-4622fb2f555b\",\r\n \"fqdn\": \"59033bf4-6e61-4b76-8299-4622fb2f555b.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-59033bf4-6e61-4b76-8299-4622fb2f555b\",\r\n \"name\": \"zeiny-atlas-59033bf4-6e61-4b76-8299-4622fb2f555b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"5b20b064-0faa-4f54-b3ca-9f32511a37e3\",\r\n \"fqdn\": \"5b20b064-0faa-4f54-b3ca-9f32511a37e3.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-5b20b064-0faa-4f54-b3ca-9f32511a37e3\",\r\n \"name\": \"zeiny-atlas-5b20b064-0faa-4f54-b3ca-9f32511a37e3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"5cc59d0c-1568-457e-b0b7-79f01423e82b\",\r\n \"fqdn\": \"5cc59d0c-1568-457e-b0b7-79f01423e82b.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-5cc59d0c-1568-457e-b0b7-79f01423e82b\",\r\n \"name\": \"zeiny-atlas-5cc59d0c-1568-457e-b0b7-79f01423e82b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"5df764a6-c9ec-4900-a4e6-bbefb74175b7\",\r\n \"fqdn\": \"5df764a6-c9ec-4900-a4e6-bbefb74175b7.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-5df764a6-c9ec-4900-a4e6-bbefb74175b7\",\r\n \"name\": \"zeiny-atlas-5df764a6-c9ec-4900-a4e6-bbefb74175b7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"612f88b0-396b-4dfa-82c5-55e2ebe0dcc0\",\r\n \"fqdn\": \"612f88b0-396b-4dfa-82c5-55e2ebe0dcc0.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-612f88b0-396b-4dfa-82c5-55e2ebe0dcc0\",\r\n \"name\": \"zeiny-atlas-612f88b0-396b-4dfa-82c5-55e2ebe0dcc0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"69040c6d-f162-4010-86cf-9284d3e701ae\",\r\n \"fqdn\": \"69040c6d-f162-4010-86cf-9284d3e701ae.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-69040c6d-f162-4010-86cf-9284d3e701ae\",\r\n \"name\": \"zeiny-atlas-69040c6d-f162-4010-86cf-9284d3e701ae\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"6ba00585-5319-4769-9239-6c17af40bad2\",\r\n \"fqdn\": \"6ba00585-5319-4769-9239-6c17af40bad2.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-6ba00585-5319-4769-9239-6c17af40bad2\",\r\n \"name\": \"zeiny-atlas-6ba00585-5319-4769-9239-6c17af40bad2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"6f56f6c0-f68e-40c1-8126-9f8ce4cb9322\",\r\n \"fqdn\": \"6f56f6c0-f68e-40c1-8126-9f8ce4cb9322.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-6f56f6c0-f68e-40c1-8126-9f8ce4cb9322\",\r\n \"name\": \"zeiny-atlas-6f56f6c0-f68e-40c1-8126-9f8ce4cb9322\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"7323b566-713e-4b63-b2c7-337baaabf645\",\r\n \"fqdn\": \"7323b566-713e-4b63-b2c7-337baaabf645.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-7323b566-713e-4b63-b2c7-337baaabf645\",\r\n \"name\": \"zeiny-atlas-7323b566-713e-4b63-b2c7-337baaabf645\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"786c5ec7-4bdb-429d-bb1e-03392c6a4d9c\",\r\n \"fqdn\": \"786c5ec7-4bdb-429d-bb1e-03392c6a4d9c.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-786c5ec7-4bdb-429d-bb1e-03392c6a4d9c\",\r\n \"name\": \"zeiny-atlas-786c5ec7-4bdb-429d-bb1e-03392c6a4d9c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"7aea9329-07f8-4f81-9cd2-6425c62d14b0\",\r\n \"fqdn\": \"7aea9329-07f8-4f81-9cd2-6425c62d14b0.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-7aea9329-07f8-4f81-9cd2-6425c62d14b0\",\r\n \"name\": \"zeiny-atlas-7aea9329-07f8-4f81-9cd2-6425c62d14b0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"7f600dae-10d2-4447-9440-2492713d76eb\",\r\n \"fqdn\": \"7f600dae-10d2-4447-9440-2492713d76eb.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-7f600dae-10d2-4447-9440-2492713d76eb\",\r\n \"name\": \"zeiny-atlas-7f600dae-10d2-4447-9440-2492713d76eb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"80858b68-bd7a-4174-8c7b-485886c7fb4c\",\r\n \"fqdn\": \"80858b68-bd7a-4174-8c7b-485886c7fb4c.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-80858b68-bd7a-4174-8c7b-485886c7fb4c\",\r\n \"name\": \"zeiny-atlas-80858b68-bd7a-4174-8c7b-485886c7fb4c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"84e538a1-d02b-40cc-8268-daa6f29e84b9\",\r\n \"fqdn\": \"84e538a1-d02b-40cc-8268-daa6f29e84b9.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-84e538a1-d02b-40cc-8268-daa6f29e84b9\",\r\n \"name\": \"zeiny-atlas-84e538a1-d02b-40cc-8268-daa6f29e84b9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"85c08b79-7e74-443f-bf01-143dba0bfa44\",\r\n \"fqdn\": \"85c08b79-7e74-443f-bf01-143dba0bfa44.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-85c08b79-7e74-443f-bf01-143dba0bfa44\",\r\n \"name\": \"zeiny-atlas-85c08b79-7e74-443f-bf01-143dba0bfa44\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"87dd52e9-ff07-4f20-ac61-db07b2832161\",\r\n \"fqdn\": \"87dd52e9-ff07-4f20-ac61-db07b2832161.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-87dd52e9-ff07-4f20-ac61-db07b2832161\",\r\n \"name\": \"zeiny-atlas-87dd52e9-ff07-4f20-ac61-db07b2832161\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"883a684f-4632-4785-be1e-ff14d83433f7\",\r\n \"fqdn\": \"883a684f-4632-4785-be1e-ff14d83433f7.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-883a684f-4632-4785-be1e-ff14d83433f7\",\r\n \"name\": \"zeiny-atlas-883a684f-4632-4785-be1e-ff14d83433f7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"88649546-e22d-4910-809c-ed72522ca2fd\",\r\n \"fqdn\": \"88649546-e22d-4910-809c-ed72522ca2fd.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-88649546-e22d-4910-809c-ed72522ca2fd\",\r\n \"name\": \"zeiny-atlas-88649546-e22d-4910-809c-ed72522ca2fd\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"8a1e4571-a77a-4430-ae55-b1916fbf4772\",\r\n \"fqdn\": \"8a1e4571-a77a-4430-ae55-b1916fbf4772.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-8a1e4571-a77a-4430-ae55-b1916fbf4772\",\r\n \"name\": \"zeiny-atlas-8a1e4571-a77a-4430-ae55-b1916fbf4772\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"8d1d5a81-fbac-4f2d-be77-5334415d0b9e\",\r\n \"fqdn\": \"8d1d5a81-fbac-4f2d-be77-5334415d0b9e.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-8d1d5a81-fbac-4f2d-be77-5334415d0b9e\",\r\n \"name\": \"zeiny-atlas-8d1d5a81-fbac-4f2d-be77-5334415d0b9e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"8e77707f-2cd1-454e-92ca-8b79d78ab61c\",\r\n \"fqdn\": \"8e77707f-2cd1-454e-92ca-8b79d78ab61c.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-8e77707f-2cd1-454e-92ca-8b79d78ab61c\",\r\n \"name\": \"zeiny-atlas-8e77707f-2cd1-454e-92ca-8b79d78ab61c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"8ec10c91-797e-4612-9460-2dd7f1ff7d4a\",\r\n \"fqdn\": \"8ec10c91-797e-4612-9460-2dd7f1ff7d4a.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-8ec10c91-797e-4612-9460-2dd7f1ff7d4a\",\r\n \"name\": \"zeiny-atlas-8ec10c91-797e-4612-9460-2dd7f1ff7d4a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"93d1ca90-3935-483c-a390-fe3d0996e2df\",\r\n \"fqdn\": \"93d1ca90-3935-483c-a390-fe3d0996e2df.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-93d1ca90-3935-483c-a390-fe3d0996e2df\",\r\n \"name\": \"zeiny-atlas-93d1ca90-3935-483c-a390-fe3d0996e2df\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"94949465-9621-4116-846c-a2c918e0b446\",\r\n \"fqdn\": \"94949465-9621-4116-846c-a2c918e0b446.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-94949465-9621-4116-846c-a2c918e0b446\",\r\n \"name\": \"zeiny-atlas-94949465-9621-4116-846c-a2c918e0b446\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"982c0ddd-48d0-485f-af57-5b39c108a1ca\",\r\n \"fqdn\": \"982c0ddd-48d0-485f-af57-5b39c108a1ca.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-982c0ddd-48d0-485f-af57-5b39c108a1ca\",\r\n \"name\": \"zeiny-atlas-982c0ddd-48d0-485f-af57-5b39c108a1ca\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"98e50514-21a8-487f-9d17-3939ac130f52\",\r\n \"fqdn\": \"98e50514-21a8-487f-9d17-3939ac130f52.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-98e50514-21a8-487f-9d17-3939ac130f52\",\r\n \"name\": \"zeiny-atlas-98e50514-21a8-487f-9d17-3939ac130f52\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"9a03f3a8-fc0a-4f93-829e-7f61bdfe7311\",\r\n \"fqdn\": \"9a03f3a8-fc0a-4f93-829e-7f61bdfe7311.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-9a03f3a8-fc0a-4f93-829e-7f61bdfe7311\",\r\n \"name\": \"zeiny-atlas-9a03f3a8-fc0a-4f93-829e-7f61bdfe7311\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"a03cb39c-f708-4add-b175-0089fe2edc26\",\r\n \"fqdn\": \"a03cb39c-f708-4add-b175-0089fe2edc26.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-a03cb39c-f708-4add-b175-0089fe2edc26\",\r\n \"name\": \"zeiny-atlas-a03cb39c-f708-4add-b175-0089fe2edc26\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"a74edb82-180d-4849-8d62-8be25695c021\",\r\n \"fqdn\": \"a74edb82-180d-4849-8d62-8be25695c021.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-a74edb82-180d-4849-8d62-8be25695c021\",\r\n \"name\": \"zeiny-atlas-a74edb82-180d-4849-8d62-8be25695c021\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"a93b179a-4cb1-4e45-8ef4-76cf7d0f28e7\",\r\n \"fqdn\": \"a93b179a-4cb1-4e45-8ef4-76cf7d0f28e7.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-a93b179a-4cb1-4e45-8ef4-76cf7d0f28e7\",\r\n \"name\": \"zeiny-atlas-a93b179a-4cb1-4e45-8ef4-76cf7d0f28e7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"ab829d7a-1f8f-420e-be52-1456b7e8cd78\",\r\n \"fqdn\": \"ab829d7a-1f8f-420e-be52-1456b7e8cd78.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-ab829d7a-1f8f-420e-be52-1456b7e8cd78\",\r\n \"name\": \"zeiny-atlas-ab829d7a-1f8f-420e-be52-1456b7e8cd78\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"ad7f0e3c-5d9b-4f30-a8d2-d8dfeb9eab61\",\r\n \"fqdn\": \"ad7f0e3c-5d9b-4f30-a8d2-d8dfeb9eab61.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-ad7f0e3c-5d9b-4f30-a8d2-d8dfeb9eab61\",\r\n \"name\": \"zeiny-atlas-ad7f0e3c-5d9b-4f30-a8d2-d8dfeb9eab61\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"b359477f-6664-411a-84c1-e16bda0956dc\",\r\n \"fqdn\": \"b359477f-6664-411a-84c1-e16bda0956dc.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-b359477f-6664-411a-84c1-e16bda0956dc\",\r\n \"name\": \"zeiny-atlas-b359477f-6664-411a-84c1-e16bda0956dc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"b589cbe6-e8d1-4273-92aa-9986d6c59d24\",\r\n \"fqdn\": \"b589cbe6-e8d1-4273-92aa-9986d6c59d24.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-b589cbe6-e8d1-4273-92aa-9986d6c59d24\",\r\n \"name\": \"zeiny-atlas-b589cbe6-e8d1-4273-92aa-9986d6c59d24\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"b7a554a6-6684-4739-80de-367b7f6e0492\",\r\n \"fqdn\": \"b7a554a6-6684-4739-80de-367b7f6e0492.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-b7a554a6-6684-4739-80de-367b7f6e0492\",\r\n \"name\": \"zeiny-atlas-b7a554a6-6684-4739-80de-367b7f6e0492\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"bb33cc98-57e5-403a-8c58-4ef0dc5033bc\",\r\n \"fqdn\": \"bb33cc98-57e5-403a-8c58-4ef0dc5033bc.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-bb33cc98-57e5-403a-8c58-4ef0dc5033bc\",\r\n \"name\": \"zeiny-atlas-bb33cc98-57e5-403a-8c58-4ef0dc5033bc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"bbe156e3-a931-4231-a5dd-2e496def1e80\",\r\n \"fqdn\": \"bbe156e3-a931-4231-a5dd-2e496def1e80.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-bbe156e3-a931-4231-a5dd-2e496def1e80\",\r\n \"name\": \"zeiny-atlas-bbe156e3-a931-4231-a5dd-2e496def1e80\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"bc36c352-f091-4371-901d-949496791896\",\r\n \"fqdn\": \"bc36c352-f091-4371-901d-949496791896.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-bc36c352-f091-4371-901d-949496791896\",\r\n \"name\": \"zeiny-atlas-bc36c352-f091-4371-901d-949496791896\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"bd31e029-e289-410b-ae62-0325e66d35f1\",\r\n \"fqdn\": \"bd31e029-e289-410b-ae62-0325e66d35f1.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-bd31e029-e289-410b-ae62-0325e66d35f1\",\r\n \"name\": \"zeiny-atlas-bd31e029-e289-410b-ae62-0325e66d35f1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"bfff647f-d5ce-4723-824f-96f304436716\",\r\n \"fqdn\": \"bfff647f-d5ce-4723-824f-96f304436716.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-bfff647f-d5ce-4723-824f-96f304436716\",\r\n \"name\": \"zeiny-atlas-bfff647f-d5ce-4723-824f-96f304436716\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"c294973c-08bc-4e28-8a89-384bf7b9cc7c\",\r\n \"fqdn\": \"c294973c-08bc-4e28-8a89-384bf7b9cc7c.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c294973c-08bc-4e28-8a89-384bf7b9cc7c\",\r\n \"name\": \"zeiny-atlas-c294973c-08bc-4e28-8a89-384bf7b9cc7c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"c2d01943-0bdf-4bef-9225-c5bec57e5a71\",\r\n \"fqdn\": \"c2d01943-0bdf-4bef-9225-c5bec57e5a71.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c2d01943-0bdf-4bef-9225-c5bec57e5a71\",\r\n \"name\": \"zeiny-atlas-c2d01943-0bdf-4bef-9225-c5bec57e5a71\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"c33137d6-4081-41cc-aa33-b140efad064a\",\r\n \"fqdn\": \"c33137d6-4081-41cc-aa33-b140efad064a.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c33137d6-4081-41cc-aa33-b140efad064a\",\r\n \"name\": \"zeiny-atlas-c33137d6-4081-41cc-aa33-b140efad064a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"c516e6f6-e909-42d1-a923-87be4a461b4f\",\r\n \"fqdn\": \"c516e6f6-e909-42d1-a923-87be4a461b4f.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c516e6f6-e909-42d1-a923-87be4a461b4f\",\r\n \"name\": \"zeiny-atlas-c516e6f6-e909-42d1-a923-87be4a461b4f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"d2f3e9fd-7dcc-439c-a399-1632a54a4cad\",\r\n \"fqdn\": \"d2f3e9fd-7dcc-439c-a399-1632a54a4cad.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-d2f3e9fd-7dcc-439c-a399-1632a54a4cad\",\r\n \"name\": \"zeiny-atlas-d2f3e9fd-7dcc-439c-a399-1632a54a4cad\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"d41677a4-4300-4a2d-a124-9eb03d6f1d4d\",\r\n \"fqdn\": \"d41677a4-4300-4a2d-a124-9eb03d6f1d4d.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-d41677a4-4300-4a2d-a124-9eb03d6f1d4d\",\r\n \"name\": \"zeiny-atlas-d41677a4-4300-4a2d-a124-9eb03d6f1d4d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"d4365ac4-4658-4c64-9a1d-bc49d2e8e712\",\r\n \"fqdn\": \"d4365ac4-4658-4c64-9a1d-bc49d2e8e712.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-d4365ac4-4658-4c64-9a1d-bc49d2e8e712\",\r\n \"name\": \"zeiny-atlas-d4365ac4-4658-4c64-9a1d-bc49d2e8e712\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"d757ce27-c4e6-4cf3-83f7-4a0deedff0e1\",\r\n \"fqdn\": \"d757ce27-c4e6-4cf3-83f7-4a0deedff0e1.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-d757ce27-c4e6-4cf3-83f7-4a0deedff0e1\",\r\n \"name\": \"zeiny-atlas-d757ce27-c4e6-4cf3-83f7-4a0deedff0e1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"d7827195-f1ee-4884-bba3-8ee814336d5c\",\r\n \"fqdn\": \"d7827195-f1ee-4884-bba3-8ee814336d5c.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-d7827195-f1ee-4884-bba3-8ee814336d5c\",\r\n \"name\": \"zeiny-atlas-d7827195-f1ee-4884-bba3-8ee814336d5c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"da1b576e-81e8-4fc5-81f9-2a9ac073b301\",\r\n \"fqdn\": \"da1b576e-81e8-4fc5-81f9-2a9ac073b301.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-da1b576e-81e8-4fc5-81f9-2a9ac073b301\",\r\n \"name\": \"zeiny-atlas-da1b576e-81e8-4fc5-81f9-2a9ac073b301\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"dab1c759-e894-4286-ac00-388f4e5152a7\",\r\n \"fqdn\": \"dab1c759-e894-4286-ac00-388f4e5152a7.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-dab1c759-e894-4286-ac00-388f4e5152a7\",\r\n \"name\": \"zeiny-atlas-dab1c759-e894-4286-ac00-388f4e5152a7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"e1f1c976-4f17-4d74-b0aa-7910a5559416\",\r\n \"fqdn\": \"e1f1c976-4f17-4d74-b0aa-7910a5559416.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-e1f1c976-4f17-4d74-b0aa-7910a5559416\",\r\n \"name\": \"zeiny-atlas-e1f1c976-4f17-4d74-b0aa-7910a5559416\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"e25ce370-d856-4332-b55e-f3b0473a489a\",\r\n \"fqdn\": \"e25ce370-d856-4332-b55e-f3b0473a489a.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-e25ce370-d856-4332-b55e-f3b0473a489a\",\r\n \"name\": \"zeiny-atlas-e25ce370-d856-4332-b55e-f3b0473a489a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"e47edd63-6cca-4858-92a4-3cf6d45c8c2f\",\r\n \"fqdn\": \"e47edd63-6cca-4858-92a4-3cf6d45c8c2f.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-e47edd63-6cca-4858-92a4-3cf6d45c8c2f\",\r\n \"name\": \"zeiny-atlas-e47edd63-6cca-4858-92a4-3cf6d45c8c2f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"e5498a3c-c666-4fe7-83b7-af964aa56e2d\",\r\n \"fqdn\": \"e5498a3c-c666-4fe7-83b7-af964aa56e2d.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-e5498a3c-c666-4fe7-83b7-af964aa56e2d\",\r\n \"name\": \"zeiny-atlas-e5498a3c-c666-4fe7-83b7-af964aa56e2d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"ebd4ee53-0fda-4528-b9b4-cf799fcd7057\",\r\n \"fqdn\": \"ebd4ee53-0fda-4528-b9b4-cf799fcd7057.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-ebd4ee53-0fda-4528-b9b4-cf799fcd7057\",\r\n \"name\": \"zeiny-atlas-ebd4ee53-0fda-4528-b9b4-cf799fcd7057\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"edfc995c-5edb-4088-bd07-d47fddd3a69a\",\r\n \"fqdn\": \"edfc995c-5edb-4088-bd07-d47fddd3a69a.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-edfc995c-5edb-4088-bd07-d47fddd3a69a\",\r\n \"name\": \"zeiny-atlas-edfc995c-5edb-4088-bd07-d47fddd3a69a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"ee473d12-6af8-4576-a730-a0a0d078ef86\",\r\n \"fqdn\": \"ee473d12-6af8-4576-a730-a0a0d078ef86.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-ee473d12-6af8-4576-a730-a0a0d078ef86\",\r\n \"name\": \"zeiny-atlas-ee473d12-6af8-4576-a730-a0a0d078ef86\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"ef44a26a-2906-4376-961e-77a50b632b51\",\r\n \"fqdn\": \"ef44a26a-2906-4376-961e-77a50b632b51.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-ef44a26a-2906-4376-961e-77a50b632b51\",\r\n \"name\": \"zeiny-atlas-ef44a26a-2906-4376-961e-77a50b632b51\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"ef8773f1-1057-4fb1-93ad-abb68bacffa4\",\r\n \"fqdn\": \"ef8773f1-1057-4fb1-93ad-abb68bacffa4.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-ef8773f1-1057-4fb1-93ad-abb68bacffa4\",\r\n \"name\": \"zeiny-atlas-ef8773f1-1057-4fb1-93ad-abb68bacffa4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"f1564b04-d35d-4b94-864a-71d15f74350a\",\r\n \"fqdn\": \"f1564b04-d35d-4b94-864a-71d15f74350a.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-f1564b04-d35d-4b94-864a-71d15f74350a\",\r\n \"name\": \"zeiny-atlas-f1564b04-d35d-4b94-864a-71d15f74350a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"f18e1044-0d9f-4f08-9526-62622a3daced\",\r\n \"fqdn\": \"f18e1044-0d9f-4f08-9526-62622a3daced.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-f18e1044-0d9f-4f08-9526-62622a3daced\",\r\n \"name\": \"zeiny-atlas-f18e1044-0d9f-4f08-9526-62622a3daced\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"f246923e-e3ac-47b7-ba12-5fbdab80d838\",\r\n \"fqdn\": \"f246923e-e3ac-47b7-ba12-5fbdab80d838.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-f246923e-e3ac-47b7-ba12-5fbdab80d838\",\r\n \"name\": \"zeiny-atlas-f246923e-e3ac-47b7-ba12-5fbdab80d838\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"f3254e2d-fbb8-4d51-b46f-579041e7f254\",\r\n \"fqdn\": \"f3254e2d-fbb8-4d51-b46f-579041e7f254.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-f3254e2d-fbb8-4d51-b46f-579041e7f254\",\r\n \"name\": \"zeiny-atlas-f3254e2d-fbb8-4d51-b46f-579041e7f254\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"f3be1b84-8227-4591-b577-5dc694b7e25b\",\r\n \"fqdn\": \"f3be1b84-8227-4591-b577-5dc694b7e25b.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-f3be1b84-8227-4591-b577-5dc694b7e25b\",\r\n \"name\": \"zeiny-atlas-f3be1b84-8227-4591-b577-5dc694b7e25b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"f560f77b-b6f5-4c4b-b61a-0ea0891fecab\",\r\n \"fqdn\": \"f560f77b-b6f5-4c4b-b61a-0ea0891fecab.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-f560f77b-b6f5-4c4b-b61a-0ea0891fecab\",\r\n \"name\": \"zeiny-atlas-f560f77b-b6f5-4c4b-b61a-0ea0891fecab\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"f73b3aa2-ad56-4273-9106-30fb1b47a591\",\r\n \"fqdn\": \"f73b3aa2-ad56-4273-9106-30fb1b47a591.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-f73b3aa2-ad56-4273-9106-30fb1b47a591\",\r\n \"name\": \"zeiny-atlas-f73b3aa2-ad56-4273-9106-30fb1b47a591\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"fa925c71-6a77-4f87-8c62-44a39c7086ce\",\r\n \"fqdn\": \"fa925c71-6a77-4f87-8c62-44a39c7086ce.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-fa925c71-6a77-4f87-8c62-44a39c7086ce\",\r\n \"name\": \"zeiny-atlas-fa925c71-6a77-4f87-8c62-44a39c7086ce\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"fb0dc171-2862-4d7c-9f70-8adc66d9de5c\",\r\n \"fqdn\": \"fb0dc171-2862-4d7c-9f70-8adc66d9de5c.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e1fbd13f-5fbd-4906-960a-c0418a124438/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-fb0dc171-2862-4d7c-9f70-8adc66d9de5c\",\r\n \"name\": \"zeiny-atlas-fb0dc171-2862-4d7c-9f70-8adc66d9de5c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"7effeff4-71fe-4342-95c4-dbc4c046c59b\",\r\n \"fqdn\": \"7effeff4-71fe-4342-95c4-dbc4c046c59b.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-1-m-0-1\",\r\n \"name\": \"zeiny-atlas-c-0-1-m-0-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.143.82.175\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"c0d61cc0-2d3c-49c1-a461-4d5ae6eda777\",\r\n \"fqdn\": \"c0d61cc0-2d3c-49c1-a461-4d5ae6eda777.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-1-m-0-2\",\r\n \"name\": \"zeiny-atlas-c-0-1-m-0-2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"325dd726-62ee-4d05-bbf6-ddd6a5201424\",\r\n \"fqdn\": \"325dd726-62ee-4d05-bbf6-ddd6a5201424.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-1-m-0-3\",\r\n \"name\": \"zeiny-atlas-c-0-1-m-0-3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"40e778be-8e41-4e51-97ae-b06b08fcfd25\",\r\n \"fqdn\": \"40e778be-8e41-4e51-97ae-b06b08fcfd25.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-1-m-0-4\",\r\n \"name\": \"zeiny-atlas-c-0-1-m-0-4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"e74056c8-d93b-4a13-a65b-a19e129f2cc6\",\r\n \"fqdn\": \"e74056c8-d93b-4a13-a65b-a19e129f2cc6.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-1-m-0-5\",\r\n \"name\": \"zeiny-atlas-c-0-1-m-0-5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"3cbf3c08-5151-4382-9f2d-34dce3933ddc\",\r\n \"fqdn\": \"3cbf3c08-5151-4382-9f2d-34dce3933ddc.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-1-m-0-6\",\r\n \"name\": \"zeiny-atlas-c-0-1-m-0-6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.250.32.179\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"87319f54-8016-45ed-b728-ddf4ef461bf4\",\r\n \"fqdn\": \"87319f54-8016-45ed-b728-ddf4ef461bf4.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-1-m-0-7\",\r\n \"name\": \"zeiny-atlas-c-0-1-m-0-7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.148.165.125\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"f9b36031-d0c8-4b7c-ad60-5ce71152e73e\",\r\n \"fqdn\": \"f9b36031-d0c8-4b7c-ad60-5ce71152e73e.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-1-m-0-8\",\r\n \"name\": \"zeiny-atlas-c-0-1-m-0-8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"1717d31d-5efd-4abf-b742-ed98e2144c3a\",\r\n \"fqdn\": \"1717d31d-5efd-4abf-b742-ed98e2144c3a.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-1-m-0-9\",\r\n \"name\": \"zeiny-atlas-c-0-1-m-0-9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"1c9f9b8a-a797-40f8-bd7e-8676bb6f9ced\",\r\n \"fqdn\": \"1c9f9b8a-a797-40f8-bd7e-8676bb6f9ced.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-1-m-1\",\r\n \"name\": \"zeiny-atlas-c-0-1-m-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.143.83.159\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aab97b7e-a2ff-4402-93e5-55a6a6ff68c1\",\r\n \"fqdn\": \"aab97b7e-a2ff-4402-93e5-55a6a6ff68c1.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-2-m-0-1\",\r\n \"name\": \"zeiny-atlas-c-0-2-m-0-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"309ec2a2-68de-4956-a58e-5a3affa6aed9\",\r\n \"fqdn\": \"309ec2a2-68de-4956-a58e-5a3affa6aed9.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-2-m-0-2\",\r\n \"name\": \"zeiny-atlas-c-0-2-m-0-2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"5d2ce3ee-ef2f-44fd-8610-f8306a52a831\",\r\n \"fqdn\": \"5d2ce3ee-ef2f-44fd-8610-f8306a52a831.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-2-m-0-3\",\r\n \"name\": \"zeiny-atlas-c-0-2-m-0-3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.137.103.41\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"0274c1ed-5e4c-43a4-aa98-fae592fdf379\",\r\n \"fqdn\": \"0274c1ed-5e4c-43a4-aa98-fae592fdf379.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-2-m-0-4\",\r\n \"name\": \"zeiny-atlas-c-0-2-m-0-4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.99.156\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"2674483c-526d-41a6-962b-5f0aa2777064\",\r\n \"fqdn\": \"2674483c-526d-41a6-962b-5f0aa2777064.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-2-m-0-5\",\r\n \"name\": \"zeiny-atlas-c-0-2-m-0-5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.91.86.190\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"37d84d50-56a1-4888-b2fc-af88fe9d0ce6\",\r\n \"fqdn\": \"37d84d50-56a1-4888-b2fc-af88fe9d0ce6.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-2-m-0-6\",\r\n \"name\": \"zeiny-atlas-c-0-2-m-0-6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"2dcc98ab-2339-402f-a047-fb99c77d9fa2\",\r\n \"fqdn\": \"2dcc98ab-2339-402f-a047-fb99c77d9fa2.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-2-m-0-7\",\r\n \"name\": \"zeiny-atlas-c-0-2-m-0-7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"f49d994e-022e-4634-8574-575633e1cc0d\",\r\n \"fqdn\": \"f49d994e-022e-4634-8574-575633e1cc0d.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-2-m-0-8\",\r\n \"name\": \"zeiny-atlas-c-0-2-m-0-8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"3fb23e98-ecaa-4ba8-aa98-088a70aec657\",\r\n \"fqdn\": \"3fb23e98-ecaa-4ba8-aa98-088a70aec657.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-2-m-0-9\",\r\n \"name\": \"zeiny-atlas-c-0-2-m-0-9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"83c3d5af-b7e1-4676-afe9-d6863bfd2bf6\",\r\n \"fqdn\": \"83c3d5af-b7e1-4676-afe9-d6863bfd2bf6.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-2-m-1\",\r\n \"name\": \"zeiny-atlas-c-0-2-m-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.101.203\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"c86136f6-dbcd-4888-9faa-1a9ed2aef9f4\",\r\n \"fqdn\": \"c86136f6-dbcd-4888-9faa-1a9ed2aef9f4.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-3-m-0-1\",\r\n \"name\": \"zeiny-atlas-c-0-3-m-0-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.143.91.186\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"4707ef67-12ee-4c7e-99d7-3585d22d8a63\",\r\n \"fqdn\": \"4707ef67-12ee-4c7e-99d7-3585d22d8a63.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-3-m-0-2\",\r\n \"name\": \"zeiny-atlas-c-0-3-m-0-2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"0651891f-b115-46cc-86bb-e7e316c0263c\",\r\n \"fqdn\": \"0651891f-b115-46cc-86bb-e7e316c0263c.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-3-m-0-3\",\r\n \"name\": \"zeiny-atlas-c-0-3-m-0-3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.91.112.45\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"cd041fec-33b1-470a-b95f-08f189127c8a\",\r\n \"fqdn\": \"cd041fec-33b1-470a-b95f-08f189127c8a.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-3-m-0-4\",\r\n \"name\": \"zeiny-atlas-c-0-3-m-0-4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"310c2942-5815-4b4d-92ca-a2519cc6c65f\",\r\n \"fqdn\": \"310c2942-5815-4b4d-92ca-a2519cc6c65f.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-3-m-0-5\",\r\n \"name\": \"zeiny-atlas-c-0-3-m-0-5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.143.88.215\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"226b0075-2c1b-4fbe-a1fd-f7de965c71be\",\r\n \"fqdn\": \"226b0075-2c1b-4fbe-a1fd-f7de965c71be.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-3-m-0-6\",\r\n \"name\": \"zeiny-atlas-c-0-3-m-0-6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.143.79.179\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"fd851301-e544-4a5a-9222-922bdb38b167\",\r\n \"fqdn\": \"fd851301-e544-4a5a-9222-922bdb38b167.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-3-m-0-7\",\r\n \"name\": \"zeiny-atlas-c-0-3-m-0-7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.149.55.199\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"42e78148-b4f6-4f7d-b636-1ff2125647ab\",\r\n \"fqdn\": \"42e78148-b4f6-4f7d-b636-1ff2125647ab.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-3-m-0-8\",\r\n \"name\": \"zeiny-atlas-c-0-3-m-0-8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"785ea9dd-855b-4c2b-a19b-88a7dd812a3d\",\r\n \"fqdn\": \"785ea9dd-855b-4c2b-a19b-88a7dd812a3d.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-3-m-0-9\",\r\n \"name\": \"zeiny-atlas-c-0-3-m-0-9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"7e9dea05-0f3f-4570-8cd7-ec6b7abe2789\",\r\n \"fqdn\": \"7e9dea05-0f3f-4570-8cd7-ec6b7abe2789.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-3-m-1\",\r\n \"name\": \"zeiny-atlas-c-0-3-m-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.95.170\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"764bba68-2299-456f-8773-57ccf5ff3f97\",\r\n \"fqdn\": \"764bba68-2299-456f-8773-57ccf5ff3f97.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-4-m-0-1\",\r\n \"name\": \"zeiny-atlas-c-0-4-m-0-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.148.165.39\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"4db7cc9f-dcf9-45e9-b44b-4b760c432eb3\",\r\n \"fqdn\": \"4db7cc9f-dcf9-45e9-b44b-4b760c432eb3.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-4-m-0-2\",\r\n \"name\": \"zeiny-atlas-c-0-4-m-0-2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.148.167.128\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"5a99797a-f378-4474-aee9-93c91dd7bfac\",\r\n \"fqdn\": \"5a99797a-f378-4474-aee9-93c91dd7bfac.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-4-m-0-3\",\r\n \"name\": \"zeiny-atlas-c-0-4-m-0-3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.250.39.59\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"145bd87b-a130-4357-8345-285f0e12ea4e\",\r\n \"fqdn\": \"145bd87b-a130-4357-8345-285f0e12ea4e.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-4-m-0-4\",\r\n \"name\": \"zeiny-atlas-c-0-4-m-0-4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"51ee4231-0028-406a-9a05-f4e3ea7be02d\",\r\n \"fqdn\": \"51ee4231-0028-406a-9a05-f4e3ea7be02d.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-4-m-0-5\",\r\n \"name\": \"zeiny-atlas-c-0-4-m-0-5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.151.9\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"687ebf9b-378b-4f1f-adcb-b68d54986347\",\r\n \"fqdn\": \"687ebf9b-378b-4f1f-adcb-b68d54986347.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-4-m-0-6\",\r\n \"name\": \"zeiny-atlas-c-0-4-m-0-6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"9aafd824-cbdd-4f5c-abaa-2d9c069e9151\",\r\n \"fqdn\": \"9aafd824-cbdd-4f5c-abaa-2d9c069e9151.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-4-m-0-7\",\r\n \"name\": \"zeiny-atlas-c-0-4-m-0-7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"9bcf1fb9-5c9f-4ede-a4d6-42556491dbb1\",\r\n \"fqdn\": \"9bcf1fb9-5c9f-4ede-a4d6-42556491dbb1.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-4-m-0-8\",\r\n \"name\": \"zeiny-atlas-c-0-4-m-0-8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.149.30.102\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"2c84558b-8b64-4b69-bf1d-4807e6ceca13\",\r\n \"fqdn\": \"2c84558b-8b64-4b69-bf1d-4807e6ceca13.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-4-m-0-9\",\r\n \"name\": \"zeiny-atlas-c-0-4-m-0-9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"367439de-4ea8-4517-b916-ea6d9531f268\",\r\n \"fqdn\": \"367439de-4ea8-4517-b916-ea6d9531f268.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-4-m-1\",\r\n \"name\": \"zeiny-atlas-c-0-4-m-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"43477b5f-072d-4385-a760-e67b03723512\",\r\n \"fqdn\": \"43477b5f-072d-4385-a760-e67b03723512.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-5-m-0-1\",\r\n \"name\": \"zeiny-atlas-c-0-5-m-0-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"df655a73-ac33-45fb-849f-a747869c6a53\",\r\n \"fqdn\": \"df655a73-ac33-45fb-849f-a747869c6a53.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-5-m-0-2\",\r\n \"name\": \"zeiny-atlas-c-0-5-m-0-2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"a65ea22d-1824-4b2e-8e1a-78e2bf312c3e\",\r\n \"fqdn\": \"a65ea22d-1824-4b2e-8e1a-78e2bf312c3e.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-5-m-0-3\",\r\n \"name\": \"zeiny-atlas-c-0-5-m-0-3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"110e68b5-d422-4c4b-baeb-fac90084618d\",\r\n \"fqdn\": \"110e68b5-d422-4c4b-baeb-fac90084618d.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-5-m-0-4\",\r\n \"name\": \"zeiny-atlas-c-0-5-m-0-4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"6b1257dd-06d3-4434-aaad-1961be490934\",\r\n \"fqdn\": \"6b1257dd-06d3-4434-aaad-1961be490934.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-5-m-0-5\",\r\n \"name\": \"zeiny-atlas-c-0-5-m-0-5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.97.214\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"36f56218-c531-4069-93e2-cfe5fb801578\",\r\n \"fqdn\": \"36f56218-c531-4069-93e2-cfe5fb801578.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-5-m-0-6\",\r\n \"name\": \"zeiny-atlas-c-0-5-m-0-6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"1fbc4049-1ed9-42af-8b0f-a68b1d5d04e2\",\r\n \"fqdn\": \"1fbc4049-1ed9-42af-8b0f-a68b1d5d04e2.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-5-m-0-7\",\r\n \"name\": \"zeiny-atlas-c-0-5-m-0-7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.99.213\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"953e2998-bbd3-4dac-ae38-2797e18ab597\",\r\n \"fqdn\": \"953e2998-bbd3-4dac-ae38-2797e18ab597.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-5-m-0-8\",\r\n \"name\": \"zeiny-atlas-c-0-5-m-0-8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"e885e485-20ea-49b2-954b-b5acc3c61112\",\r\n \"fqdn\": \"e885e485-20ea-49b2-954b-b5acc3c61112.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-5-m-0-9\",\r\n \"name\": \"zeiny-atlas-c-0-5-m-0-9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"78cdf3e8-c0ca-49bc-99c0-3cc341ed8970\",\r\n \"fqdn\": \"78cdf3e8-c0ca-49bc-99c0-3cc341ed8970.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-5-m-1\",\r\n \"name\": \"zeiny-atlas-c-0-5-m-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.102.20\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"2334cda1-53c7-40a0-aa31-e97f218fcaa1\",\r\n \"fqdn\": \"2334cda1-53c7-40a0-aa31-e97f218fcaa1.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-6-m-0-1\",\r\n \"name\": \"zeiny-atlas-c-0-6-m-0-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.143.82.141\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"05fed832-790f-4fb2-bd56-f163b0d45a26\",\r\n \"fqdn\": \"05fed832-790f-4fb2-bd56-f163b0d45a26.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-6-m-0-2\",\r\n \"name\": \"zeiny-atlas-c-0-6-m-0-2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"84a4036d-e4d4-4568-b284-e19417dcffa9\",\r\n \"fqdn\": \"84a4036d-e4d4-4568-b284-e19417dcffa9.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-6-m-0-3\",\r\n \"name\": \"zeiny-atlas-c-0-6-m-0-3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.144.60\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"1ba89334-4871-4725-8693-27d44683aa4a\",\r\n \"fqdn\": \"1ba89334-4871-4725-8693-27d44683aa4a.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-6-m-0-4\",\r\n \"name\": \"zeiny-atlas-c-0-6-m-0-4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.99.59\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"bce763a0-74d7-47f9-a431-6e914fc65049\",\r\n \"fqdn\": \"bce763a0-74d7-47f9-a431-6e914fc65049.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-6-m-0-5\",\r\n \"name\": \"zeiny-atlas-c-0-6-m-0-5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"d6d3ac9f-f576-4aa6-b7c5-4124157da4ab\",\r\n \"fqdn\": \"d6d3ac9f-f576-4aa6-b7c5-4124157da4ab.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-6-m-0-6\",\r\n \"name\": \"zeiny-atlas-c-0-6-m-0-6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"e38e7af0-b15c-4321-8c30-fbf0d5eedd6d\",\r\n \"fqdn\": \"e38e7af0-b15c-4321-8c30-fbf0d5eedd6d.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-6-m-0-7\",\r\n \"name\": \"zeiny-atlas-c-0-6-m-0-7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.94.78\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"ce0f8e9b-daf4-403c-880d-947d8cb820d0\",\r\n \"fqdn\": \"ce0f8e9b-daf4-403c-880d-947d8cb820d0.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-6-m-0-8\",\r\n \"name\": \"zeiny-atlas-c-0-6-m-0-8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.250.27.9\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"c844175d-e8a8-4f2e-a8b7-893a7ea0aa75\",\r\n \"fqdn\": \"c844175d-e8a8-4f2e-a8b7-893a7ea0aa75.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-6-m-0-9\",\r\n \"name\": \"zeiny-atlas-c-0-6-m-0-9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.6\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"b4190bbf-862d-4c21-9d04-eaec080ef95c\",\r\n \"fqdn\": \"b4190bbf-862d-4c21-9d04-eaec080ef95c.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-6-m-1\",\r\n \"name\": \"zeiny-atlas-c-0-6-m-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.102.16\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acb529eb-6478-4ec2-8591-0308aa8ce1e8\",\r\n \"fqdn\": \"acb529eb-6478-4ec2-8591-0308aa8ce1e8.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-7-m-0-1\",\r\n \"name\": \"zeiny-atlas-c-0-7-m-0-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.143.82.41\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"07e7dd0a-16c3-4184-a612-154bca243f1c\",\r\n \"fqdn\": \"07e7dd0a-16c3-4184-a612-154bca243f1c.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-7-m-0-2\",\r\n \"name\": \"zeiny-atlas-c-0-7-m-0-2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"ac7d5f49-59d2-4c46-b02a-ec5d5f4a3879\",\r\n \"fqdn\": \"ac7d5f49-59d2-4c46-b02a-ec5d5f4a3879.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-7-m-0-3\",\r\n \"name\": \"zeiny-atlas-c-0-7-m-0-3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.149.56.35\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"5948a5c4-4d7a-4dd2-a6b6-41c534b99494\",\r\n \"fqdn\": \"5948a5c4-4d7a-4dd2-a6b6-41c534b99494.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-7-m-0-4\",\r\n \"name\": \"zeiny-atlas-c-0-7-m-0-4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.250.27.128\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"25d3cbde-b37e-4e19-afb4-2d0b40fe3550\",\r\n \"fqdn\": \"25d3cbde-b37e-4e19-afb4-2d0b40fe3550.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-7-m-0-5\",\r\n \"name\": \"zeiny-atlas-c-0-7-m-0-5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"e2cfbe37-48a1-4b07-9206-f452ee55d5aa\",\r\n \"fqdn\": \"e2cfbe37-48a1-4b07-9206-f452ee55d5aa.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-7-m-0-6\",\r\n \"name\": \"zeiny-atlas-c-0-7-m-0-6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"80c9c55f-2a7c-4c36-98c7-a9ad3adb9c68\",\r\n \"fqdn\": \"80c9c55f-2a7c-4c36-98c7-a9ad3adb9c68.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-7-m-0-7\",\r\n \"name\": \"zeiny-atlas-c-0-7-m-0-7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"8eacd2f6-c48f-4682-b5bb-60d9ca0dde79\",\r\n \"fqdn\": \"8eacd2f6-c48f-4682-b5bb-60d9ca0dde79.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-7-m-0-8\",\r\n \"name\": \"zeiny-atlas-c-0-7-m-0-8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"ea27434c-1239-48b3-aca7-04937f56fd34\",\r\n \"fqdn\": \"ea27434c-1239-48b3-aca7-04937f56fd34.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-7-m-0-9\",\r\n \"name\": \"zeiny-atlas-c-0-7-m-0-9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.7\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"8f73adf3-edbf-4cce-b8a7-d88ee98bb957\",\r\n \"fqdn\": \"8f73adf3-edbf-4cce-b8a7-d88ee98bb957.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-7-m-1\",\r\n \"name\": \"zeiny-atlas-c-0-7-m-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.145.33\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"a8b0b952-5ebd-48be-9dc6-52d15b5ed1db\",\r\n \"fqdn\": \"a8b0b952-5ebd-48be-9dc6-52d15b5ed1db.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-8-m-0-1\",\r\n \"name\": \"zeiny-atlas-c-0-8-m-0-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.145.65\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"c5715733-147c-45e5-8613-38c9fc547972\",\r\n \"fqdn\": \"c5715733-147c-45e5-8613-38c9fc547972.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-8-m-0-2\",\r\n \"name\": \"zeiny-atlas-c-0-8-m-0-2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.250.27.167\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"bdf3c2c4-62a9-43f7-8c64-e461bad8d5f0\",\r\n \"fqdn\": \"bdf3c2c4-62a9-43f7-8c64-e461bad8d5f0.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-8-m-0-3\",\r\n \"name\": \"zeiny-atlas-c-0-8-m-0-3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"35e54657-0ee8-422f-9f81-6da4dec84c8a\",\r\n \"fqdn\": \"35e54657-0ee8-422f-9f81-6da4dec84c8a.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-8-m-0-4\",\r\n \"name\": \"zeiny-atlas-c-0-8-m-0-4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"b6f11811-3fd0-4d58-be36-d7a13f741cff\",\r\n \"fqdn\": \"b6f11811-3fd0-4d58-be36-d7a13f741cff.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-8-m-0-5\",\r\n \"name\": \"zeiny-atlas-c-0-8-m-0-5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.146.204\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"0e99dfc9-3b3f-4da9-9210-35985f351252\",\r\n \"fqdn\": \"0e99dfc9-3b3f-4da9-9210-35985f351252.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-8-m-0-6\",\r\n \"name\": \"zeiny-atlas-c-0-8-m-0-6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"cc984682-94b8-4446-9660-3fe9539300de\",\r\n \"fqdn\": \"cc984682-94b8-4446-9660-3fe9539300de.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-8-m-0-7\",\r\n \"name\": \"zeiny-atlas-c-0-8-m-0-7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.149.24.244\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"2b06cc6a-e923-4280-81cf-a95a17c84c9e\",\r\n \"fqdn\": \"2b06cc6a-e923-4280-81cf-a95a17c84c9e.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-8-m-0-8\",\r\n \"name\": \"zeiny-atlas-c-0-8-m-0-8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"8588b777-a54c-43e5-84ff-f5693cffc731\",\r\n \"fqdn\": \"8588b777-a54c-43e5-84ff-f5693cffc731.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-8-m-0-9\",\r\n \"name\": \"zeiny-atlas-c-0-8-m-0-9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.8\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"238c4913-4679-4580-ab5a-bbf6cf251307\",\r\n \"fqdn\": \"238c4913-4679-4580-ab5a-bbf6cf251307.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-8-m-1\",\r\n \"name\": \"zeiny-atlas-c-0-8-m-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"a6485feb-aae0-4a70-8778-2b22a2476c46\",\r\n \"fqdn\": \"a6485feb-aae0-4a70-8778-2b22a2476c46.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-9-m-0-1\",\r\n \"name\": \"zeiny-atlas-c-0-9-m-0-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"78abc5e3-c661-4a03-9cd3-9d96dfd1bc9a\",\r\n \"fqdn\": \"78abc5e3-c661-4a03-9cd3-9d96dfd1bc9a.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-9-m-0-2\",\r\n \"name\": \"zeiny-atlas-c-0-9-m-0-2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.146.12\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"1b0ed763-a639-492c-b991-ef1c53990b83\",\r\n \"fqdn\": \"1b0ed763-a639-492c-b991-ef1c53990b83.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-9-m-0-3\",\r\n \"name\": \"zeiny-atlas-c-0-9-m-0-3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"064cbc8f-5671-4990-b5e3-a2572e992af3\",\r\n \"fqdn\": \"064cbc8f-5671-4990-b5e3-a2572e992af3.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-9-m-0-4\",\r\n \"name\": \"zeiny-atlas-c-0-9-m-0-4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"77d02073-5278-4d1b-adaa-667839be3263\",\r\n \"fqdn\": \"77d02073-5278-4d1b-adaa-667839be3263.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-9-m-0-5\",\r\n \"name\": \"zeiny-atlas-c-0-9-m-0-5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"fd8a7ad7-5df0-4443-a052-974bce0afb3e\",\r\n \"fqdn\": \"fd8a7ad7-5df0-4443-a052-974bce0afb3e.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-9-m-0-6\",\r\n \"name\": \"zeiny-atlas-c-0-9-m-0-6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.137.100.64\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"320282d2-9dac-4cac-8bda-33c1006929ae\",\r\n \"fqdn\": \"320282d2-9dac-4cac-8bda-33c1006929ae.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-9-m-0-7\",\r\n \"name\": \"zeiny-atlas-c-0-9-m-0-7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.95.183\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"a536064b-8cb5-4f48-a339-daa58847edfe\",\r\n \"fqdn\": \"a536064b-8cb5-4f48-a339-daa58847edfe.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-9-m-0-8\",\r\n \"name\": \"zeiny-atlas-c-0-9-m-0-8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"02926d10-d23f-43e1-b972-1d4dabb5ae69\",\r\n \"fqdn\": \"02926d10-d23f-43e1-b972-1d4dabb5ae69.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-9-m-0-9\",\r\n \"name\": \"zeiny-atlas-c-0-9-m-0-9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 0.9\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"51.143.52.155\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"6dc13472-8384-4244-acbe-24962b6b3121\",\r\n \"fqdn\": \"6dc13472-8384-4244-acbe-24962b6b3121.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-0-9-m-1\",\r\n \"name\": \"zeiny-atlas-c-0-9-m-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"7ff7c776-0707-4a30-aee8-a8691269cb84\",\r\n \"fqdn\": \"7ff7c776-0707-4a30-aee8-a8691269cb84.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-1-m-0-1\",\r\n \"name\": \"zeiny-atlas-c-1-m-0-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.91.118.142\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"568f0cd0-6010-400c-ba3c-914360658d43\",\r\n \"fqdn\": \"568f0cd0-6010-400c-ba3c-914360658d43.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-1-m-0-2\",\r\n \"name\": \"zeiny-atlas-c-1-m-0-2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.3,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.102.54\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"ff39df7d-c46b-46c7-a4af-1b0686cf1634\",\r\n \"fqdn\": \"ff39df7d-c46b-46c7-a4af-1b0686cf1634.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-1-m-0-3\",\r\n \"name\": \"zeiny-atlas-c-1-m-0-3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"b5e15c6f-1f11-4d97-9717-175fc53ff952\",\r\n \"fqdn\": \"b5e15c6f-1f11-4d97-9717-175fc53ff952.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-1-m-0-4\",\r\n \"name\": \"zeiny-atlas-c-1-m-0-4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.143.95.88\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"13ac2ed8-b55a-4f30-bce3-98628d195c51\",\r\n \"fqdn\": \"13ac2ed8-b55a-4f30-bce3-98628d195c51.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-1-m-0-5\",\r\n \"name\": \"zeiny-atlas-c-1-m-0-5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.6,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"5c15e74a-b2e2-4783-b4db-ab9a783b6e94\",\r\n \"fqdn\": \"5c15e74a-b2e2-4783-b4db-ab9a783b6e94.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-1-m-0-6\",\r\n \"name\": \"zeiny-atlas-c-1-m-0-6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.7,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"5aabc736-a9c6-4984-badd-24d4e4fcba50\",\r\n \"fqdn\": \"5aabc736-a9c6-4984-badd-24d4e4fcba50.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-1-m-0-7\",\r\n \"name\": \"zeiny-atlas-c-1-m-0-7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.8,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"3cb55ad3-e87a-4f6f-8426-bc2ac69d4bee\",\r\n \"fqdn\": \"3cb55ad3-e87a-4f6f-8426-bc2ac69d4bee.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-1-m-0-8\",\r\n \"name\": \"zeiny-atlas-c-1-m-0-8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.9,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"bf79c941-8d2e-444c-99e0-7b5d754ba8e7\",\r\n \"fqdn\": \"bf79c941-8d2e-444c-99e0-7b5d754ba8e7.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-1-m-0-9\",\r\n \"name\": \"zeiny-atlas-c-1-m-0-9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"997ef5da-ff06-4ee4-9d67-b439b4569f81\",\r\n \"fqdn\": \"997ef5da-ff06-4ee4-9d67-b439b4569f81.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-e30e13d4-6ed8-460c-84a5-e42bb9f86120/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c-1-m-1\",\r\n \"name\": \"zeiny-atlas-c-1-m-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"7c075a5a-4ed6-4b02-9173-abbc1b4907a3\",\r\n \"fqdn\": \"7c075a5a-4ed6-4b02-9173-abbc1b4907a3.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/perf-f6b2a6a5-594a-4e50-8ee6-c88a8b89f823/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-7c075a5a-4ed6-4b02-9173-abbc1b4907a3\",\r\n \"name\": \"zeiny-atlas-7c075a5a-4ed6-4b02-9173-abbc1b4907a3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/meshidentitytestapplication:aci\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.250.38.102\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"principalId\": \"5dc70021-b90c-413b-aa0b-d69f94eeb3b3\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned, UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637220490250329510/providers/Microsoft.ContainerInstance/containerGroups/msi-centraluseuap-637220490250329510\",\r\n \"name\": \"msi-centraluseuap-637220490250329510\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/sbz-helloworld:1.0-alpine\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637226501983553166/providers/Microsoft.ContainerInstance/containerGroups/exec-centraluseuap-637226501983553166\",\r\n \"name\": \"exec-centraluseuap-637226501983553166\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"fail-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnfailthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"success-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637226601692928847/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-centraluseuap-637226601692928847\",\r\n \"name\": \"restartpolicy-centraluseuap-637226601692928847\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessinstant\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637230668854644910/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-centraluseuap-637230668854644910\",\r\n \"name\": \"restartpolicy-centraluseuap-637230668854644910\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637236024007715180/providers/Microsoft.ContainerInstance/containerGroups/diff1-centraluseuap-637236024007715180\",\r\n \"name\": \"diff1-centraluseuap-637236024007715180\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637236024007715180/providers/Microsoft.ContainerInstance/containerGroups/diff2-centraluseuap-637236024007715180\",\r\n \"name\": \"diff2-centraluseuap-637236024007715180\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/meshidentitytestapplication:aci\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-3\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnfailthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637267162717010400/providers/Microsoft.ContainerInstance/containerGroups/diff1-centraluseuap-637267162717010400\",\r\n \"name\": \"diff1-centraluseuap-637267162717010400\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/meshidentitytestapplication:aci\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-3\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnfailthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.89.59.38\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637267162717010400/providers/Microsoft.ContainerInstance/containerGroups/diff2-centraluseuap-637267162717010400\",\r\n \"name\": \"diff2-centraluseuap-637267162717010400\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"cp\",\r\n \"/files/src637279972508031042.txt\",\r\n \"/files/dst637279972508031042.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"azureFile\": {\r\n \"shareName\": \"sbzend2end-linux-637279972508031042\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637279972508031042/providers/Microsoft.ContainerInstance/containerGroups/azf-centraluseuap-637279972508031042\",\r\n \"name\": \"azf-centraluseuap-637279972508031042\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"cp\",\r\n \"/files/src637279972972647924.txt\",\r\n \"/files/dst637279972972647924.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"azureFile\": {\r\n \"shareName\": \"sbzend2end-linux-637279972972647924\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637279972972647924/providers/Microsoft.ContainerInstance/containerGroups/azf-centraluseuap-637279972972647924\",\r\n \"name\": \"azf-centraluseuap-637279972972647924\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"cp\",\r\n \"/etc/hosts\",\r\n \"/files/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 60;cat /otherfiles/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637279975594454139/providers/Microsoft.ContainerInstance/containerGroups/azf-centraluseuap-637279975594454139\",\r\n \"name\": \"azf-centraluseuap-637279975594454139\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 10;cat /etc/hosts\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/aci/infra:master_20190628.2\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"/mount_azure_file.sh\"\r\n ],\r\n \"environmentVariables\": []\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637280643116176471/providers/Microsoft.ContainerInstance/containerGroups/azf-centraluseuap-637280643116176471\",\r\n \"name\": \"azf-centraluseuap-637280643116176471\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 10;cat /etc/hosts\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/aci/infra:master_20190628.2\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"/mount_azure_file.sh;ls /mount/azurefile/mnt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"AZURE_FILE_ENDPOINT\",\r\n \"value\": \"//zeinysa.file.core.windows.net/fs1\"\r\n },\r\n {\r\n \"name\": \"AZURE_STORAGE_ACCOUNT_NAME\",\r\n \"value\": \"zeinysa\"\r\n },\r\n {\r\n \"name\": \"AZURE_STORAGE_ACCOUNT_KEY\",\r\n \"value\": \"wvBLfPAndC1jvEAD8IsCFp8vK5HixMsunHO1BsAr3kl/9lNQwWGz2PxxSsIZqipcH0h6WEY4QkGNUxhQ6riA+A==\"\r\n },\r\n {\r\n \"name\": \"MOUNT_POINT\",\r\n \"value\": \"/mount/azurefile/mnt\"\r\n },\r\n {\r\n \"name\": \"MOUNT_DIR_MODE\",\r\n \"value\": \"0777\"\r\n },\r\n {\r\n \"name\": \"MOUNT_FILE_MODE\",\r\n \"value\": \"0777\"\r\n },\r\n {\r\n \"name\": \"MOUNT_ACCESS_MODE\",\r\n \"value\": \"rw\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637280657535566392/providers/Microsoft.ContainerInstance/containerGroups/azf-centraluseuap-637280657535566392\",\r\n \"name\": \"azf-centraluseuap-637280657535566392\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 10;cat /etc/hosts\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/aci/infra:master_20190628.2\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"/mount_azure_file.sh;ls\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"AZURE_FILE_ENDPOINT\",\r\n \"value\": \"//zeinysa.file.core.windows.net/fs1\"\r\n },\r\n {\r\n \"name\": \"MOUNT_POINT\",\r\n \"value\": \"/mount/azurefile/mnt\"\r\n },\r\n {\r\n \"name\": \"MOUNT_DIR_MODE\",\r\n \"value\": \"0777\"\r\n },\r\n {\r\n \"name\": \"MOUNT_FILE_MODE\",\r\n \"value\": \"0777\"\r\n },\r\n {\r\n \"name\": \"MOUNT_ACCESS_MODE\",\r\n \"value\": \"rw\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637280660252709457/providers/Microsoft.ContainerInstance/containerGroups/azf-centraluseuap-637280660252709457\",\r\n \"name\": \"azf-centraluseuap-637280660252709457\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 10;cat /etc/hosts\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/aci/infra:master_20190628.2\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"/mount_azure_file.sh\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"AZURE_FILE_ENDPOINT\",\r\n \"value\": \"//zeinysa.file.core.windows.net/fs1\"\r\n },\r\n {\r\n \"name\": \"AZURE_STORAGE_ACCOUNT_NAME\",\r\n \"value\": \"zeinysa\"\r\n },\r\n {\r\n \"name\": \"AZURE_STORAGE_ACCOUNT_KEY\",\r\n \"value\": \"wvBLfPAndC1jvEAD8IsCFp8vK5HixMsunHO1BsAr3kl/9lNQwWGz2PxxSsIZqipcH0h6WEY4QkGNUxhQ6riA+A==\"\r\n },\r\n {\r\n \"name\": \"MOUNT_POINT\",\r\n \"value\": \"/mount/azurefile/mnt\"\r\n },\r\n {\r\n \"name\": \"MOUNT_DIR_MODE\",\r\n \"value\": \"0777\"\r\n },\r\n {\r\n \"name\": \"MOUNT_FILE_MODE\",\r\n \"value\": \"0777\"\r\n },\r\n {\r\n \"name\": \"MOUNT_ACCESS_MODE\",\r\n \"value\": \"rw\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637280666201455914/providers/Microsoft.ContainerInstance/containerGroups/azf-centraluseuap-637280666201455914\",\r\n \"name\": \"azf-centraluseuap-637280666201455914\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"cp\",\r\n \"/files/src637280685132961339.txt\",\r\n \"/files/dst637280685132961339.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"azureFile\": {\r\n \"shareName\": \"sbzend2end-linux-637280685132961339\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637280685132961339/providers/Microsoft.ContainerInstance/containerGroups/azf-centraluseuap-637280685132961339\",\r\n \"name\": \"azf-centraluseuap-637280685132961339\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"cp\",\r\n \"/files/src637280788350120984.txt\",\r\n \"/files/dst637280788350120984.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"a\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"a\",\r\n \"azureFile\": {\r\n \"shareName\": \"sbzend2end-linux-637280788350120984\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637280788350120984/providers/Microsoft.ContainerInstance/containerGroups/azf-centraluseuap-637280788350120984\",\r\n \"name\": \"azf-centraluseuap-637280788350120984\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 10;cat /etc/hosts\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/aci/infra:master_20190628.2\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"/mount_azure_file.sh\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"AZURE_FILE_ENDPOINT\",\r\n \"value\": \"//sbzend2endstorage.file.core.windows.net/sbzend2end-linux-637280899368424771\"\r\n },\r\n {\r\n \"name\": \"AZURE_STORAGE_ACCOUNT_NAME\",\r\n \"value\": \"sbzend2endstorage\"\r\n },\r\n {\r\n \"name\": \"AZURE_STORAGE_ACCOUNT_KEY\",\r\n \"value\": \"0wW9UtxcRJSCZJ/A4FoltSH7ummcbgODvfFdrwHs0aR4mNYwQmiCQAT/xISX3t86g+3SoiM9l7xSW1msN3h7tQ==\"\r\n },\r\n {\r\n \"name\": \"MOUNT_POINT\",\r\n \"value\": \"/mount/azurefile/mnt\"\r\n },\r\n {\r\n \"name\": \"MOUNT_DIR_MODE\",\r\n \"value\": \"0777\"\r\n },\r\n {\r\n \"name\": \"MOUNT_FILE_MODE\",\r\n \"value\": \"0777\"\r\n },\r\n {\r\n \"name\": \"MOUNT_ACCESS_MODE\",\r\n \"value\": \"rw\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637280899368424771/providers/Microsoft.ContainerInstance/containerGroups/azf-centraluseuap-637280899368424771\",\r\n \"name\": \"azf-centraluseuap-637280899368424771\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.6\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/cnibad/providers/Microsoft.Network/networkProfiles/aci-network-profile-dumb-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/cnibad/providers/Microsoft.ContainerInstance/containerGroups/test6\",\r\n \"name\": \"test6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"EASTUS2EUAP\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/cnibad/providers/Microsoft.Network/networkProfiles/aci-network-profile-dumb-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/cnibad/providers/Microsoft.ContainerInstance/containerGroups/test7\",\r\n \"name\": \"test7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"EASTUS2EUAP\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1d48bb0b-4608-4604-b3cc-c048f4540787\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.26\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-0e7995c5-e0ff-4517-8c99-1a7a5e3ddfb6\",\r\n \"name\": \"validation-0e7995c5-e0ff-4517-8c99-1a7a5e3ddfb6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-57c4fca5-1476-46d0-a2bd-e3457ef5c618\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.32\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-1097e301-9509-4655-955a-d63f262530ab\",\r\n \"name\": \"validation-1097e301-9509-4655-955a-d63f262530ab\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-08138204-fb02-40a8-bd9a-5384309b5fa4\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.23\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-11da1db1-401b-4b0d-a049-2921057a6618\",\r\n \"name\": \"validation-11da1db1-401b-4b0d-a049-2921057a6618\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-e7fa127d-54ac-4ec0-b5b2-a2fdfc4ea579\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.59\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-13d8be44-20f5-4954-a485-9b0c5e8de5c1\",\r\n \"name\": \"validation-13d8be44-20f5-4954-a485-9b0c5e8de5c1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-210601ce-f8b9-46ae-898c-3926898dd070\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.27\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-16522900-b46e-4408-8d27-d2f8269f81b0\",\r\n \"name\": \"validation-16522900-b46e-4408-8d27-d2f8269f81b0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0ca3e0de-6860-41f2-bbc5-89e6952692ed\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.41\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-17ab66f5-1852-4860-a0e4-e75412aeb85e\",\r\n \"name\": \"validation-17ab66f5-1852-4860-a0e4-e75412aeb85e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-14838fb4-e310-46c9-9334-d2b144374c09\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.36\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-1831e87d-11ab-46b9-860a-68168d9a0263\",\r\n \"name\": \"validation-1831e87d-11ab-46b9-860a-68168d9a0263\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-14e89c80-9422-4586-9fe2-e142a34c8c25\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.33\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-1a9a1423-9103-48c5-acb7-1704bd05b9be\",\r\n \"name\": \"validation-1a9a1423-9103-48c5-acb7-1704bd05b9be\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-722aba85-07bd-4dde-85af-abea8641d042\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.58\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-33983032-b3f1-4824-a132-1a69aee4085e\",\r\n \"name\": \"validation-33983032-b3f1-4824-a132-1a69aee4085e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-20cd198e-900b-47b0-acc3-2aa7248ecb90\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.8\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-3ba74737-a1fe-4c0f-95fa-82969183da45\",\r\n \"name\": \"validation-3ba74737-a1fe-4c0f-95fa-82969183da45\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-047f1075-249b-4504-b886-7f85091741a2\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.44\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-5248f744-2e64-4c83-87ff-4de181610f16\",\r\n \"name\": \"validation-5248f744-2e64-4c83-87ff-4de181610f16\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-ca240bf2-5097-4e11-81db-4cee62496b79\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.6\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-55c545fd-0ab0-4727-b2d6-202ac1ce354e\",\r\n \"name\": \"validation-55c545fd-0ab0-4727-b2d6-202ac1ce354e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-b4ab1f14-0066-4651-beb3-28f88d5662ca\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.35\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-6b8fa669-f051-492f-891f-4105f67e4136\",\r\n \"name\": \"validation-6b8fa669-f051-492f-891f-4105f67e4136\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3ebd90bb-4f8b-4650-89c0-0a1a797519ca\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.37\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-70fcc3c2-f1af-4feb-b05e-6afe3d7fad40\",\r\n \"name\": \"validation-70fcc3c2-f1af-4feb-b05e-6afe3d7fad40\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a064309e-ffb6-4ca2-bebc-a1ab8a5bbea4\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-7432205b-edd9-4f5f-b60c-ab9abdb2eb27\",\r\n \"name\": \"validation-7432205b-edd9-4f5f-b60c-ab9abdb2eb27\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-943853a7-5aab-4895-a2cf-8efbccc01f8b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.9\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-74402227-d138-469e-8579-1f0c12ca19ed\",\r\n \"name\": \"validation-74402227-d138-469e-8579-1f0c12ca19ed\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-802344ab-109c-478f-9ac8-3f6bffd75400\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.25\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-79eab825-0b8c-422a-94f7-6e91a10bd2c5\",\r\n \"name\": \"validation-79eab825-0b8c-422a-94f7-6e91a10bd2c5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0ad843c4-a9d9-4926-80d7-40f21fc9b856\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.52\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-89b5b759-bcda-47d9-94b4-e76c15111ca7\",\r\n \"name\": \"validation-89b5b759-bcda-47d9-94b4-e76c15111ca7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-23b06f69-b5f3-40f0-b0c6-268cac3dfc01\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.39\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-89cb2156-d485-4532-97a7-93c8913609d3\",\r\n \"name\": \"validation-89cb2156-d485-4532-97a7-93c8913609d3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-cac0d576-9b49-4b82-a66f-d350a7cbf2ad\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.47\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-8d96c38e-e633-41b8-ad6e-102eb44f2316\",\r\n \"name\": \"validation-8d96c38e-e633-41b8-ad6e-102eb44f2316\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-19209d4e-84d8-4a64-a2bd-63e26f23bda7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.57\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-9463a17f-0504-4cab-8579-1d8bf17f2e60\",\r\n \"name\": \"validation-9463a17f-0504-4cab-8579-1d8bf17f2e60\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-913ee330-5e44-4ee6-9e4d-4b48047bece9\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.28\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-9692643f-ef85-460f-adad-41d638570d12\",\r\n \"name\": \"validation-9692643f-ef85-460f-adad-41d638570d12\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-b9b077ac-e298-40d1-93b0-d6d2ff6d06b8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.50\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-9c08da23-49ef-46eb-9f3a-2e601600cc6f\",\r\n \"name\": \"validation-9c08da23-49ef-46eb-9f3a-2e601600cc6f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-46c85bd1-3e0c-48dc-9c49-3575feb7487e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.43\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-9c8b26c7-7fd6-4908-a75c-010ba60dc615\",\r\n \"name\": \"validation-9c8b26c7-7fd6-4908-a75c-010ba60dc615\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3914b6b7-7e18-4ca5-8038-aaf6b849c5a3\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.53\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-a9c9e5f8-e462-438e-bf9f-6071f31f2de2\",\r\n \"name\": \"validation-a9c9e5f8-e462-438e-bf9f-6071f31f2de2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-fa53cf4b-a0fa-4b0c-b98e-9e685e6d9c29\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.48\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-b3c3b004-1e6d-4455-bec3-a2ee0dc70df8\",\r\n \"name\": \"validation-b3c3b004-1e6d-4455-bec3-a2ee0dc70df8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1f5d1521-f27c-48b5-856f-c4c3725e7a27\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.24\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-b3c51d01-1f8b-4352-9646-1af95ab44843\",\r\n \"name\": \"validation-b3c51d01-1f8b-4352-9646-1af95ab44843\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-b91ddd17-dc76-4423-a80a-281a0ea26aa1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.15\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-b757909a-ecc0-4ab6-891e-0e6a3c3ed228\",\r\n \"name\": \"validation-b757909a-ecc0-4ab6-891e-0e6a3c3ed228\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7e8d2c5d-8d0c-4743-ac90-018d2a397292\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.40\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-be44ea35-c3db-4467-8f4e-66dced4dcdcc\",\r\n \"name\": \"validation-be44ea35-c3db-4467-8f4e-66dced4dcdcc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2cd48bc1-684a-4bf5-83f0-92f45faf0915\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.55\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ca43ffb8-7e93-4ab6-b6e6-2be359634b08\",\r\n \"name\": \"validation-ca43ffb8-7e93-4ab6-b6e6-2be359634b08\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a0ab2cf3-ad63-48ac-a08d-f938a8153271\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.45\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-cbf6febc-98a4-4b8f-b4a3-03584971d92e\",\r\n \"name\": \"validation-cbf6febc-98a4-4b8f-b4a3-03584971d92e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-8eed201c-1d4a-44a5-a579-e3fb55e5b407\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.49\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-cdebec15-f05a-4be4-8472-6e9099c49e16\",\r\n \"name\": \"validation-cdebec15-f05a-4be4-8472-6e9099c49e16\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-be91c889-3cea-4a8e-9b13-c0147561c181\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.18\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-d42dfc6d-1d85-4a96-87a6-c441755e849d\",\r\n \"name\": \"validation-d42dfc6d-1d85-4a96-87a6-c441755e849d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9a62cc37-9a4d-40aa-a77c-83f1b46fb8f8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.7\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-d56a1699-085a-4aee-a019-20fc48f37c3f\",\r\n \"name\": \"validation-d56a1699-085a-4aee-a019-20fc48f37c3f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c5cee6e8-3485-4ea0-9fd3-8cb8408ff988\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-d74c86ad-dc66-403e-b130-805a86ba188d\",\r\n \"name\": \"validation-d74c86ad-dc66-403e-b130-805a86ba188d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-4b9de08c-232c-4d7a-82e0-e5cac9e7d3f6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.29\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-d9e1f64c-4533-4c8b-b06f-5b7c65e81f01\",\r\n \"name\": \"validation-d9e1f64c-4533-4c8b-b06f-5b7c65e81f01\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-d1870a7b-7e76-4d27-8713-b993d600022a\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.31\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-da251a49-34c1-4ccd-81bf-19e921c567ca\",\r\n \"name\": \"validation-da251a49-34c1-4ccd-81bf-19e921c567ca\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1db4eecc-a968-4239-b21f-9196665f77cd\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.54\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-e97f2b19-2d62-4825-b948-824079630199\",\r\n \"name\": \"validation-e97f2b19-2d62-4825-b948-824079630199\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1c6beab0-c4df-4d73-9dde-9e9c45d31fd2\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.34\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-fa93b78e-9a4c-4e3a-b939-7715d19debf7\",\r\n \"name\": \"validation-fa93b78e-9a4c-4e3a-b939-7715d19debf7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3a168898-87b1-44ca-aff7-655937ffac48\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.22\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-fd1f9fe2-9219-42ae-8219-eb4dfe220024\",\r\n \"name\": \"validation-fd1f9fe2-9219-42ae-8219-eb4dfe220024\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a856a50a-4e16-4aec-a7bb-88b81b9c7b53\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.13\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-21dd9905-9315-4d1f-9643-add0171fde59\",\r\n \"name\": \"validation-21dd9905-9315-4d1f-9643-add0171fde59\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-50d300af-67f2-4ed2-8cb8-a6231f24d561\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.10\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-22cebcff-c27e-4732-b043-4039a22323e6\",\r\n \"name\": \"validation-22cebcff-c27e-4732-b043-4039a22323e6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f9368401-0826-4d29-825f-491f4367152d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.17\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-24def123-fe23-4b6b-b973-b7964dc9bf48\",\r\n \"name\": \"validation-24def123-fe23-4b6b-b973-b7964dc9bf48\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-841fb004-6d1d-4d30-9d82-28caaee89af7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.42\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-442ae9aa-7dd5-4a19-9076-94810cabb7fa\",\r\n \"name\": \"validation-442ae9aa-7dd5-4a19-9076-94810cabb7fa\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7406cd8b-95ca-424e-bbf9-2dc1fa492660\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.38\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-8c0c6144-1c66-430e-bc15-9b3201f1f6c1\",\r\n \"name\": \"validation-8c0c6144-1c66-430e-bc15-9b3201f1f6c1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-bd8848f3-fcc6-4046-93ba-f1abe0d5913f\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.16\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-9ee2a48a-d87f-4e9f-bd53-33361463d278\",\r\n \"name\": \"validation-9ee2a48a-d87f-4e9f-bd53-33361463d278\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9ff7076a-be7c-4156-8ee9-5e119cf367b6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.14\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-ac219c9b-580f-43c5-8402-6629bdcedc73\",\r\n \"name\": \"validation-ac219c9b-580f-43c5-8402-6629bdcedc73\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f82bdcd3-1f8a-4e0c-b30c-ddb95cb758bd\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.21\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-b39e5b87-f7bf-4def-91c6-7678e69f9486\",\r\n \"name\": \"validation-b39e5b87-f7bf-4def-91c6-7678e69f9486\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-074907e5-2741-45e0-82df-690c4edc4f71\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.20\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-eed90e8d-a1a4-4524-93bd-8ba96dbfab77\",\r\n \"name\": \"validation-eed90e8d-a1a4-4524-93bd-8ba96dbfab77\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-055a7ee5-591c-44b4-b1eb-79e04aa704a3\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.19\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-f07af4cc-5d68-4b68-b0f4-a344f8ad495b\",\r\n \"name\": \"validation-f07af4cc-5d68-4b68-b0f4-a344f8ad495b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"juhacket4\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/juhacket4\",\r\n \"name\": \"juhacket4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"fluentd\",\r\n \"properties\": {\r\n \"image\": \"fluent/fluentd\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8807d057-fff3-4995-b86d-63934ab69f3b\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/loganalyticstest\",\r\n \"name\": \"loganalyticstest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"fluentd\",\r\n \"properties\": {\r\n \"image\": \"fluent/fluentd\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8807d057-fff3-4995-b86d-63934ab69f3b\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/loganalyticstestrestart\",\r\n \"name\": \"loganalyticstestrestart\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"shutdownGracePeriod\": \"PT1M\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.51\",\r\n \"type\": \"Private\"\r\n },\r\n \"timeToLive\": \"PT1H\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8807d057-fff3-4995-b86d-63934ab69f3b\"\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"4cdd4854-dab0-4c73-a167-81f6646568f0\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/logsandvnet\",\r\n \"name\": \"logsandvnet\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"execpolicytestapp\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/executionpolicytestapp:returnsuccessthreesec\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.3\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8807d057-fff3-4995-b86d-63934ab69f3b\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/restartpolicystest\",\r\n \"name\": \"restartpolicystest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"aruptonr/oomrepro:20191217075121\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.39.20.36\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/testorder/providers/Microsoft.ContainerInstance/containerGroups/test1\",\r\n \"name\": \"test1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier0eb213527c3542feb0f56ff1ef007e68ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-australiaeast-0eb213527c3542feb0f56ff1d0fe90c3a7be24d7\",\r\n \"name\": \"cgposts-australiaeast-0eb213527c3542feb0f56ff1d0fe90c3a7be24d7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier1df9e17f9df94b7c8de08bcb40392b64ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-australiaeast-1df9e17f9df94b7c8de08bcbd3a23d55fe3bb52f\",\r\n \"name\": \"cgposts-australiaeast-1df9e17f9df94b7c8de08bcbd3a23d55fe3bb52f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundchecker:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier304c4b64d68846c1819622d7c3dabb58ACILinuxConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-australiaeast-304c4b64d68846c1819622d3d206e5c96e60fa2\",\r\n \"name\": \"outbound-australiaeast-304c4b64d68846c1819622d3d206e5c96e60fa2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier4574115359d640e39b639dd24acfbedeACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-australiaeast-4574115359d640e39b639dd2c61179cd1dcd6332\",\r\n \"name\": \"cgposts-australiaeast-4574115359d640e39b639dd2c61179cd1dcd6332\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier5dcafa6eb3204080ac5b7a7aea6669adACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-australiaeast-5dcafa6eb3204080ac5b7a7a48d0aabfaf848809\",\r\n \"name\": \"cgposts-australiaeast-5dcafa6eb3204080ac5b7a7a48d0aabfaf848809\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier6d901d4bd2474adaba6c25fb0eb43295ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-australiaeast-6d901d4bd2474adaba6c25fb0eb39b66b6a36a68cc4\",\r\n \"name\": \"init-australiaeast-6d901d4bd2474adaba6c25fb0eb39b66b6a36a68cc4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundchecker:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.92.210.164\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierbd1b37c9804a47bd939594325ea57f18ACILinuxConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-australiaeast-bd1b37c9804a47bd93959439687a39b36deeb22\",\r\n \"name\": \"outbound-australiaeast-bd1b37c9804a47bd93959439687a39b36deeb22\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierdc49162d0ebf46369dab418343af3febACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-australiaeast-dc49162d0ebf46369dab41832795fd92aeee4c94\",\r\n \"name\": \"cgposts-australiaeast-dc49162d0ebf46369dab41832795fd92aeee4c94\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '3c85c603-0880-40c0-a505-59f906081e6c'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierdee25ac956584102ac8bedf4a954dae4ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-australiaeast-dee25ac956584102ac8bedf4a951037b4adab25f5ac\",\r\n \"name\": \"init-australiaeast-dee25ac956584102ac8bedf4a951037b4adab25f5ac\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/etc/hosts\",\r\n \"/files/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 60;cat /otherfiles/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere5ed8069a4094501913f791f1386363dACILinuxEmptyDirVolume/providers/Microsoft.ContainerInstance/containerGroups/emptydir-australiaeast-e5ed8069a4094501913f791fd5a4367818ffd25\",\r\n \"name\": \"emptydir-australiaeast-e5ed8069a4094501913f791fd5a4367818ffd25\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-australiaeast\",\r\n \"name\": \"heartbeatexit-atlas-australiaeast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-australiaeast\",\r\n \"name\": \"heartbeatexit-k8-australiaeast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-australiaeast\",\r\n \"name\": \"immediatecrash-atlas-australiaeast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-australiaeast\",\r\n \"name\": \"immediatecrash-k8-australiaeast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.53.173.39\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-australiaeast\",\r\n \"fqdn\": \"longrunning-atlas-australiaeast.australiaeast.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-australiaeast\",\r\n \"name\": \"longrunning-atlas-australiaeast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.92.137.162\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-australiaeast\",\r\n \"fqdn\": \"longrunning-k8-australiaeast.australiaeast.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-australiaeast\",\r\n \"name\": \"longrunning-k8-australiaeast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontaineraustraliaeast\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet2-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontaineraustraliaeast\",\r\n \"name\": \"appcontaineraustraliaeast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine1\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"yes > /dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 16.0,\r\n \"cpu\": 4.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testmetricskube\",\r\n \"name\": \"testmetricskube\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.63\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-australiaeast/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-australiaeast/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/etc/hosts\",\r\n \"/files/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 60;cat /otherfiles/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier13ae10ba725a49a497de830446faccf0ACILinuxEmptyDirVolume/providers/Microsoft.ContainerInstance/containerGroups/emptydir-australiasoutheast-13ae10ba725a49a4973267d51ea8cf8d59\",\r\n \"name\": \"emptydir-australiasoutheast-13ae10ba725a49a4973267d51ea8cf8d59\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier2a381d906af2453d8304d398080a9182ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-australiasoutheast-2a381d906af2453d830905774858d651b6f\",\r\n \"name\": \"cgposts-australiasoutheast-2a381d906af2453d830905774858d651b6f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier5f379520e06b415ab215be0d8f2895c3ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-australiasoutheast-5f379520e06b415ab21df4913a698aa6511\",\r\n \"name\": \"cgposts-australiasoutheast-5f379520e06b415ab21df4913a698aa6511\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier67b7186459eb4227b934b48724d1bf93ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-australiasoutheast-67b7186459eb4227bebde6f105fc5211f\",\r\n \"name\": \"liveprobe-australiasoutheast-67b7186459eb4227bebde6f105fc5211f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier7167838a5dd947c0819ad6aafa159912ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-australiasoutheast-7167838a5dd947c0819a17ce0237fc9cefa\",\r\n \"name\": \"cgposts-australiasoutheast-7167838a5dd947c0819a17ce0237fc9cefa\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/etc/hosts\",\r\n \"/files/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 60;cat /otherfiles/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera6aa182ef1b242419c908345c91899ccACILinuxEmptyDirVolume/providers/Microsoft.ContainerInstance/containerGroups/emptydir-australiasoutheast-a6aa182ef1b242419ce57234c03ff9695d\",\r\n \"name\": \"emptydir-australiasoutheast-a6aa182ef1b242419ce57234c03ff9695d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera72661534dd34287afd9ec03a6f17e1cACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-australiasoutheast-a72661534dd34287afdf8a8df2054bfc8d4\",\r\n \"name\": \"cgposts-australiasoutheast-a72661534dd34287afdf8a8df2054bfc8d4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"australiasoutheast-vnet-1\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.Network/networkProfiles/aci-network-profile-juhacket-vnet-australiasoutheast-juhacket-subnet-1\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/australiasoutheast-vnet-1\",\r\n \"name\": \"australiasoutheast-vnet-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"juhacket-fs1\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"mountPath\": \"/aci/logs\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"azureFile\": {\r\n \"shareName\": \"acifileshare\",\r\n \"storageAccountName\": \"juhacketfile\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/juhacket-fs1\",\r\n \"name\": \"juhacket-fs1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"juhacket-lin1\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/juhacket-lin1\",\r\n \"name\": \"juhacket-lin1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"juhacket-msi1\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/juhacketTEST/providers/Microsoft.ManagedIdentity/userAssignedIdentities/juhacketMSI\": {\r\n \"principalId\": \"7c35de51-0239-4ea9-8b17-da5c06fad37d\",\r\n \"clientId\": \"c2ccc6c2-cda8-42d9-a18b-caade3dec478\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/juhacket-msi1\",\r\n \"name\": \"juhacket-msi1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"juhacket-msi2\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"b990efec-fd93-4652-83d3-3be63545cb68\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/juhacket-msi2\",\r\n \"name\": \"juhacket-msi2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"juhacket-win5\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/powershell:7.0.0-nanoserver-1809-kb4546852-amd64\",\r\n \"command\": [\r\n \"cmd.exe\",\r\n \"/k\",\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/juhacket-win5\",\r\n \"name\": \"juhacket-win5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-australiasoutheast\",\r\n \"name\": \"heartbeatexit-atlas-australiasoutheast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-australiasoutheast\",\r\n \"name\": \"immediatecrash-atlas-australiasoutheast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.243.81.114\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-australiasoutheast\",\r\n \"fqdn\": \"longrunning-atlas-australiasoutheast.australiasoutheast.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-australiasoutheast\",\r\n \"name\": \"longrunning-atlas-australiasoutheast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-australiasoutheast/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-australiasoutheast/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"australiasoutheast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier10898d2db59546f6884aade24890fbbdACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-brazilsouth-10898d2db59546f6884aade2487d4fbc9626a95612\",\r\n \"name\": \"cgposts-brazilsouth-10898d2db59546f6884aade2487d4fbc9626a95612\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier355ee87104c64b39b489244b9c92d701ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-brazilsouth-355ee87104c64b39b489244b9c779016ea09dac1bb\",\r\n \"name\": \"cgposts-brazilsouth-355ee87104c64b39b489244b9c779016ea09dac1bb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier54a380b9640a47199a8c4b6c6b6b7cadACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-brazilsouth-54a380b9640a47199a8c4b6c6ba5a197de623003ec\",\r\n \"name\": \"cgposts-brazilsouth-54a380b9640a47199a8c4b6c6ba5a197de623003ec\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier6ab9e1da187d4a6cada7e9b2b7e41062ACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-brazilsouth-6ab9e1da187d4a6cada7e9b2b7e410dc5854d0f009a0e6\",\r\n \"name\": \"msi-brazilsouth-6ab9e1da187d4a6cada7e9b2b7e410dc5854d0f009a0e6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier72f45bfe2d2741938188887b842484e4ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-brazilsouth-72f45bfe2d2741938188887b840a96fe0c25c3eb46\",\r\n \"name\": \"cgposts-brazilsouth-72f45bfe2d2741938188887b840a96fe0c25c3eb46\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8a1112af67fe4725bedf2b456e66e00fACIWindowsContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-brazilsouth-8a1112af67fe4725bedf2b456e66e7702471248de0f28\",\r\n \"name\": \"exec-brazilsouth-8a1112af67fe4725bedf2b456e66e7702471248de0f28\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier99d8e17218964c0c9e3245ad9412c8ddACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-brazilsouth-99d8e17218964c0c9e3245ad94ec0db63c9e058f5a\",\r\n \"name\": \"cgposts-brazilsouth-99d8e17218964c0c9e3245ad94ec0db63c9e058f5a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiercf93f031d20a4db9898fe35a3bbe304bACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-brazilsouth-cf93f031d20a4db9898fe35a3bbe3026ea255156925ea3\",\r\n \"name\": \"msi-brazilsouth-cf93f031d20a4db9898fe35a3bbe3026ea255156925ea3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere9d16bdde7864e2387646c03161d4102ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-brazilsouth-e9d16bdde7864e2387646c031634e26646919ad3b5\",\r\n \"name\": \"cgposts-brazilsouth-e9d16bdde7864e2387646c031634e26646919ad3b5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-brazilsouth\",\r\n \"name\": \"heartbeatexit-atlas-brazilsouth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-brazilsouth\",\r\n \"name\": \"heartbeatexit-k8-brazilsouth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-brazilsouth\",\r\n \"name\": \"immediatecrash-atlas-brazilsouth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-brazilsouth\",\r\n \"name\": \"immediatecrash-k8-brazilsouth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.201.38.215\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-brazilsouth\",\r\n \"fqdn\": \"longrunning-atlas-brazilsouth.brazilsouth.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-brazilsouth\",\r\n \"name\": \"longrunning-atlas-brazilsouth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"191.238.135.16\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-brazilsouth\",\r\n \"fqdn\": \"longrunning-k8-brazilsouth.brazilsouth.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-brazilsouth\",\r\n \"name\": \"longrunning-k8-brazilsouth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-07-14T23:42:29.993Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-07-14T23:42:32.317Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/sbzend2end637618777243194660/providers/Microsoft.ContainerInstance/containerGroups/init-brazilsouth-637618777243194660\",\r\n \"name\": \"init-brazilsouth-637618777243194660\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-brazilsouth/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-brazilsouth/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainercanadacentral\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnetcanadacentral-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainercanadacentral\",\r\n \"name\": \"appcontainercanadacentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/publicipk8\",\r\n \"name\": \"publicipk8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.48.138.23\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testpublicipk8\",\r\n \"name\": \"testpublicipk8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/etc/hosts\",\r\n \"/files/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 60;cat /otherfiles/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier9180936794774aaba30a1817470a4b44ACILinuxEmptyDirVolume/providers/Microsoft.ContainerInstance/containerGroups/emptydir-canadaeast-9180936794774aaba30a18174724b7a97fe25d1cfe\",\r\n \"name\": \"emptydir-canadaeast-9180936794774aaba30a18174724b7a97fe25d1cfe\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"canadaeast-fs1\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"mountPath\": \"/aci/logs\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"azureFile\": {\r\n \"shareName\": \"acifileshare\",\r\n \"storageAccountName\": \"juhacketfile\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/canadaeast-fs1\",\r\n \"name\": \"canadaeast-fs1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadaeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"canadaeast-lin1\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/canadaeast-lin1\",\r\n \"name\": \"canadaeast-lin1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadaeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"canadaeast-msi1\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/juhacketTEST/providers/Microsoft.ManagedIdentity/userAssignedIdentities/juhacketMSI\": {\r\n \"principalId\": \"7c35de51-0239-4ea9-8b17-da5c06fad37d\",\r\n \"clientId\": \"c2ccc6c2-cda8-42d9-a18b-caade3dec478\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/canadaeast-msi1\",\r\n \"name\": \"canadaeast-msi1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadaeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"canadaeast-msi2\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"772317bb-6b8d-4166-a722-3f87bcaa8b09\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/canadaeast-msi2\",\r\n \"name\": \"canadaeast-msi2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadaeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"canadaeast-win5\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/powershell:7.0.0-nanoserver-1809-kb4546852-amd64\",\r\n \"command\": [\r\n \"cmd.exe\",\r\n \"/k\",\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/canadaeast-win5\",\r\n \"name\": \"canadaeast-win5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadaeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-canadaeast\",\r\n \"name\": \"heartbeatexit-atlas-canadaeast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-canadaeast\",\r\n \"name\": \"immediatecrash-atlas-canadaeast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.242.16.81\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-canadaeast\",\r\n \"fqdn\": \"longrunning-atlas-canadaeast.canadaeast.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-canadaeast\",\r\n \"name\": \"longrunning-atlas-canadaeast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"canadaeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '6e656602-af2c-4564-97e9-d2aa39be5492'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier20133cc12ceb4ebbb9854810d815e7eaACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-centralindia-20133cc12ceb4ebbb9854810d815815f18847d9bbff2\",\r\n \"name\": \"init-centralindia-20133cc12ceb4ebbb9854810d815815f18847d9bbff2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier35c7c5d9b9e648638ce55016362921d3ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-centralindia-35c7c5d9b9e648638ce550142ec73a77ccda04f\",\r\n \"name\": \"liveprobe-centralindia-35c7c5d9b9e648638ce550142ec73a77ccda04f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/files/src391c80767a7040e3a9634910e8825ed5acilinuxazurefilevolume.txt\",\r\n \"/files/dst391c80767a7040e3a9634910e8825ed5acilinuxazurefilevolume.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"azureFile\": {\r\n \"shareName\": \"sbzend2end-linux-391c80767a7040e3a9634910e88252ab0e944f321efab\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier391c80767a7040e3a9634910e8825ed5ACILinuxAzureFileVolume/providers/Microsoft.ContainerInstance/containerGroups/azf-centralindia-391c80767a7040e3a9634910e882575a13d14ae034312\",\r\n \"name\": \"azf-centralindia-391c80767a7040e3a9634910e882575a13d14ae034312\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier731ede107590401bb26a8ff9e49c7ebeACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-centralindia-731ede107590401bb26a8ff9ece83b0f84663053f\",\r\n \"name\": \"cgposts-centralindia-731ede107590401bb26a8ff9ece83b0f84663053f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier81496d8005a04034a3063a1939533a61ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-centralindia-81496d8005a04034a3063a19371462aea0cb12499\",\r\n \"name\": \"cgposts-centralindia-81496d8005a04034a3063a19371462aea0cb12499\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '0afe2c74-1d9c-4228-8308-05cda6d2677b' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.204.46.105\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"7826314882144c86a1316d5b0e6c93dd\",\r\n \"fqdn\": \"7826314882144c86a1316d5b0e6c93dd.centralindia.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier858a0301ae5144e2b19ba5a49ed4ef47ACILinuxIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-centralindia-858a0301ae5144e2b19ba5a494f5a05f4f12664eb\",\r\n \"name\": \"ingress-centralindia-858a0301ae5144e2b19ba5a494f5a05f4f12664eb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.204.64.225\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8c2d7969edfa40d28c5c5c96035e1343ACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-centralindia-8c2d7969edfa40d28c5c5c960b0adbeb8a87315d5\",\r\n \"name\": \"ingress-centralindia-8c2d7969edfa40d28c5c5c960b0adbeb8a87315d5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '1a4a54ea-0a03-44ca-a3f1-6e40d2a3e1d3' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.204.108.3\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"26c4bd8bba1e44818316eceac289edf6\",\r\n \"fqdn\": \"26c4bd8bba1e44818316eceac289edf6.centralindia.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8effdd98be5d4a4cb181424ebdaf78afACILinuxIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-centralindia-8effdd98be5d4a4cb181424eb98cb7d875a4a762c\",\r\n \"name\": \"ingress-centralindia-8effdd98be5d4a4cb181424eb98cb7d875a4a762c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '3d879cfc-12c6-44b6-ac7f-7d7c544c5d5c'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier93a03c68cb4d4dfeb2735fe9caec6b0dACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-centralindia-93a03c68cb4d4dfeb2735fe9caec066e3289b5a9a782\",\r\n \"name\": \"init-centralindia-93a03c68cb4d4dfeb2735fe9caec066e3289b5a9a782\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret1.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret2.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere95e685abc3e499d90d7f4695294cf58ACILinuxSecretVolume/providers/Microsoft.ContainerInstance/containerGroups/secvol-centralindia-e95e685abc3e499d90d7f469527a5aaf9d40494fad\",\r\n \"name\": \"secvol-centralindia-e95e685abc3e499d90d7f469527a5aaf9d40494fad\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-centralindia\",\r\n \"name\": \"heartbeatexit-atlas-centralindia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-centralindia\",\r\n \"name\": \"heartbeatexit-k8-centralindia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-centralindia\",\r\n \"name\": \"immediatecrash-atlas-centralindia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-centralindia\",\r\n \"name\": \"immediatecrash-k8-centralindia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.198.3.223\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-centralindia\",\r\n \"fqdn\": \"longrunning-atlas-centralindia.centralindia.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-centralindia\",\r\n \"name\": \"longrunning-atlas-centralindia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.198.76.170\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-centralindia\",\r\n \"fqdn\": \"longrunning-k8-centralindia.centralindia.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-centralindia\",\r\n \"name\": \"longrunning-k8-centralindia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"macolsoindiacontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/macolsorg/providers/Microsoft.Network/networkProfiles/macolsoindiacontainer-networkProfile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/macolsorg/providers/Microsoft.ContainerInstance/containerGroups/macolsoindiacontainer\",\r\n \"name\": \"macolsoindiacontainer\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-centralindia/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-centralindia/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralindia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 4 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier1bdb759617a24ee7b7e4ad97edb713d9ACIWindowsRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-centralus-1bdb759617a24ee7b7e4ad61c65a5abe2cce32\",\r\n \"name\": \"restartpolicy-centralus-1bdb759617a24ee7b7e4ad61c65a5abe2cce32\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier7e1e7456faf246ee8d061115664fb98bACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-centralus-7e1e7456faf246ee8d0611152a1c518b10a33480\",\r\n \"name\": \"escapedargs-centralus-7e1e7456faf246ee8d0611152a1c518b10a33480\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier7f7633915ce84b19ad655dae7050738fACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-centralus-7f7633915ce84b19ad655dae705058b7290c5ab14892\",\r\n \"name\": \"cgposts-centralus-7f7633915ce84b19ad655dae705058b7290c5ab14892\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.14\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"yes > /dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier9541ee5956104dea9fa6e6c21c683885ACILinuxDockerhub/providers/Microsoft.ContainerInstance/containerGroups/dockerhub-centralus-9541ee5956104dea9fa6e6c21cc8500cabc9bcfc18\",\r\n \"name\": \"dockerhub-centralus-9541ee5956104dea9fa6e6c21cc8500cabc9bcfc18\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier9aa9c7607b2041fd83cd868571c0cceaACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-centralus-9aa9c7607b2041fd83cd868571c0099537bc737dbdb0\",\r\n \"name\": \"cgposts-centralus-9aa9c7607b2041fd83cd868571c0099537bc737dbdb0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera5779bbe56cf40058d2ee3d1a734548eACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-centralus-a5779bbe56cf40058d2ee3d1a734f2698f7f62237262\",\r\n \"name\": \"cgposts-centralus-a5779bbe56cf40058d2ee3d1a734f2698f7f62237262\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifieraa1d61efc6cd410c9b9fa7c6f1ebe8b1ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-centralus-aa1d61efc6cd410c9b9fa7c6f1ebea71c6055efbc8e2\",\r\n \"name\": \"cgposts-centralus-aa1d61efc6cd410c9b9fa7c6f1ebea71c6055efbc8e2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierab7a55e6d09a4f69b5be376dda945b1fACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-centralus-ab7a55e6d09a4f69b5be376d52daa0b25bc6608c\",\r\n \"name\": \"escapedargs-centralus-ab7a55e6d09a4f69b5be376d52daa0b25bc6608c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc8a22b3ab246428d931240fff846e220ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-centralus-c8a22b3ab246428d931240fff846c90b0d1a8102248d\",\r\n \"name\": \"cgposts-centralus-c8a22b3ab246428d931240fff846c90b0d1a8102248d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere2b5a6547ad146fb84e9601d8e7acc24ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-centralus-e2b5a6547ad146fb84e9601d8e7a9ac1899a0540cac9\",\r\n \"name\": \"cgposts-centralus-e2b5a6547ad146fb84e9601d8e7a9ac1899a0540cac9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.84.252.144\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3fa5a88cdd449e1a966671b18521debACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-centralus-e3fa5a88cdd449e1a966671b1852daa1d2491a3f669c\",\r\n \"name\": \"ingress-centralus-e3fa5a88cdd449e1a966671b1852daa1d2491a3f669c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.84.220.63\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"0b413848db834767a3c7ce891a5900b0\",\r\n \"fqdn\": \"0b413848db834767a3c7ce891a5900b0.centralus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierfb7e31b9754a477caf994c2163951f99ACIWindowsIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-centralus-fb7e31b9754a477caf994c21639581ead76f98cc2578\",\r\n \"name\": \"ingress-centralus-fb7e31b9754a477caf994c21639581ead76f98cc2578\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '67705351-3f73-4c7d-ab97-efbb46f167b2'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierfe1f947c5a774d6998f382985a001375ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-centralus-fe1f947c5a774d6998f382985a0013733c292c3eff18253\",\r\n \"name\": \"init-centralus-fe1f947c5a774d6998f382985a0013733c292c3eff18253\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Updating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierfe6531e4095a4dc881fe911ea655ab7fACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-centralus-fe6531e4095a4dc881fe911ea6558eca8969480827b1\",\r\n \"name\": \"cgposts-centralus-fe6531e4095a4dc881fe911ea6558eca8969480827b1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"externalserver\",\r\n \"properties\": {\r\n \"image\": \"likevi/testserver:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"UDP\",\r\n \"port\": 6071\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"UDP\",\r\n \"port\": 6071\r\n }\r\n ],\r\n \"ip\": \"20.98.182.165\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"udptestserver\",\r\n \"fqdn\": \"udptestserver.centralus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likeviudptest2/providers/Microsoft.ContainerInstance/containerGroups/externalserver\",\r\n \"name\": \"externalserver\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-centralus\",\r\n \"name\": \"heartbeatexit-atlas-centralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-centralus\",\r\n \"name\": \"heartbeatexit-k8-centralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-centralus\",\r\n \"name\": \"immediatecrash-atlas-centralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-centralus\",\r\n \"name\": \"immediatecrash-k8-centralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.158.170.88\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-centralus\",\r\n \"fqdn\": \"longrunning-atlas-centralus.centralus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-centralus\",\r\n \"name\": \"longrunning-atlas-centralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.182.228.0\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-centralus\",\r\n \"fqdn\": \"longrunning-k8-centralus.centralus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-centralus\",\r\n \"name\": \"longrunning-k8-centralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"m716t1\",\r\n \"properties\": {\r\n \"image\": \"microsoft/aci-helloworld:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.40.245.115\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/m716t1/providers/Microsoft.ContainerInstance/containerGroups/m716t1\",\r\n \"name\": \"m716t1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainercentralus\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnetcentralus-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainercentralus\",\r\n \"name\": \"appcontainercentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-centralus/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-centralus/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier08b6656aaed242ea9c970274abded649ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastasia-08b6656aaed242ea9c970274abded8c004372b9b26fdf\",\r\n \"name\": \"cgposts-eastasia-08b6656aaed242ea9c970274abded8c004372b9b26fdf\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier33d68fa495e04a069fa8dd323b93fdb2ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastasia-33d68fa495e04a069fa8dd323b93f645b8902d8d29102\",\r\n \"name\": \"cgposts-eastasia-33d68fa495e04a069fa8dd323b93f645b8902d8d29102\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"23.98.32.200\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier3b78a34cd0cb45b2bec0d0634cef4c5dACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-eastasia-3b78a34cd0cb45b2bec0d0634cef49c78e3960ef7b37b\",\r\n \"name\": \"ingress-eastasia-3b78a34cd0cb45b2bec0d0634cef49c78e3960ef7b37b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier463ae44338ed4934a23262833d48f73cACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-eastasia-463ae44338ed4934a23262833d423a42cf938f1913e\",\r\n \"name\": \"liveprobe-eastasia-463ae44338ed4934a23262833d423a42cf938f1913e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier5bff44e589e241d99372c7c39053dc7dACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastasia-5bff44e589e241d99372c7c39053d6ef624d382c8a70e\",\r\n \"name\": \"cgposts-eastasia-5bff44e589e241d99372c7c39053d6ef624d382c8a70e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier626e12cd4353499a96d19832442d7628ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastasia-626e12cd4353499a96d19832442d7e3109fb9bd9bf107\",\r\n \"name\": \"cgposts-eastasia-626e12cd4353499a96d19832442d7e3109fb9bd9bf107\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier692b08c2151a49d9b09e8fd364e8fb24ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-eastasia-692b08c2151a49d9b09e8fd364e8fb24450ce8552f2d14fa\",\r\n \"name\": \"init-eastasia-692b08c2151a49d9b09e8fd364e8fb24450ce8552f2d14fa\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera4cc642e058c41abba569e70703b7687ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-eastasia-a4cc642e058c41abba569e7077e0b85774106db9f\",\r\n \"name\": \"escapedargs-eastasia-a4cc642e058c41abba569e7077e0b85774106db9f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.14\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"yes > /dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierb2d6dfb0b7b848f78ff3220e94c4f223ACILinuxDockerhub/providers/Microsoft.ContainerInstance/containerGroups/dockerhub-eastasia-b2d6dfb0b7b848f78ff3220e94cd67fe5ebc6b02f79\",\r\n \"name\": \"dockerhub-eastasia-b2d6dfb0b7b848f78ff3220e94cd67fe5ebc6b02f79\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierb5c076d687d34d3d9807cc27110a9280ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastasia-b5c076d687d34d3d9807cc27110a9b2946ded4f631bfe\",\r\n \"name\": \"cgposts-eastasia-b5c076d687d34d3d9807cc27110a9b2946ded4f631bfe\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierba13874a70664ee89c017bc39a64e08aACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-eastasia-ba13874a70664ee89c017bc39a43d6f1dbf8d45d2\",\r\n \"name\": \"escapedargs-eastasia-ba13874a70664ee89c017bc39a43d6f1dbf8d45d2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierbcb1cf1e0ba54be9bae6f5555ece73e2ACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-eastasia-bcb1cf1e0ba54be9bae6f5555ece98a9a3afee847127\",\r\n \"name\": \"outbound-eastasia-bcb1cf1e0ba54be9bae6f5555ece98a9a3afee847127\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierd43ed4e6c7b64aea96ccdafcfb2810c6ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastasia-d43ed4e6c7b64aea96ccdafcfb2818447b463e0fab328\",\r\n \"name\": \"cgposts-eastasia-d43ed4e6c7b64aea96ccdafcfb2818447b463e0fab328\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/files/srcfd6cdd839a6e43eb99fbb91962e90039acilinuxazurefilevolume.txt\",\r\n \"/files/dstfd6cdd839a6e43eb99fbb91962e90039acilinuxazurefilevolume.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"azureFile\": {\r\n \"shareName\": \"sbzend2end-linux-fd6cdd839a6e43eb99fbb91962e90b78b17f12e97b559\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierfd6cdd839a6e43eb99fbb91962e90039ACILinuxAzureFileVolume/providers/Microsoft.ContainerInstance/containerGroups/azf-eastasia-fd6cdd839a6e43eb99fbb91962e90039a0d1c1cc0f2928aa0\",\r\n \"name\": \"azf-eastasia-fd6cdd839a6e43eb99fbb91962e90039a0d1c1cc0f2928aa0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-eastasia\",\r\n \"name\": \"heartbeatexit-atlas-eastasia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-eastasia\",\r\n \"name\": \"heartbeatexit-k8-eastasia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-eastasia\",\r\n \"name\": \"immediatecrash-atlas-eastasia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-eastasia\",\r\n \"name\": \"immediatecrash-k8-eastasia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"13.75.54.74\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-eastasia\",\r\n \"fqdn\": \"longrunning-atlas-eastasia.eastasia.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-eastasia\",\r\n \"name\": \"longrunning-atlas-eastasia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"13.88.222.177\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-eastasia\",\r\n \"fqdn\": \"longrunning-k8-eastasia.eastasia.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-eastasia\",\r\n \"name\": \"longrunning-k8-eastasia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.55\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-eastasia/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-eastasia/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.6\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/19repro/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus19repro-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/19repro/providers/Microsoft.ContainerInstance/containerGroups/stet2\",\r\n \"name\": \"stet2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/19repro/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus19repro-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/19repro/providers/Microsoft.ContainerInstance/containerGroups/test1\",\r\n \"name\": \"test1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/19repro/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus19repro-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/19repro/providers/Microsoft.ContainerInstance/containerGroups/test2\",\r\n \"name\": \"test2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"bcdr-eastus\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"bcdr-test\",\r\n \"fqdn\": \"bcdr-test.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/ACI-Compliance/providers/Microsoft.ContainerInstance/containerGroups/bcdr-eastus\",\r\n \"name\": \"bcdr-eastus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier01f7a3d06fed4315b12d8e36b02b6162ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-eastus-01f7a3d06fed4315b12d8e36b0240a3983df5f968f6\",\r\n \"name\": \"escapedargs-eastus-01f7a3d06fed4315b12d8e36b0240a3983df5f968f6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/files/src0350bbeb980b437983db55a08f1edbb3acilinuxazurefilevolume.txt\",\r\n \"/files/dst0350bbeb980b437983db55a08f1edbb3acilinuxazurefilevolume.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"azureFile\": {\r\n \"shareName\": \"sbzend2end-linux-0350bbeb980b437983db55a08f1edb04f7b0160f9544f\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier0350bbeb980b437983db55a08f1edbb3ACILinuxAzureFileVolume/providers/Microsoft.ContainerInstance/containerGroups/azf-eastus-0350bbeb980b437983db55a08f1edbb3aci4168478f4590ebd6\",\r\n \"name\": \"azf-eastus-0350bbeb980b437983db55a08f1edbb3aci4168478f4590ebd6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier3b0fcc9595c746faa7b4f99541b39806ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-eastus-3b0fcc9595c746faa7b4f99541b39806acc72c80e635167453\",\r\n \"name\": \"init-eastus-3b0fcc9595c746faa7b4f99541b39806acc72c80e635167453\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier3e936188213d4a2aafb759ebe314f4e3ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-eastus-3e936188213d4a2aafb759ebe31e48b27a03afe587b\",\r\n \"name\": \"escapedargs-eastus-3e936188213d4a2aafb759ebe31e48b27a03afe587b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '9fbca376-6308-4f8b-afeb-66d2feac6fda' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.194.170\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier583586940747484d9e30be9fc7382396ACILinuxIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-eastus-583586940747484d9e30be9fc7382396acilinuxingress\",\r\n \"name\": \"ingress-eastus-583586940747484d9e30be9fc7382396acilinuxingress\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"gputestcuda9\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/cuda-tensforflow-serving:cuda9\",\r\n \"ports\": [\r\n {\r\n \"port\": 8501\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"MODEL_NAME\",\r\n \"value\": \"half_plus_two\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0,\r\n \"gpu\": {\r\n \"count\": 1,\r\n \"sku\": \"K80\"\r\n }\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"mountPath\": \"/models/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8501\r\n }\r\n ],\r\n \"ip\": \"52.186.47.169\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"azureFile\": {\r\n \"shareName\": \"gpu\",\r\n \"storageAccountName\": \"gpumodels\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier5b98038fdc494c4e9d24f51b13b20bd3ACILinuxGpuCuda9/providers/Microsoft.ContainerInstance/containerGroups/cuda9-eastus-5b98038fdc494c4e9d24f51b13b20bd3acilinuxgpucuda9\",\r\n \"name\": \"cuda9-eastus-5b98038fdc494c4e9d24f51b13b20bd3acilinuxgpucuda9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier98d15c2efcbd424aabd6f10f24105269ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastus-98d15c2efcbd424aabd6f10f2410526874935058cc111d0\",\r\n \"name\": \"cgposts-eastus-98d15c2efcbd424aabd6f10f2410526874935058cc111d0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierd71032d288c34b81abc51a541afb4b7fACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastus-d71032d288c34b81abc51a541afb4b79e711ce67adb4068\",\r\n \"name\": \"cgposts-eastus-d71032d288c34b81abc51a541afb4b79e711ce67adb4068\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierd89fc062c68442f9aa707fe25398465eACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-eastus-d89fc062c68442f9aa707fe253984549b85ed0646b23b\",\r\n \"name\": \"liveprobe-eastus-d89fc062c68442f9aa707fe253984549b85ed0646b23b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"gputestcuda10\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/cuda-tensforflow-serving:cuda10\",\r\n \"ports\": [\r\n {\r\n \"port\": 8501\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"MODEL_NAME\",\r\n \"value\": \"half_plus_two\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0,\r\n \"gpu\": {\r\n \"count\": 1,\r\n \"sku\": \"K80\"\r\n }\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"mountPath\": \"/models/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8501\r\n }\r\n ],\r\n \"ip\": \"20.72.171.14\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"azureFile\": {\r\n \"shareName\": \"gpu\",\r\n \"storageAccountName\": \"gpumodels\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierd8ff8f3a4acf4af3adbd7c13c71c5301ACILinuxGpuCuda10/providers/Microsoft.ContainerInstance/containerGroups/cuda10-eastus-d8ff8f3a4acf4af3adbd7c13c71c5301acilinuxgpucuda10\",\r\n \"name\": \"cuda10-eastus-d8ff8f3a4acf4af3adbd7c13c71c5301acilinuxgpucuda10\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"juhacket-gpu\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0,\r\n \"gpu\": {\r\n \"count\": 1,\r\n \"sku\": \"K80\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.188.40.145\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/juhacket-gpu\",\r\n \"name\": \"juhacket-gpu\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-eastus\",\r\n \"name\": \"heartbeatexit-atlas-eastus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-eastus\",\r\n \"name\": \"heartbeatexit-k8-eastus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-eastus\",\r\n \"name\": \"immediatecrash-atlas-eastus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-eastus\",\r\n \"name\": \"immediatecrash-k8-eastus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.194.242\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-eastus\",\r\n \"fqdn\": \"longrunning-atlas-eastus.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-eastus\",\r\n \"name\": \"longrunning-atlas-eastus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.72.166.157\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-eastus\",\r\n \"fqdn\": \"longrunning-k8-eastus.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-eastus\",\r\n \"name\": \"longrunning-k8-eastus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainer6\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainer6\",\r\n \"name\": \"appcontainer6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainereastus\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet1-aci-subnet1\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainereastus\",\r\n \"name\": \"appcontainereastus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/test\",\r\n \"name\": \"test\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/test2\",\r\n \"name\": \"test2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/test3\",\r\n \"name\": \"test3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/test4\",\r\n \"name\": \"test4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/test5\",\r\n \"name\": \"test5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/test6\",\r\n \"name\": \"test6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/test7\",\r\n \"name\": \"test7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testatlasdirsize\",\r\n \"name\": \"testatlasdirsize\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"side1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"side2\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testatlasdisk2\",\r\n \"name\": \"testatlasdisk2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"side1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"side2\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testatlasdisk3\",\r\n \"name\": \"testatlasdisk3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"side1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"side2\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.1,\r\n \"cpu\": 0.1\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testatlasdisk4\",\r\n \"name\": \"testatlasdisk4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testatlasdisk5\",\r\n \"name\": \"testatlasdisk5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n },\r\n {\r\n \"name\": \"vol2\",\r\n \"mountPath\": \"/aci/volpath2\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"emptyDir\": {}\r\n },\r\n {\r\n \"name\": \"vol2\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testatlasdisk6\",\r\n \"name\": \"testatlasdisk6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.249.206.234\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"testingdns\",\r\n \"fqdn\": \"testingdns.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testingdns\",\r\n \"name\": \"testingdns\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testk8dirsize\",\r\n \"name\": \"testk8dirsize\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.6\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-eastus/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-eastus/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.65.35.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnetpeeringeastus/providers/Microsoft.Network/networkProfiles/aci-network-profile-vnet1-default\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnetpeeringeastus/providers/Microsoft.ContainerInstance/containerGroups/test1\",\r\n \"name\": \"test1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.65.35.134\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnetpeeringeastus/providers/Microsoft.Network/networkProfiles/aci-network-profile-vnet2-default\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnetpeeringeastus/providers/Microsoft.ContainerInstance/containerGroups/test2\",\r\n \"name\": \"test2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"mycontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.102.16.40\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"vturecek\",\r\n \"fqdn\": \"vturecek.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vturecek/providers/Microsoft.ContainerInstance/containerGroups/mycontainer\",\r\n \"name\": \"mycontainer\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny/providers/Microsoft.ContainerInstance/containerGroups/appcontainer\",\r\n \"name\": \"appcontainer\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"postgreariesdb25-1\",\r\n \"properties\": {\r\n \"image\": \"postgres\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 5432\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"POSTGRES_PASSWORD\",\r\n \"value\": \"mysecretpassword\"\r\n },\r\n {\r\n \"name\": \"PGDATA\",\r\n \"value\": \"/var/lib/postgresql/data/pgdata\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"mountPath\": \"/var/lib/postgresql/data\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 5432\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"zeinypostgresssql\",\r\n \"fqdn\": \"zeinypostgresssql.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"azureFile\": {\r\n \"shareName\": \"fs3\",\r\n \"storageAccountName\": \"zeinysa\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny/providers/Microsoft.ContainerInstance/containerGroups/postgreariesdb25-1\",\r\n \"name\": \"postgreariesdb25-1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"postgreariesdb25-2\",\r\n \"properties\": {\r\n \"image\": \"postgres\",\r\n \"command\": [\r\n \"tail,-f,/dev/null\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 5432\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"POSTGRES_PASSWORD\",\r\n \"value\": \"mysecretpassword\"\r\n },\r\n {\r\n \"name\": \"PGDATA\",\r\n \"value\": \"/var/lib/postgresql/data/pgdata\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"mountPath\": \"/var/lib/postgresql/data\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 5432\r\n }\r\n ],\r\n \"ip\": \"20.62.217.141\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"zeinypostgresssql2\",\r\n \"fqdn\": \"zeinypostgresssql2.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"azureFile\": {\r\n \"shareName\": \"fs3\",\r\n \"storageAccountName\": \"zeinysa\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny/providers/Microsoft.ContainerInstance/containerGroups/postgreariesdb25-2\",\r\n \"name\": \"postgreariesdb25-2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"postgreariesdb25-3\",\r\n \"properties\": {\r\n \"image\": \"postgres:13\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 5432\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"POSTGRES_PASSWORD\",\r\n \"value\": \"mysecretpassword\"\r\n },\r\n {\r\n \"name\": \"PGDATA\",\r\n \"value\": \"/var/lib/postgresql/data/pgdata\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"mountPath\": \"/var/lib/postgresql/data\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 5432\r\n }\r\n ],\r\n \"ip\": \"20.81.91.52\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"zeinypostgresssql3\",\r\n \"fqdn\": \"zeinypostgresssql3.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"azureFile\": {\r\n \"shareName\": \"fs3\",\r\n \"storageAccountName\": \"zeinysa\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny/providers/Microsoft.ContainerInstance/containerGroups/postgreariesdb25-3\",\r\n \"name\": \"postgreariesdb25-3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"ip\": \"10.0.0.6\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeinyeastus/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n },\r\n \"dnsConfig\": {\r\n \"nameServers\": [\r\n \"192.168.1.1\"\r\n ],\r\n \"searchDomains\": \"\",\r\n \"options\": \"\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny-3ed2e344-5d5e-4c08-97d5-6a3472aea6dd/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-cc41825e-75de-472b-81b1-269c08e8ba8e\",\r\n \"name\": \"zeiny-atlas-cc41825e-75de-472b-81b1-269c08e8ba8e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/testpongserver:31010\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"ip\": \"20.75.216.71\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"59f19166-19da-4806-af2d-cf228a27f36b\",\r\n \"fqdn\": \"59f19166-19da-4806-af2d-cf228a27f36b.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny-75df516e-2fd3-4c7e-a90e-6349166bebea/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-59f19166-19da-4806-af2d-cf228a27f36b\",\r\n \"name\": \"zeiny-atlas-59f19166-19da-4806-af2d-cf228a27f36b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"ip\": \"10.0.0.7\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeinyeastus/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n },\r\n \"dnsConfig\": {\r\n \"nameServers\": [\r\n \"192.168.1.1\"\r\n ],\r\n \"searchDomains\": \"x\",\r\n \"options\": \"\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny-75df516e-2fd3-4c7e-a90e-6349166bebea/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-c1874f4d-09d6-41bd-9134-a18a57341c84\",\r\n \"name\": \"zeiny-atlas-c1874f4d-09d6-41bd-9134-a18a57341c84\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/testpongserver:31010\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 31010\r\n }\r\n ],\r\n \"ip\": \"20.72.151.37\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"e0bed1c6-3e30-493b-bceb-b45720079f8a\",\r\n \"fqdn\": \"e0bed1c6-3e30-493b-bceb-b45720079f8a.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeiny-75df516e-2fd3-4c7e-a90e-6349166bebea/providers/Microsoft.ContainerInstance/containerGroups/zeiny-atlas-e0bed1c6-3e30-493b-bceb-b45720079f8a\",\r\n \"name\": \"zeiny-atlas-e0bed1c6-3e30-493b-bceb-b45720079f8a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeinyeastus/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeinyeastus/providers/Microsoft.ContainerInstance/containerGroups/appcontainer\",\r\n \"name\": \"appcontainer\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier14b6955fefac4175ba37b82862cd126eACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastus2-14b6955fefac4175ba37b82862cd12e4347884f73ec87c\",\r\n \"name\": \"cgposts-eastus2-14b6955fefac4175ba37b82862cd12e4347884f73ec87c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier41db89ac4aee4ab380e724d0bbe30e14ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastus2-41db89ac4aee4ab380e724d0bbe30e4719fc0a03ba5d1d\",\r\n \"name\": \"cgposts-eastus2-41db89ac4aee4ab380e724d0bbe30e4719fc0a03ba5d1d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier4a5dd1723f964ac4a0d714e782091af8ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastus2-4a5dd1723f964ac4a0d714e782091a85206f54fd7041d7\",\r\n \"name\": \"cgposts-eastus2-4a5dd1723f964ac4a0d714e782091a85206f54fd7041d7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier5152fc74a60a4132aa656dabec640ebeACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-eastus2-5152fc74a60a4132aa656dabecc11acbefa9024a23\",\r\n \"name\": \"escapedargs-eastus2-5152fc74a60a4132aa656dabecc11acbefa9024a23\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier635ff5a9c09b48708afaf55baa4119cfACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-eastus2-635ff5a9c09b48708afaf55baa4119cfac4fe0fb30afd99326\",\r\n \"name\": \"msi-eastus2-635ff5a9c09b48708afaf55baa4119cfac4fe0fb30afd99326\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier67effc3fbd964cbabc9ab72975b17ae8ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-eastus2-67effc3fbd964cbabc9ab72975e0c3a9fe2e8d2057\",\r\n \"name\": \"escapedargs-eastus2-67effc3fbd964cbabc9ab72975e0c3a9fe2e8d2057\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/etc/hosts\",\r\n \"/files/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 60;cat /otherfiles/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier826486c36d864130ae9546696b913dfcACILinuxEmptyDirVolume/providers/Microsoft.ContainerInstance/containerGroups/emptydir-eastus2-826486c36d864130ae9546696b91333ceeb6e420b4c6a\",\r\n \"name\": \"emptydir-eastus2-826486c36d864130ae9546696b91333ceeb6e420b4c6a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.36.152.2\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier85f58b30847c44ef96dd63378b1db36fACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-eastus2-85f58b30847c44ef96dd63378b1dbde175d71cd84e87f\",\r\n \"name\": \"outbound-eastus2-85f58b30847c44ef96dd63378b1dbde175d71cd84e87f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier97059d803ce34e37b4f4bbfb5a0d29a7ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-eastus2-97059d803ce34e37b4f4bbfb5a0d29a7a9052cb8e8e04013e\",\r\n \"name\": \"init-eastus2-97059d803ce34e37b4f4bbfb5a0d29a7a9052cb8e8e04013e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo 'd6729d5d-c970-488b-b5e6-d8974520accc'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera7dda30d612f44c7a2e053deff7735f8ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-eastus2-a7dda30d612f44c7a2e053deff7735f8a1129df87ba6a73fd\",\r\n \"name\": \"init-eastus2-a7dda30d612f44c7a2e053deff7735f8a1129df87ba6a73fd\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 20\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo 'b45ae641-632d-40fa-aac8-0de1c34b87f8'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-07-15T11:27:29.345Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-07-15T11:27:31.573Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifieraef2abe145a749b9be0d15f246df2db9ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-eastus2-aef2abe145a749b9be0d15f246df2db9a3a6ffe8dbeb6113e\",\r\n \"name\": \"init-eastus2-aef2abe145a749b9be0d15f246df2db9a3a6ffe8dbeb6113e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierb282585c3624467892c2b0ce22cd303aACIWindowsContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-eastus2-b282585c3624467892c2b0ce22cd303aaa577789a6eae1c09\",\r\n \"name\": \"exec-eastus2-b282585c3624467892c2b0ce22cd303aaa577789a6eae1c09\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/vnetchecker:1.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ALWAYSRUNCGIP\",\r\n \"value\": \"10.20.0.9\"\r\n },\r\n {\r\n \"name\": \"RUNNERLOCATION\",\r\n \"value\": \"eastus2\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"false\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-eastus2/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc960494775ac4761b386b6b0014f9dacACILinuxByoVnetConnectivity/providers/Microsoft.ContainerInstance/containerGroups/byovnet-eastus2-c960494775ac4761b386b6b0014f9d0253abfbf00595a5\",\r\n \"name\": \"byovnet-eastus2-c960494775ac4761b386b6b0014f9d0253abfbf00595a5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:1.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"false\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierd885faf59eef41049089dd0e208d5d42ACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-eastus2-d885faf59eef41049089dd0e208d5dfc300ab4dc97141\",\r\n \"name\": \"outbound-eastus2-d885faf59eef41049089dd0e208d5dfc300ab4dc97141\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere1f1a2b62d8c47aa93ebe69added2d0cACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-eastus2-e1f1a2b62d8c47aa93ebe69added2d0cacd1ddb9ea7b4b3a93\",\r\n \"name\": \"msi-eastus2-e1f1a2b62d8c47aa93ebe69added2d0cacd1ddb9ea7b4b3a93\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/core/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.69.200.226\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"actingresstest-54b71779-0196-468a-ac25-213ab7a14401\",\r\n \"fqdn\": \"actingresstest-54b71779-0196-468a-ac25-213ab7a14401.eastus2.azurecontainer.io\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere53ba1e84ced451e90e4e020d3833153ACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-eastus2-e53ba1e84ced451e90e4e020d38331117bfa4acc084086\",\r\n \"name\": \"ingress-eastus2-e53ba1e84ced451e90e4e020d38331117bfa4acc084086\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere8fcdba531b24e8fb791ba2f3e438dadACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-eastus2-e8fcdba531b24e8fb791ba2f3e43ad32cb4395a7409c\",\r\n \"name\": \"liveprobe-eastus2-e8fcdba531b24e8fb791ba2f3e43ad32cb4395a7409c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiereb295a30acc84af88f7b9ada759c844dACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-eastus2-eb295a30acc84af88f7b9ada759c640549ea93137eb1\",\r\n \"name\": \"liveprobe-eastus2-eb295a30acc84af88f7b9ada759c640549ea93137eb1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierf6acc9ae09a24502a7a3c2ee7e998b14ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastus2-f6acc9ae09a24502a7a3c2ee7e998bcbc3cc6b16c80d4e\",\r\n \"name\": \"cgposts-eastus2-f6acc9ae09a24502a7a3c2ee7e998bcbc3cc6b16c80d4e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierf90b3540c83146ab990a819cade15269ACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-eastus2-f90b3540c83146ab990a819cade15269aca9203145fd17dfdf\",\r\n \"name\": \"msi-eastus2-f90b3540c83146ab990a819cade15269aca9203145fd17dfdf\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/etc/hosts\",\r\n \"/files/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 60;cat /otherfiles/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierfaa12cbeb46b4a3199556975edebde9bACILinuxEmptyDirVolume/providers/Microsoft.ContainerInstance/containerGroups/emptydir-eastus2-faa12cbeb46b4a3199556975edebdb0f5bfa22819f769\",\r\n \"name\": \"emptydir-eastus2-faa12cbeb46b4a3199556975edebdb0f5bfa22819f769\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-eastus2\",\r\n \"name\": \"heartbeatexit-atlas-eastus2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-eastus2\",\r\n \"name\": \"heartbeatexit-k8-eastus2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-eastus2\",\r\n \"name\": \"immediatecrash-atlas-eastus2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-eastus2\",\r\n \"name\": \"immediatecrash-k8-eastus2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.75.102.190\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-eastus2\",\r\n \"fqdn\": \"longrunning-atlas-eastus2.eastus2.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-eastus2\",\r\n \"name\": \"longrunning-atlas-eastus2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.179.235.71\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-eastus2\",\r\n \"fqdn\": \"longrunning-k8-eastus2.eastus2.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-eastus2\",\r\n \"name\": \"longrunning-k8-eastus2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"macolsocontainer\",\r\n \"properties\": {\r\n \"image\": \"microsoft/nanoserver:10.0.14393.2430\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/macolsorg/providers/Microsoft.ContainerInstance/containerGroups/macolsocontainer\",\r\n \"name\": \"macolsocontainer\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainereastus2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vneteastus2-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainereastus2\",\r\n \"name\": \"appcontainereastus2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"apk add curl && curl https://gist.githubusercontent.com/provpup/2fc41686eab7400b796b/raw/b575bd01a58494dfddc1d6429ef0167e709abf9b/hamlet.txt > hamlet.txt && echo -n $(tr -d '\\n' < hamlet.txt) > hamlet2.txt && while true; do cat hamlet2.txt; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 16.0,\r\n \"cpu\": 4.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testhamlet\",\r\n \"name\": \"testhamlet\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testhugelogs\",\r\n \"name\": \"testhugelogs\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; sleep 0.1; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testlogs\",\r\n \"name\": \"testlogs\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-eastus2/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-eastus2/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '9e87ceb3-5789-4d0a-bfee-736b9e231ecb' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.40.148.15\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier03caaef9b9a84623b3277da773751329ACILinuxIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-francecentral-03caaef9b9a84623b3277da7e8a21eace9dd1e8f\",\r\n \"name\": \"ingress-francecentral-03caaef9b9a84623b3277da7e8a21eace9dd1e8f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"francecentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier2de54fc8ee9a4cd699fa54bfce6406a7ACIWindowsContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-francecentral-2de54fc8ee9a4cd699fa54bfce6c54c3196c8cb962f\",\r\n \"name\": \"exec-francecentral-2de54fc8ee9a4cd699fa54bfce6c54c3196c8cb962f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"francecentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '9c49e26c-6c9c-4c2f-a347-aed378157734'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier3475c5695fd4466293fdd36d2ab8200dACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-francecentral-3475c5695fd4466293fdd36d2ab4d81471ee52857d1\",\r\n \"name\": \"init-francecentral-3475c5695fd4466293fdd36d2ab4d81471ee52857d1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"francecentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier4b79c2652fcf4b5fb15f7c2fa2603c45ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-francecentral-4b79c2652fcf4b5fb15f7c2f1fc8ee40ea74bec5\",\r\n \"name\": \"cgposts-francecentral-4b79c2652fcf4b5fb15f7c2f1fc8ee40ea74bec5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"francecentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.14\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"yes > /dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc35a1b2ee71c4367b9b90fea238a0ed1ACILinuxDockerhub/providers/Microsoft.ContainerInstance/containerGroups/dockerhub-francecentral-c35a1b2ee71c4367b9b90faf0f04de28b96c89\",\r\n \"name\": \"dockerhub-francecentral-c35a1b2ee71c4367b9b90faf0f04de28b96c89\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"francecentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierd13d52f5ba934ea0b934dc648af62f18ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-francecentral-d13d52f5ba934ea0b934dca7f96b1ce2e556b1\",\r\n \"name\": \"liveprobe-francecentral-d13d52f5ba934ea0b934dca7f96b1ce2e556b1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"francecentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierd246208ad247466e8678e8abf9145cadACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-francecentral-d246208ad247466e8678e8aba5bc0137f5df79c9\",\r\n \"name\": \"cgposts-francecentral-d246208ad247466e8678e8aba5bc0137f5df79c9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"francecentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere4c7923b0d4d4b3a89e9452919c24594ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-francecentral-e4c7923b0d4d4b3a89e9452919cc1c90f0a32c9573d\",\r\n \"name\": \"init-francecentral-e4c7923b0d4d4b3a89e9452919cc1c90f0a32c9573d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"francecentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-francecentral\",\r\n \"name\": \"heartbeatexit-atlas-francecentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"francecentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-francecentral\",\r\n \"name\": \"heartbeatexit-k8-francecentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"francecentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-francecentral\",\r\n \"name\": \"immediatecrash-atlas-francecentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"francecentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-francecentral\",\r\n \"name\": \"immediatecrash-k8-francecentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"francecentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"51.138.221.77\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-francecentral\",\r\n \"fqdn\": \"longrunning-atlas-francecentral.francecentral.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-francecentral\",\r\n \"name\": \"longrunning-atlas-francecentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"francecentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.74.48.125\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-francecentral\",\r\n \"fqdn\": \"longrunning-k8-francecentral.francecentral.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-francecentral\",\r\n \"name\": \"longrunning-k8-francecentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"francecentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-francecentral/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-francecentral/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"francecentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier4d7bc41fd43a42f4b3dc218cf131cc7fACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-germanywestcentral-4d7bc41fd43a42f4b3d2f584ffa44e57492\",\r\n \"name\": \"cgposts-germanywestcentral-4d7bc41fd43a42f4b3d2f584ffa44e57492\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"germanywestcentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier4fb9521e8d4a451698bda51a56d7427eACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-germanywestcentral-4fb9521e8d4a451698b72387fdd619335d2\",\r\n \"name\": \"cgposts-germanywestcentral-4fb9521e8d4a451698b72387fdd619335d2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"germanywestcentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierb39aa9b7798347488612f4652f29bbb7ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-germanywestcentral-b39aa9b779834748861ccb497cdce941e37\",\r\n \"name\": \"cgposts-germanywestcentral-b39aa9b779834748861ccb497cdce941e37\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"germanywestcentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierf54aa875b44f4d8fb36710b5195f07beACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-germanywestcentral-f54aa875b44f4d8fb369402bfd3f462b3ed\",\r\n \"name\": \"cgposts-germanywestcentral-f54aa875b44f4d8fb369402bfd3f462b3ed\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"germanywestcentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.14\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"yes > /dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierf6dfca242d6d4f708cc74fa73862e51bACILinuxDockerhub/providers/Microsoft.ContainerInstance/containerGroups/dockerhub-germanywestcentral-f6dfca242d6d4f70899fc32881ab3e2dd\",\r\n \"name\": \"dockerhub-germanywestcentral-f6dfca242d6d4f70899fc32881ab3e2dd\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"germanywestcentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-germanywestcentral\",\r\n \"name\": \"heartbeatexit-atlas-germanywestcentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"germanywestcentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-germanywestcentral\",\r\n \"name\": \"immediatecrash-atlas-germanywestcentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"germanywestcentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.79.81.41\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-germanywestcentral\",\r\n \"fqdn\": \"longrunning-atlas-germanywestcentral.germanywestcentral.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-germanywestcentral\",\r\n \"name\": \"longrunning-atlas-germanywestcentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"germanywestcentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testexeccligermany\",\r\n \"name\": \"testexeccligermany\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"germanywestcentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nanoserver\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/powershell:lts-nanoserver-1809\",\r\n \"command\": [\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testexecclipsgwc\",\r\n \"name\": \"testexecclipsgwc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"germanywestcentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nanoserver\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testexeccliwindowsgwc\",\r\n \"name\": \"testexeccliwindowsgwc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"germanywestcentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier18892e2194fe4c77a0faf17e95162a28ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-japaneast-18892e2194fe4c77a0faf17e713d9067401fc543\",\r\n \"name\": \"escapedargs-japaneast-18892e2194fe4c77a0faf17e713d9067401fc543\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier1e5645c0396444fcb0f37d3bd0c1b96dACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-japaneast-1e5645c0396444fcb0f37d3bd0c12322f7451da408df\",\r\n \"name\": \"cgposts-japaneast-1e5645c0396444fcb0f37d3bd0c12322f7451da408df\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier29ca8168647c42599116e7eef691fc04ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-japaneast-29ca8168647c42599116e7eef6914c0d9a123d209240\",\r\n \"name\": \"cgposts-japaneast-29ca8168647c42599116e7eef6914c0d9a123d209240\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 4 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier73d7b14545fd492eb7f6ed69b2a96f8dACIWindowsRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-japaneast-73d7b14545fd492eb7f6eda0c28685e98e4fef\",\r\n \"name\": \"restartpolicy-japaneast-73d7b14545fd492eb7f6eda0c28685e98e4fef\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier7492210412c24adbb001079e82bb1d86ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-japaneast-7492210412c24adbb001079e82bb6eb2e66e6b587df3\",\r\n \"name\": \"cgposts-japaneast-7492210412c24adbb001079e82bb6eb2e66e6b587df3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier883c9732a546456aa59bf71d0c15ea55ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-japaneast-883c9732a546456aa59bf71d0c15617e79a082ea2d2c\",\r\n \"name\": \"cgposts-japaneast-883c9732a546456aa59bf71d0c15617e79a082ea2d2c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiercd9af83b6d4947fb923673274e4c582dACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-japaneast-cd9af83b6d4947fb923673274e4c582d9daea4b9a9d2abfb\",\r\n \"name\": \"msi-japaneast-cd9af83b6d4947fb923673274e4c582d9daea4b9a9d2abfb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '83c9d9c1-32e3-4a01-be3a-9dba48d5b595'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiercf6719ad46594768b8a0db205462858cACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-japaneast-cf6719ad46594768b8a0db2054628582f735142b9b8f859\",\r\n \"name\": \"init-japaneast-cf6719ad46594768b8a0db2054628582f735142b9b8f859\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierd4bed357ed304808b1624a8c023ea7f7ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-japaneast-d4bed357ed304808b1624a8c023e6a3f3e30fdae9511\",\r\n \"name\": \"cgposts-japaneast-d4bed357ed304808b1624a8c023e6a3f3e30fdae9511\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierd6077b73a5ed45e5ba8e4720bc00dd75ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-japaneast-d6077b73a5ed45e5ba8e47203783527564eb14e9\",\r\n \"name\": \"escapedargs-japaneast-d6077b73a5ed45e5ba8e47203783527564eb14e9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.156.41.126\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"8f26b0ae16d14a15891159d617a778e7\",\r\n \"fqdn\": \"8f26b0ae16d14a15891159d617a778e7.japaneast.azurecontainer.io\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierea8f0f5a254641e88eb86f4f31678af3ACIWindowsIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-japaneast-ea8f0f5a254641e88eb86f4f31672363c95fa984cea9\",\r\n \"name\": \"ingress-japaneast-ea8f0f5a254641e88eb86f4f31672363c95fa984cea9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-30c357d9-5c0d-40aa-a8bf-87ff225a456a\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.71\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-011815f7-2ca6-422f-a32a-cb33125fb4ef\",\r\n \"name\": \"validation-011815f7-2ca6-422f-a32a-cb33125fb4ef\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-b59506b3-619c-42e0-a632-64fd2b0a49c1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.82\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-02876309-342e-40b5-9767-df6b1acc65af\",\r\n \"name\": \"validation-02876309-342e-40b5-9767-df6b1acc65af\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-ed81925b-71b4-40b9-a77b-26dabe292e32\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.96\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-05b0a12c-3fad-4200-a857-f82b818f39c3\",\r\n \"name\": \"validation-05b0a12c-3fad-4200-a857-f82b818f39c3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-b2b59cdf-0914-4306-b676-9eb991e13a16\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.75\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-078b3b10-7536-4af3-b4b8-b91811d51044\",\r\n \"name\": \"validation-078b3b10-7536-4af3-b4b8-b91811d51044\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-cd4757d2-63fb-4dbe-aa55-9e2c96722f70\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.66\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-095aa15b-e5cf-4f1c-b94b-e329dbf06510\",\r\n \"name\": \"validation-095aa15b-e5cf-4f1c-b94b-e329dbf06510\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-4c9cb52b-8292-4623-b148-59521cd158b5\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.87\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-0d0471e9-a614-4506-9a62-335ee8d34d8f\",\r\n \"name\": \"validation-0d0471e9-a614-4506-9a62-335ee8d34d8f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f61d230e-07c6-460d-807c-275383db3ac9\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.77\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-1195810d-b8ac-42ee-a541-0b936645d07e\",\r\n \"name\": \"validation-1195810d-b8ac-42ee-a541-0b936645d07e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-8fef2167-b98d-4a97-85cd-37f32ff4d619\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.70\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-122fdd7b-bc86-4b0c-8875-0e169fa2d275\",\r\n \"name\": \"validation-122fdd7b-bc86-4b0c-8875-0e169fa2d275\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-11b677b3-b2c4-4d60-9acd-183089048cec\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.83\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-1428eb22-9a9b-4189-8549-9a6cd0fb855c\",\r\n \"name\": \"validation-1428eb22-9a9b-4189-8549-9a6cd0fb855c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-48d679b8-9890-4918-a27a-a6a6b82e9ca7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.53\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-246c207d-ee54-4cb8-ade8-70d00c588883\",\r\n \"name\": \"validation-246c207d-ee54-4cb8-ade8-70d00c588883\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7fdffcdc-fc39-4bfb-99f1-442151a440cd\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.95\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-27ef19fb-8359-43cb-a666-fabd0f7a3b90\",\r\n \"name\": \"validation-27ef19fb-8359-43cb-a666-fabd0f7a3b90\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-45d98ec0-cf01-46ad-ae60-6d974f702312\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.92\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-3987d643-9209-47a7-ad61-88065efc5635\",\r\n \"name\": \"validation-3987d643-9209-47a7-ad61-88065efc5635\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6885b362-f15f-4f91-9738-2bcdabc99cbb\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.51\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-4cf19902-0df1-4e18-9df0-8c1278886ef1\",\r\n \"name\": \"validation-4cf19902-0df1-4e18-9df0-8c1278886ef1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-e8441e8e-8dd5-446c-919e-3c11c128ec62\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.76\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-4eae2453-ca5f-495e-b275-d4992075879d\",\r\n \"name\": \"validation-4eae2453-ca5f-495e-b275-d4992075879d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0cb61323-291c-4c30-a7c9-90a9e2930f1e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.64\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-56b771ac-d97b-443e-8e84-8ca6ce891f30\",\r\n \"name\": \"validation-56b771ac-d97b-443e-8e84-8ca6ce891f30\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6eef36d6-d78b-466d-b6d1-603e1b28d13d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.55\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-591c0062-cabc-46d3-8e27-17de8e08597f\",\r\n \"name\": \"validation-591c0062-cabc-46d3-8e27-17de8e08597f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-08569f1b-3277-4e47-ab4c-358d4c951ca4\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.79\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-5db2cfc5-495a-4798-830e-63caca3b9609\",\r\n \"name\": \"validation-5db2cfc5-495a-4798-830e-63caca3b9609\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-157830aa-b324-4c03-9df4-f5831659b37b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.93\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-5dfcf406-d816-433b-9f49-60b95c17d971\",\r\n \"name\": \"validation-5dfcf406-d816-433b-9f49-60b95c17d971\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2e7aace5-a69f-4a2a-b895-8d5ea3dc6089\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.98\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-5ea544c9-7061-4911-9ca5-4eca534e1c44\",\r\n \"name\": \"validation-5ea544c9-7061-4911-9ca5-4eca534e1c44\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6b7dea3f-bed7-41ca-a50e-938b9d00486e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.88\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-6332bc9f-18fa-4a7c-b3d5-3c9b976a2aba\",\r\n \"name\": \"validation-6332bc9f-18fa-4a7c-b3d5-3c9b976a2aba\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-de729e7f-db68-4ba2-999b-2d1a2f0c9b76\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.54\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-75d9a853-e461-43d7-bdae-c1106d3ce839\",\r\n \"name\": \"validation-75d9a853-e461-43d7-bdae-c1106d3ce839\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-cfd58097-f297-4f37-bc5e-a01773becbca\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.86\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-7769e3eb-69ac-4f26-8c40-38d877d93e29\",\r\n \"name\": \"validation-7769e3eb-69ac-4f26-8c40-38d877d93e29\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7f426788-3a42-4be3-a228-9f620b7c9f0f\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.74\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-7813e704-e293-49b8-860e-503318b8c146\",\r\n \"name\": \"validation-7813e704-e293-49b8-860e-503318b8c146\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6e7d413f-88fe-4357-beef-1acaeb676d73\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.97\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-82f55599-fe4e-4003-bb8a-25faa597cdf7\",\r\n \"name\": \"validation-82f55599-fe4e-4003-bb8a-25faa597cdf7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9de79955-f969-4fdd-b7ad-b5d1e69c78ff\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.84\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-8b4c2315-5808-4db2-b71a-23318db48ffc\",\r\n \"name\": \"validation-8b4c2315-5808-4db2-b71a-23318db48ffc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-581000c9-c77d-4e06-8704-b04bd4f79e0f\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.73\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-8e5253f3-f298-4aeb-a02e-7e0141b8e84a\",\r\n \"name\": \"validation-8e5253f3-f298-4aeb-a02e-7e0141b8e84a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-415a1944-de35-4a95-8f75-7a0fbda03944\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.89\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-8ff24bec-f68e-480e-855f-dd86c6edf0e3\",\r\n \"name\": \"validation-8ff24bec-f68e-480e-855f-dd86c6edf0e3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-dbe7571e-8487-491e-bec3-cae723e280fb\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.58\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-92cf452e-d759-4835-ab76-3eb9b42a5dc3\",\r\n \"name\": \"validation-92cf452e-d759-4835-ab76-3eb9b42a5dc3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-e15ef851-3985-479f-bd2d-af4402918ed3\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.90\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-997b1e8e-48a2-4ae3-a48f-c54d05abd7dc\",\r\n \"name\": \"validation-997b1e8e-48a2-4ae3-a48f-c54d05abd7dc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-b18c1c13-b170-4bcf-a2f3-17565e9e001b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.69\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-9ef0925a-5649-4c7c-ba19-85b098c7cd82\",\r\n \"name\": \"validation-9ef0925a-5649-4c7c-ba19-85b098c7cd82\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f8930829-c55a-4bee-a90d-02b128b3aa23\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.85\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-a5097b8d-8d6e-45cc-b1c2-3241f946aa3f\",\r\n \"name\": \"validation-a5097b8d-8d6e-45cc-b1c2-3241f946aa3f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6b6da9e9-f9c6-4662-8fb6-9cbebc501ccb\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.68\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-b58dbdb6-ae09-4a77-9011-34dd792e893a\",\r\n \"name\": \"validation-b58dbdb6-ae09-4a77-9011-34dd792e893a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-07b11f1a-d3c2-4206-8bf4-79764bc0c9df\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.61\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-b7df2c03-749b-4643-b261-8cfcb0c68008\",\r\n \"name\": \"validation-b7df2c03-749b-4643-b261-8cfcb0c68008\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-dd087822-ba7e-4940-a8d6-bb1ce2a18b16\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.60\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-c1cb3000-f78d-4862-adff-e60a391b853c\",\r\n \"name\": \"validation-c1cb3000-f78d-4862-adff-e60a391b853c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-5ea871b7-6693-4061-8813-6df861403842\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.65\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-c1e4c4ca-43c6-4b66-ba16-c004268ff1fa\",\r\n \"name\": \"validation-c1e4c4ca-43c6-4b66-ba16-c004268ff1fa\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3a4cb069-1113-47b3-9925-0d103c79ff54\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.80\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-c7210f65-edc5-4645-9567-d74d8180fe15\",\r\n \"name\": \"validation-c7210f65-edc5-4645-9567-d74d8180fe15\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1d2b6e4b-06f7-46df-b854-cc0c7cc777f7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.59\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-cc20b100-f4c8-418e-9cef-dcce5bc23ad3\",\r\n \"name\": \"validation-cc20b100-f4c8-418e-9cef-dcce5bc23ad3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-bb73f1fe-faff-464f-a5a9-cf23a3e88599\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.63\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ccc0e2cf-f749-4eeb-8f52-0c92c7ad9a86\",\r\n \"name\": \"validation-ccc0e2cf-f749-4eeb-8f52-0c92c7ad9a86\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-cd9f18da-b197-4736-804a-ae60a5e81829\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.57\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ce342729-9216-410a-b21b-31bd82b1c585\",\r\n \"name\": \"validation-ce342729-9216-410a-b21b-31bd82b1c585\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2f12e07a-169d-4e0c-aa41-b1cee81c627a\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.62\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-db96de43-7875-46eb-bcb2-ab39efd40e6b\",\r\n \"name\": \"validation-db96de43-7875-46eb-bcb2-ab39efd40e6b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c3fdce81-be67-4eda-82f2-dfdde518b5c6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.56\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-deebddde-465a-4886-98ca-aac1de557015\",\r\n \"name\": \"validation-deebddde-465a-4886-98ca-aac1de557015\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2d2e7ddd-0674-4bf2-85bb-11a8f49726bc\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.67\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-e4f229cc-bab4-4c06-9cb7-9f731c7f1700\",\r\n \"name\": \"validation-e4f229cc-bab4-4c06-9cb7-9f731c7f1700\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-d1f7f235-5cd4-4419-9870-caca31e2c329\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.78\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ee2186c0-5e53-453f-81b0-59687fe4f387\",\r\n \"name\": \"validation-ee2186c0-5e53-453f-81b0-59687fe4f387\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-5d7d0996-0044-4045-be98-39f1db6c48aa\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.91\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-fa4ad6e3-b2ac-4e39-a8cb-9649f028fee8\",\r\n \"name\": \"validation-fa4ad6e3-b2ac-4e39-a8cb-9649f028fee8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6196d55a-7a28-4a83-9f5f-ddbf2f6433b8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.72\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-japaneastvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/japaneastdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-fe92d488-9495-47a6-8bf3-124c1eeda265\",\r\n \"name\": \"validation-fe92d488-9495-47a6-8bf3-124c1eeda265\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-japaneast\",\r\n \"name\": \"heartbeatexit-atlas-japaneast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-japaneast\",\r\n \"name\": \"heartbeatexit-k8-japaneast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-japaneast\",\r\n \"name\": \"immediatecrash-atlas-japaneast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-japaneast\",\r\n \"name\": \"immediatecrash-k8-japaneast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.89.85.175\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-japaneast\",\r\n \"fqdn\": \"longrunning-atlas-japaneast.japaneast.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-japaneast\",\r\n \"name\": \"longrunning-atlas-japaneast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.89.81.54\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-japaneast\",\r\n \"fqdn\": \"longrunning-k8-japaneast.japaneast.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-japaneast\",\r\n \"name\": \"longrunning-k8-japaneast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-japaneast/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-japaneast/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japaneast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Updating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier344b01eebc4b4d6583c3fe109198e558ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-japanwest-344b01eebc4b4d6583c3fe109198657776106981ab42\",\r\n \"name\": \"cgposts-japanwest-344b01eebc4b4d6583c3fe109198657776106981ab42\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japanwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier4821e07eda024284ad66a8739d022cecACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-japanwest-4821e07eda024284ad66a8739d02e4c2b48238631cc8\",\r\n \"name\": \"cgposts-japanwest-4821e07eda024284ad66a8739d02e4c2b48238631cc8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japanwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Updating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier57d0e8870d3347968f74918f5a1c6696ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-japanwest-57d0e8870d3347968f74918f5a1cc62d5c7afb87aa2b\",\r\n \"name\": \"cgposts-japanwest-57d0e8870d3347968f74918f5a1cc62d5c7afb87aa2b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japanwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier60afc35b9b3545a1817c2b6c5ee3793cACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-japanwest-60afc35b9b3545a1817c2b6c5ee3793e6d879de5efaa26e\",\r\n \"name\": \"init-japanwest-60afc35b9b3545a1817c2b6c5ee3793e6d879de5efaa26e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japanwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier6e3739b3eef14e3e9e167829828c4360ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-japanwest-6e3739b3eef14e3e9e167829828c436eb385af1913389b9\",\r\n \"name\": \"init-japanwest-6e3739b3eef14e3e9e167829828c436eb385af1913389b9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japanwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier7f86fca07cb2459b85dc86881aa47681ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-japanwest-7f86fca07cb2459b85dc86881aa426c7b9626b18346f\",\r\n \"name\": \"cgposts-japanwest-7f86fca07cb2459b85dc86881aa426c7b9626b18346f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japanwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '6153560d-1376-4a6e-a680-6b034f897ffa' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.175.151.218\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier9dc1c41d7ffd4ae9b49cbce1a953f8e0ACILinuxIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-japanwest-9dc1c41d7ffd4ae9b49cbce1a953f258f35e1b394198\",\r\n \"name\": \"ingress-japanwest-9dc1c41d7ffd4ae9b49cbce1a953f258f35e1b394198\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japanwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera32ffd061256481f92a2d5e77d3a37e9ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-japanwest-a32ffd061256481f92a2d5e73e2577b508898d9f\",\r\n \"name\": \"escapedargs-japanwest-a32ffd061256481f92a2d5e73e2577b508898d9f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japanwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierd6754b57b017477fbdf35218b17f522bACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-japanwest-d6754b57b017477fbdf35218b17fbd310481964c18d6\",\r\n \"name\": \"cgposts-japanwest-d6754b57b017477fbdf35218b17fbd310481964c18d6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japanwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-japanwest\",\r\n \"name\": \"heartbeatexit-atlas-japanwest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japanwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-japanwest\",\r\n \"name\": \"immediatecrash-atlas-japanwest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japanwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"104.215.43.97\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-japanwest\",\r\n \"fqdn\": \"longrunning-atlas-japanwest.japanwest.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-japanwest\",\r\n \"name\": \"longrunning-atlas-japanwest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"japanwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier14161c75ae304233ba02d81dbfdbc899ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-koreacentral-14161c75ae304233ba02d81dbee6e72ffb3d2e909\",\r\n \"name\": \"cgposts-koreacentral-14161c75ae304233ba02d81dbee6e72ffb3d2e909\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier18d55bfab80242058aba4fa3edb3012dACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-koreacentral-18d55bfab80242058aba4fa3e905be9bb30699af0\",\r\n \"name\": \"cgposts-koreacentral-18d55bfab80242058aba4fa3e905be9bb30699af0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier2161193f368e471bb0c958953f4dc8d2ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-koreacentral-2161193f368e471bb0c958953f4da61ef16e652982e6\",\r\n \"name\": \"init-koreacentral-2161193f368e471bb0c958953f4da61ef16e652982e6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier22d757473e53476d850ba0b200a19518ACILinuxContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-koreacentral-22d757473e53476d850ba0b200a1e138996f0e7241ae\",\r\n \"name\": \"exec-koreacentral-22d757473e53476d850ba0b200a1e138996f0e7241ae\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier2da7e80a46d24633916b0d2998b21835ACIWindowsContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-koreacentral-2da7e80a46d24633916b0d2998b2efd0188b31b6c4f5\",\r\n \"name\": \"exec-koreacentral-2da7e80a46d24633916b0d2998b2efd0188b31b6c4f5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/etc/hosts\",\r\n \"/files/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 60;cat /otherfiles/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier48fb4d4eb649472c8214b168bbd9c0c0ACILinuxEmptyDirVolume/providers/Microsoft.ContainerInstance/containerGroups/emptydir-koreacentral-48fb4d4eb649472c8214b168f0fc9dad136f7e2c\",\r\n \"name\": \"emptydir-koreacentral-48fb4d4eb649472c8214b168f0fc9dad136f7e2c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier64304405a26e4151b42b4d37d804ef82ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-koreacentral-64304405a26e4151b42b4d3284d697e976b93f6\",\r\n \"name\": \"liveprobe-koreacentral-64304405a26e4151b42b4d3284d697e976b93f6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 4 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier6ace82f0a263473c95f744a805066505ACIWindowsRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-koreacentral-6ace82f0a263473c95f9195c7105d0cbe04\",\r\n \"name\": \"restartpolicy-koreacentral-6ace82f0a263473c95f9195c7105d0cbe04\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.41.74.238\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier7570fbac66434864b69402b16eb81d3fACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-koreacentral-7570fbac66434864b69402b161de29e50966f1b65\",\r\n \"name\": \"ingress-koreacentral-7570fbac66434864b69402b161de29e50966f1b65\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierb9b7ab8375d2460ca36d3569e4f01d21ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-koreacentral-b9b7ab8375d2460ca36d3569e970da11ba13a60db\",\r\n \"name\": \"cgposts-koreacentral-b9b7ab8375d2460ca36d3569e970da11ba13a60db\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierbd0f5d7ea7824405aa0c91d93cba69c3ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-koreacentral-bd0f5d7ea7824405aa0c91d93486c5c38299c0fc1\",\r\n \"name\": \"cgposts-koreacentral-bd0f5d7ea7824405aa0c91d93486c5c38299c0fc1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo 'c99677a3-827b-4695-9ba1-f1d16298046c'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiercbc61b7988b04826b909406d6599c8f0ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-koreacentral-cbc61b7988b04826b909406d6599f812cbc26a11ba4c\",\r\n \"name\": \"init-koreacentral-cbc61b7988b04826b909406d6599f812cbc26a11ba4c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere2f1eb59c3a4461e99abb10c6a0c05f6ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-koreacentral-e2f1eb59c3a4461e99abb10c6786902a11adb3062\",\r\n \"name\": \"cgposts-koreacentral-e2f1eb59c3a4461e99abb10c6786902a11adb3062\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-koreacentral\",\r\n \"name\": \"heartbeatexit-atlas-koreacentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-koreacentral\",\r\n \"name\": \"heartbeatexit-k8-koreacentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-koreacentral\",\r\n \"name\": \"immediatecrash-atlas-koreacentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-koreacentral\",\r\n \"name\": \"immediatecrash-k8-koreacentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.231.53.62\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-koreacentral\",\r\n \"fqdn\": \"longrunning-atlas-koreacentral.koreacentral.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-koreacentral\",\r\n \"name\": \"longrunning-atlas-koreacentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"aspnetcontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.194.46.82\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-koreacentral\",\r\n \"fqdn\": \"longrunning-k8-koreacentral.koreacentral.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-koreacentral\",\r\n \"name\": \"longrunning-k8-koreacentral\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-koreacentral/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-koreacentral/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"koreacentral\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier343900ea93b2499e928da519255d9b78ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-northcentralus-343900ea93b2499e928da51b2391e6b12616229\",\r\n \"name\": \"cgposts-northcentralus-343900ea93b2499e928da51b2391e6b12616229\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier4a330f649fe2458eb6e8f3f642954828ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-northcentralus-4a330f649fe2458eb6e8f3f892e4913c7e33919\",\r\n \"name\": \"cgposts-northcentralus-4a330f649fe2458eb6e8f3f892e4913c7e33919\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier4b57e8a6bd604a0bbf0582066f4a2982ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-northcentralus-4b57e8a6bd604a0bbf05820209ff4183a6a33c2\",\r\n \"name\": \"cgposts-northcentralus-4b57e8a6bd604a0bbf05820209ff4183a6a33c2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier89bad9b6eb8c457190413a2c521ce1c7ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-northcentralus-89bad9b6eb8c457190413702f8f598daec029\",\r\n \"name\": \"liveprobe-northcentralus-89bad9b6eb8c457190413702f8f598daec029\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.14\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"yes > /dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierbf2107b27579487eb11a421198cc786bACILinuxDockerhub/providers/Microsoft.ContainerInstance/containerGroups/dockerhub-northcentralus-bf2107b27579487eb11a4b8ca731874f1df48\",\r\n \"name\": \"dockerhub-northcentralus-bf2107b27579487eb11a4b8ca731874f1df48\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"157.55.160.159\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc3bf4d97769b4d6bb9a18313075e7187ACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-northcentralus-c3bf4d97769b4d6bb9a1831a1f7cb31714c7807\",\r\n \"name\": \"ingress-northcentralus-c3bf4d97769b4d6bb9a1831a1f7cb31714c7807\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc7c63de596994d19a4d127a67b99eed7ACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northcentralus-c7c63de596994d19a4d1270fad2e491f9788c8\",\r\n \"name\": \"outbound-northcentralus-c7c63de596994d19a4d1270fad2e491f9788c8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierdf56767c25db43449d8ee23c6ba912e6ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northcentralus-df56767c25db43449d8ee23c6bb7ea6968970ff4f2\",\r\n \"name\": \"init-northcentralus-df56767c25db43449d8ee23c6bb7ea6968970ff4f2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierf443c78a11854cdbba8aa5545fde9d8dACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northcentralus-f443c78a11854cdbba8aa5545fb1eef475878d480b\",\r\n \"name\": \"init-northcentralus-f443c78a11854cdbba8aa5545fb1eef475878d480b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-northcentralus\",\r\n \"name\": \"heartbeatexit-atlas-northcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-northcentralus\",\r\n \"name\": \"heartbeatexit-k8-northcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-northcentralus\",\r\n \"name\": \"immediatecrash-atlas-northcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-northcentralus\",\r\n \"name\": \"immediatecrash-k8-northcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.162.205.127\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-northcentralus\",\r\n \"fqdn\": \"longrunning-atlas-northcentralus.northcentralus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-northcentralus\",\r\n \"name\": \"longrunning-atlas-northcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"23.96.215.102\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-northcentralus\",\r\n \"fqdn\": \"longrunning-k8-northcentralus.northcentralus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-northcentralus\",\r\n \"name\": \"longrunning-k8-northcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-northcentralus/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-northcentralus/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '73874549-099f-4e0a-af2f-a4c171e7fae9' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.82.213.44\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier08e0814004cc45f9addccbdeb1dad172ACILinuxIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-08e0814004cc45f9addccbdeb1be96bcf42283eeae\",\r\n \"name\": \"ingress-northeurope-08e0814004cc45f9addccbdeb1be96bcf42283eeae\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '325e348e-c5d1-470c-8282-7150802b4ab2'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T02:02:40Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T02:02:40Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:02:32Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:02:32Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/dotnet/runtime:5.0-alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:02:36Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:02:36Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/dotnet/runtime:5.0-alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:02:39Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:02:39Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:02:40Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:02:40Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier08e0814004cc45f9addccbdeb1dad172ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-08e0814004cc45f9addccbdeb1dadedc2d14b0f1c1332\",\r\n \"name\": \"init-northeurope-08e0814004cc45f9addccbdeb1dadedc2d14b0f1c1332\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret1.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret2.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier08e0814004cc45f9addccbdeb1dad172ACILinuxSecretVolume/providers/Microsoft.ContainerInstance/containerGroups/secvol-northeurope-08e0814004cc45f9addccbdeb1d374d453ce48837f6\",\r\n \"name\": \"secvol-northeurope-08e0814004cc45f9addccbdeb1d374d453ce48837f6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier08e0814004cc45f9addccbdeb1dad172ACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-northeurope-08e0814004cc45f9addccbdeb1dad100ce9715d27aa5c7\",\r\n \"name\": \"msi-northeurope-08e0814004cc45f9addccbdeb1dad100ce9715d27aa5c7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier08e0814004cc45f9addccbdeb1dad172ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-northeurope-08e0814004cc45f9addccb906c4ce44e8a3393\",\r\n \"name\": \"escapedargs-northeurope-08e0814004cc45f9addccb906c4ce44e8a3393\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"51.104.141.100\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier08e0814004cc45f9addccbdeb1dad172ACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-08e0814004cc45f9addccbdeb1bcbf33faee366849\",\r\n \"name\": \"ingress-northeurope-08e0814004cc45f9addccbdeb1bcbf33faee366849\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.54.1.91\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"c675c9bbaf5c48fbb946c2d2088f4905\",\r\n \"fqdn\": \"c675c9bbaf5c48fbb946c2d2088f4905.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier08e0814004cc45f9addccbdeb1dad172ACIWindowsIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-08e0814004cc45f9addccbdeb1098ed5a6214c36a8\",\r\n \"name\": \"ingress-northeurope-08e0814004cc45f9addccbdeb1098ed5a6214c36a8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T02:04:53Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T02:04:53Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:04:20Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:04:20Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/windows/nanoserver:1809\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:04:52Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:04:52Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/windows/nanoserver:1809\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:04:52Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:04:52Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:04:53Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:04:53Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier08e0814004cc45f9addccbdeb1dad172ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-08e0814004cc45f9addccbdeb1dadc8d5bccbcf97506d\",\r\n \"name\": \"init-northeurope-08e0814004cc45f9addccbdeb1dadc8d5bccbcf97506d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.82.227.27\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier08e0814004cc45f9addccbdeb1dad172ACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-08e0814004cc45f9addccbdebb209bdbb03a67564\",\r\n \"name\": \"outbound-northeurope-08e0814004cc45f9addccbdebb209bdbb03a67564\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundchecker:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.105.2.234\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier15feec0e5f75417ba44babf2f5868d8cACILinuxConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-15feec0e5f75417ba44babf2f0ff874f9961639bf\",\r\n \"name\": \"outbound-northeurope-15feec0e5f75417ba44babf2f0ff874f9961639bf\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'e8f4e2dd-f5ea-4454-b0f5-167dd28e8e93' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.93.58.146\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier15feec0e5f75417ba44babf2f5868d8cACILinuxIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-15feec0e5f75417ba44babf2f5cb252d918b13698a\",\r\n \"name\": \"ingress-northeurope-15feec0e5f75417ba44babf2f5cb252d918b13698a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '2fe740c0-b5a2-493f-9f87-2f614e426853' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.82.250.161\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"7ecf17c321ef40ec993023fda01d5ff2\",\r\n \"fqdn\": \"7ecf17c321ef40ec993023fda01d5ff2.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier15feec0e5f75417ba44babf2f5868d8cACILinuxIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-15feec0e5f75417ba44babf2f59129a7a91cd21745\",\r\n \"name\": \"ingress-northeurope-15feec0e5f75417ba44babf2f59129a7a91cd21745\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo 'c97a4a6f-2bf3-4f0c-8253-c4568ed0168f'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T02:24:44.448Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T02:24:46.871Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier15feec0e5f75417ba44babf2f5868d8cACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-15feec0e5f75417ba44babf2f58684d2de8e91a4e2e9e\",\r\n \"name\": \"init-northeurope-15feec0e5f75417ba44babf2f58684d2de8e91a4e2e9e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier15feec0e5f75417ba44babf2f5868d8cACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-northeurope-15feec0e5f75417ba44babf2c8a04b73ffa85eec\",\r\n \"name\": \"liveprobe-northeurope-15feec0e5f75417ba44babf2c8a04b73ffa85eec\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 3; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier15feec0e5f75417ba44babf2f5868d8cACILinuxRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-northeurope-15feec0e5f75417ba44b8f89cdd63999a06f\",\r\n \"name\": \"restartpolicy-northeurope-15feec0e5f75417ba44b8f89cdd63999a06f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier15feec0e5f75417ba44babf2f5868d8cACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-northeurope-15feec0e5f75417ba44bab3ee4ac48dfdedf41\",\r\n \"name\": \"escapedargs-northeurope-15feec0e5f75417ba44bab3ee4ac48dfdedf41\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.54.102.120\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"d3a84c7fc93c48628ce6b1f3755928fa\",\r\n \"fqdn\": \"d3a84c7fc93c48628ce6b1f3755928fa.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier15feec0e5f75417ba44babf2f5868d8cACIWindowsIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-15feec0e5f75417ba44babf2f5a6d4d955462be253\",\r\n \"name\": \"ingress-northeurope-15feec0e5f75417ba44babf2f5a6d4d955462be253\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier15feec0e5f75417ba44babf2f5868d8cACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-northeurope-15feec0e5f75417ba44babf2f5d08fd92126aac3ef\",\r\n \"name\": \"cgposts-northeurope-15feec0e5f75417ba44babf2f5d08fd92126aac3ef\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.14\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"yes > /dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier1822267dea8746ab97b665495eaf61d4ACILinuxDockerhub/providers/Microsoft.ContainerInstance/containerGroups/dockerhub-northeurope-1822267dea8746ab97b66549a19d8fcf3b3af8ba\",\r\n \"name\": \"dockerhub-northeurope-1822267dea8746ab97b66549a19d8fcf3b3af8ba\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '0991ea38-f385-4add-949e-4477aa7a1c8f' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"a35bc6cabb4049a6a8ad9c7f7c1e983f\",\r\n \"fqdn\": \"a35bc6cabb4049a6a8ad9c7f7c1e983f.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier186d156a645a47e1a4f0945747dd5c68ACILinuxIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-186d156a645a47e1a4f09457475f8b073444cd515c\",\r\n \"name\": \"ingress-northeurope-186d156a645a47e1a4f09457475f8b073444cd515c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"gputestcuda9\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/cuda-tensforflow-serving:cuda9\",\r\n \"ports\": [\r\n {\r\n \"port\": 8501\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"MODEL_NAME\",\r\n \"value\": \"half_plus_two\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0,\r\n \"gpu\": {\r\n \"count\": 1,\r\n \"sku\": \"K80\"\r\n }\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"mountPath\": \"/models/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8501\r\n }\r\n ],\r\n \"ip\": \"20.67.130.96\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"azureFile\": {\r\n \"shareName\": \"gpu\",\r\n \"storageAccountName\": \"gpumodels\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier30c3d5869eb748ecabdf05d8785c92e9ACILinuxGpuCuda9/providers/Microsoft.ContainerInstance/containerGroups/cuda9-northeurope-30c3d5869eb748ecabdf05d8785c8b152585b9e5d951\",\r\n \"name\": \"cuda9-northeurope-30c3d5869eb748ecabdf05d8785c8b152585b9e5d951\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '163c3106-34b1-414c-ba7d-27100cfc627d' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.93.120.167\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier33611b39981e4dbf8512c832a20f9e97ACILinuxIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-33611b39981e4dbf8512c832a261d94be33547a28f\",\r\n \"name\": \"ingress-northeurope-33611b39981e4dbf8512c832a261d94be33547a28f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo 'c506d9fc-7d15-40b2-898a-7522e5e37531'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T02:21:58Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T02:21:58Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:21:52Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:21:52Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/dotnet/runtime:5.0-alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:21:55Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:21:55Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/dotnet/runtime:5.0-alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:21:58Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:21:58Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:21:58Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:21:58Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier33611b39981e4dbf8512c832a20f9e97ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-33611b39981e4dbf8512c832a20f9bbc39e61f42a7ebc\",\r\n \"name\": \"init-northeurope-33611b39981e4dbf8512c832a20f9bbc39e61f42a7ebc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier33611b39981e4dbf8512c832a20f9e97ACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-northeurope-33611b39981e4dbf8512c832a20f9e7c6f3d120ca7b051\",\r\n \"name\": \"msi-northeurope-33611b39981e4dbf8512c832a20f9e7c6f3d120ca7b051\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.82.156.82\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"9467164bdd32454a8176eda4afd11152\",\r\n \"fqdn\": \"9467164bdd32454a8176eda4afd11152.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier33611b39981e4dbf8512c832a20f9e97ACIWindowsIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-33611b39981e4dbf8512c832a28218141e1ab32492\",\r\n \"name\": \"ingress-northeurope-33611b39981e4dbf8512c832a28218141e1ab32492\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier44466f6f17cf4a09a80dd1854bba0decACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-44466f6f17cf4a09a80dd1854e590c512f069d382\",\r\n \"name\": \"outbound-northeurope-44466f6f17cf4a09a80dd1854e590c512f069d382\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundchecker:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.82.230.57\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53898508b025468ba4e800311b8c3488ACILinuxConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-53898508b025468ba4e8003110d2f4260abb9e354\",\r\n \"name\": \"outbound-northeurope-53898508b025468ba4e8003110d2f4260abb9e354\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53898508b025468ba4e800311b8c3488ACILinuxContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-northeurope-53898508b025468ba4e800311b8c3b97b53fae06d2c88\",\r\n \"name\": \"exec-northeurope-53898508b025468ba4e800311b8c3b97b53fae06d2c88\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '6f21d9e3-c60e-47f9-9c5a-290979ea117b' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.93.75.144\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"60934fbd6cee4e3f8ff943919a70bcdb\",\r\n \"fqdn\": \"60934fbd6cee4e3f8ff943919a70bcdb.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53898508b025468ba4e800311b8c3488ACILinuxIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-53898508b025468ba4e800311b7e099a9a8bd3d6bc\",\r\n \"name\": \"ingress-northeurope-53898508b025468ba4e800311b7e099a9a8bd3d6bc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '0c622633-62d9-4b8f-8403-7fe4fac40bb5'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T02:15:29Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T02:15:29Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:15:21Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:15:21Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/dotnet/runtime:5.0-alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:15:25Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:15:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/dotnet/runtime:5.0-alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:15:29Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:15:29Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:15:29Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:15:29Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53898508b025468ba4e800311b8c3488ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-53898508b025468ba4e800311b8c3f55aacfb9a7d684a\",\r\n \"name\": \"init-northeurope-53898508b025468ba4e800311b8c3f55aacfb9a7d684a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53898508b025468ba4e800311b8c3488ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-northeurope-53898508b025468ba4e8003179e5790d692cf5f2\",\r\n \"name\": \"liveprobe-northeurope-53898508b025468ba4e8003179e5790d692cf5f2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 3; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53898508b025468ba4e800311b8c3488ACILinuxRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-northeurope-53898508b025468ba4e80f75cab0a935bc7f\",\r\n \"name\": \"restartpolicy-northeurope-53898508b025468ba4e80f75cab0a935bc7f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret1.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret2.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53898508b025468ba4e800311b8c3488ACILinuxSecretVolume/providers/Microsoft.ContainerInstance/containerGroups/secvol-northeurope-53898508b025468ba4e800311b8714c6655770804c8\",\r\n \"name\": \"secvol-northeurope-53898508b025468ba4e800311b8714c6655770804c8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53898508b025468ba4e800311b8c3488ACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-northeurope-53898508b025468ba4e800311b8c348da8931ff5fba25b\",\r\n \"name\": \"msi-northeurope-53898508b025468ba4e800311b8c348da8931ff5fba25b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53898508b025468ba4e800311b8c3488ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-northeurope-53898508b025468ba4e800ca0cb2f54ccaaeba\",\r\n \"name\": \"escapedargs-northeurope-53898508b025468ba4e800ca0cb2f54ccaaeba\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.93.48.211\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53898508b025468ba4e800311b8c3488ACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-53898508b025468ba4e800311b7f984dc1da1dd96c\",\r\n \"name\": \"ingress-northeurope-53898508b025468ba4e800311b7f984dc1da1dd96c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.82.233.44\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"1e99b4998b2f45a1bac0e2ca105908ff\",\r\n \"fqdn\": \"1e99b4998b2f45a1bac0e2ca105908ff.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53898508b025468ba4e800311b8c3488ACIWindowsIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-53898508b025468ba4e800311bddf8fa325ee1ebd4\",\r\n \"name\": \"ingress-northeurope-53898508b025468ba4e800311bddf8fa325ee1ebd4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 4 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53898508b025468ba4e800311b8c3488ACIWindowsRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-northeurope-53898508b025468ba4e89813bb1ae78c8ae9\",\r\n \"name\": \"restartpolicy-northeurope-53898508b025468ba4e89813bb1ae78c8ae9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53898508b025468ba4e800311b8c3488ACIWindowsContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-northeurope-53898508b025468ba4e800311b8c3d272db3f2c114b04\",\r\n \"name\": \"exec-northeurope-53898508b025468ba4e800311b8c3d272db3f2c114b04\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T02:10:43Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T02:10:43Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:10:12Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:10:12Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/windows/nanoserver:1809\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:10:42Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:10:42Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/windows/nanoserver:1809\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:10:42Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:10:42Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:10:43Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:10:43Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53898508b025468ba4e800311b8c3488ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-53898508b025468ba4e800311b8c33d282d543f341307\",\r\n \"name\": \"init-northeurope-53898508b025468ba4e800311b8c33d282d543f341307\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.67.133.144\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53898508b025468ba4e800311b8c3488ACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-53898508b025468ba4e8003114461300d0dcd056e\",\r\n \"name\": \"outbound-northeurope-53898508b025468ba4e8003114461300d0dcd056e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '335d08c2-59e7-4d5d-bf5f-ac26aa04950f'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53934e61f4fc4d2ea82ba69394e923d7ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-53934e61f4fc4d2ea82ba69394e9265c29c16ede7030f\",\r\n \"name\": \"init-northeurope-53934e61f4fc4d2ea82ba69394e9265c29c16ede7030f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundchecker:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.82.211.33\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier58e177dbf82740dc996eeaad911b0723ACILinuxConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-58e177dbf82740dc996eeaad9a7f4ffb7921e667d\",\r\n \"name\": \"outbound-northeurope-58e177dbf82740dc996eeaad9a7f4ffb7921e667d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier58e177dbf82740dc996eeaad911b0723ACILinuxContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-northeurope-58e177dbf82740dc996eeaad911b0a40de5cf34b6cf28\",\r\n \"name\": \"exec-northeurope-58e177dbf82740dc996eeaad911b0a40de5cf34b6cf28\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '4689aed9-881a-4ae6-8fde-61ac3ceb2084' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.93.40.234\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier58e177dbf82740dc996eeaad911b0723ACILinuxIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-58e177dbf82740dc996eeaad914f893a209787aed5\",\r\n \"name\": \"ingress-northeurope-58e177dbf82740dc996eeaad914f893a209787aed5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'f72bba19-4c26-49ca-9d3a-be94d44c7cb3' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"51.104.144.206\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"00cc7c96e31b4ab2bf491a82d7aa12a9\",\r\n \"fqdn\": \"00cc7c96e31b4ab2bf491a82d7aa12a9.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier58e177dbf82740dc996eeaad911b0723ACILinuxIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-58e177dbf82740dc996eeaad9117ba92d3b489cb0f\",\r\n \"name\": \"ingress-northeurope-58e177dbf82740dc996eeaad9117ba92d3b489cb0f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '26c6ce51-2ec1-431f-b20e-fb522e140ffb'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T02:20:32Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T02:20:32Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:20:27Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:20:27Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/dotnet/runtime:5.0-alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:20:29Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:20:29Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/dotnet/runtime:5.0-alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:20:32Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:20:32Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:20:32Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:20:32Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier58e177dbf82740dc996eeaad911b0723ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-58e177dbf82740dc996eeaad911b0e7bfe2b9301e452e\",\r\n \"name\": \"init-northeurope-58e177dbf82740dc996eeaad911b0e7bfe2b9301e452e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier58e177dbf82740dc996eeaad911b0723ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-northeurope-58e177dbf82740dc996eeaad332cd6ace368fbc4\",\r\n \"name\": \"liveprobe-northeurope-58e177dbf82740dc996eeaad332cd6ace368fbc4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier58e177dbf82740dc996eeaad911b0723ACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-northeurope-58e177dbf82740dc996eeaad911b0782a66592d50d150d\",\r\n \"name\": \"msi-northeurope-58e177dbf82740dc996eeaad911b0782a66592d50d150d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier58e177dbf82740dc996eeaad911b0723ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-northeurope-58e177dbf82740dc996eea1dc60aa300b20c64\",\r\n \"name\": \"escapedargs-northeurope-58e177dbf82740dc996eea1dc60aa300b20c64\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.93.41.241\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier58e177dbf82740dc996eeaad911b0723ACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-58e177dbf82740dc996eeaad91d9f00a9e96ea81c5\",\r\n \"name\": \"ingress-northeurope-58e177dbf82740dc996eeaad91d9f00a9e96ea81c5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier58e177dbf82740dc996eeaad911b0723ACIWindowsContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-northeurope-58e177dbf82740dc996eeaad911b03b111e4ebb49a254\",\r\n \"name\": \"exec-northeurope-58e177dbf82740dc996eeaad911b03b111e4ebb49a254\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier58e177dbf82740dc996eeaad911b0723ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-northeurope-58e177dbf82740dc996eeaad913eb20a16367a322d\",\r\n \"name\": \"cgposts-northeurope-58e177dbf82740dc996eeaad913eb20a16367a322d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.82.203.238\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier58e177dbf82740dc996eeaad911b0723ACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-58e177dbf82740dc996eeaad91e75ed020ab57ee4\",\r\n \"name\": \"outbound-northeurope-58e177dbf82740dc996eeaad91e75ed020ab57ee4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T02:10:40Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T02:10:41Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:10:13Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:10:13Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/windows/nanoserver:1809\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:10:38Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:10:38Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/windows/nanoserver:1809\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:10:38Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:10:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:10:41Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:10:41Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier58e177dbf82740dc996eeaad911b0723ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-58e177dbf82740dc996eeaad911b060876fda1b49e172\",\r\n \"name\": \"init-northeurope-58e177dbf82740dc996eeaad911b060876fda1b49e172\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier5f07889eab854ae0b51488108fb5cfaeACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-northeurope-5f07889eab854ae0b51488108fb9c61df822967c41\",\r\n \"name\": \"cgposts-northeurope-5f07889eab854ae0b51488108fb9c61df822967c41\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundchecker:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.93.73.96\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8ea1c230c5ac4daa995062d248c75481ACILinuxConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-8ea1c230c5ac4daa995062d242a2bd916124c3302\",\r\n \"name\": \"outbound-northeurope-8ea1c230c5ac4daa995062d242a2bd916124c3302\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8ea1c230c5ac4daa995062d248c75481ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-northeurope-8ea1c230c5ac4daa99506231548cc53326e7a1\",\r\n \"name\": \"escapedargs-northeurope-8ea1c230c5ac4daa99506231548cc53326e7a1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.82.250.218\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8ea1c230c5ac4daa995062d248c75481ACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-8ea1c230c5ac4daa995062d248593c7d18152f2a6f\",\r\n \"name\": \"ingress-northeurope-8ea1c230c5ac4daa995062d248593c7d18152f2a6f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8ea1c230c5ac4daa995062d248c75481ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-northeurope-8ea1c230c5ac4daa995062d248278eb33b5cca3928\",\r\n \"name\": \"cgposts-northeurope-8ea1c230c5ac4daa995062d248278eb33b5cca3928\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.105.5.99\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8ea1c230c5ac4daa995062d248c75481ACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-8ea1c230c5ac4daa995062d24fe6b1ed5b93c2dcf\",\r\n \"name\": \"outbound-northeurope-8ea1c230c5ac4daa995062d24fe6b1ed5b93c2dcf\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T02:21:16.746Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T02:21:20.255Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8ea1c230c5ac4daa995062d248c75481ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-8ea1c230c5ac4daa995062d248c7531bf12ded39bb58b\",\r\n \"name\": \"init-northeurope-8ea1c230c5ac4daa995062d248c7531bf12ded39bb58b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 4 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8fe643e9f9d2435c86e00cfe73ee626dACIWindowsRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-northeurope-8fe643e9f9d2435c86e057da9558f5352df3\",\r\n \"name\": \"restartpolicy-northeurope-8fe643e9f9d2435c86e057da9558f5352df3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundchecker:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.93.73.4\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier91fe2bdb61b546a2b4e14ae44df6e039ACILinuxConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-91fe2bdb61b546a2b4e14ae446c625c1a5bb5e8f9\",\r\n \"name\": \"outbound-northeurope-91fe2bdb61b546a2b4e14ae446c625c1a5bb5e8f9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier91fe2bdb61b546a2b4e14ae44df6e039ACILinuxContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-northeurope-91fe2bdb61b546a2b4e14ae44df6eabba1ef0201693bf\",\r\n \"name\": \"exec-northeurope-91fe2bdb61b546a2b4e14ae44df6eabba1ef0201693bf\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '18d4ac61-7333-4016-9bc3-264546226cec' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.105.10.209\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier91fe2bdb61b546a2b4e14ae44df6e039ACILinuxIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-91fe2bdb61b546a2b4e14ae44d83051a23714a3f29\",\r\n \"name\": \"ingress-northeurope-91fe2bdb61b546a2b4e14ae44d83051a23714a3f29\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '343a3bb5-9f15-4ab2-9fb4-049202b61d44' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.158.116.36\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"9318de6ea6844791978aea91600dc0ac\",\r\n \"fqdn\": \"9318de6ea6844791978aea91600dc0ac.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier91fe2bdb61b546a2b4e14ae44df6e039ACILinuxIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-91fe2bdb61b546a2b4e14ae44d1f2689c3ff0a8b16\",\r\n \"name\": \"ingress-northeurope-91fe2bdb61b546a2b4e14ae44d1f2689c3ff0a8b16\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '68335a0c-bb07-499f-86ec-e38178dc1af3'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T02:17:54.907Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T02:17:56.271Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier91fe2bdb61b546a2b4e14ae44df6e039ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-91fe2bdb61b546a2b4e14ae44df6e159bbed569002cca\",\r\n \"name\": \"init-northeurope-91fe2bdb61b546a2b4e14ae44df6e159bbed569002cca\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier91fe2bdb61b546a2b4e14ae44df6e039ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-northeurope-91fe2bdb61b546a2b4e14ae4aa72ec4f7cb94724\",\r\n \"name\": \"liveprobe-northeurope-91fe2bdb61b546a2b4e14ae4aa72ec4f7cb94724\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 3; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier91fe2bdb61b546a2b4e14ae44df6e039ACILinuxRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-northeurope-91fe2bdb61b546a2b4e1e8f25a59d9f38b80\",\r\n \"name\": \"restartpolicy-northeurope-91fe2bdb61b546a2b4e1e8f25a59d9f38b80\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret1.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret2.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier91fe2bdb61b546a2b4e14ae44df6e039ACILinuxSecretVolume/providers/Microsoft.ContainerInstance/containerGroups/secvol-northeurope-91fe2bdb61b546a2b4e14ae44dfaa3298a446fa51ba\",\r\n \"name\": \"secvol-northeurope-91fe2bdb61b546a2b4e14ae44dfaa3298a446fa51ba\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier91fe2bdb61b546a2b4e14ae44df6e039ACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-northeurope-91fe2bdb61b546a2b4e14ae44df6e06b41ca7b2b3b60ba\",\r\n \"name\": \"msi-northeurope-91fe2bdb61b546a2b4e14ae44df6e06b41ca7b2b3b60ba\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.93.41.29\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"5cb227d698af40bf901a1c33b1d2c8d4\",\r\n \"fqdn\": \"5cb227d698af40bf901a1c33b1d2c8d4.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier91fe2bdb61b546a2b4e14ae44df6e039ACIWindowsIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-91fe2bdb61b546a2b4e14ae44ddb4d99295077eb1a\",\r\n \"name\": \"ingress-northeurope-91fe2bdb61b546a2b4e14ae44ddb4d99295077eb1a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier91fe2bdb61b546a2b4e14ae44df6e039ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-northeurope-91fe2bdb61b546a2b4e14ae44dd51fcfeedf5c3812\",\r\n \"name\": \"cgposts-northeurope-91fe2bdb61b546a2b4e14ae44dd51fcfeedf5c3812\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.105.1.71\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier91fe2bdb61b546a2b4e14ae44df6e039ACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-91fe2bdb61b546a2b4e14ae44d2a337417af0d341\",\r\n \"name\": \"outbound-northeurope-91fe2bdb61b546a2b4e14ae44d2a337417af0d341\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 4 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier91fe2bdb61b546a2b4e14ae44df6e039ACIWindowsRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-northeurope-91fe2bdb61b546a2b4e14b7db2bdc3cddd1a\",\r\n \"name\": \"restartpolicy-northeurope-91fe2bdb61b546a2b4e14b7db2bdc3cddd1a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier9202e6fd4e3a46f7aeae937135d71fdcACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-northeurope-9202e6fd4e3a46f7aeae935ab5861c897bf5b2\",\r\n \"name\": \"escapedargs-northeurope-9202e6fd4e3a46f7aeae935ab5861c897bf5b2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"gputestcuda10\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/cuda-tensforflow-serving:cuda10\",\r\n \"ports\": [\r\n {\r\n \"port\": 8501\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"MODEL_NAME\",\r\n \"value\": \"half_plus_two\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0,\r\n \"gpu\": {\r\n \"count\": 1,\r\n \"sku\": \"K80\"\r\n }\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"mountPath\": \"/models/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8501\r\n }\r\n ],\r\n \"ip\": \"20.93.88.199\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"azureFile\": {\r\n \"shareName\": \"gpu\",\r\n \"storageAccountName\": \"gpumodels\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier96f6f92646704bba8da3d1c48340a416ACILinuxGpuCuda10/providers/Microsoft.ContainerInstance/containerGroups/cuda10-northeurope-96f6f92646704bba8da3d1c4834048d21f0f0ea6d61\",\r\n \"name\": \"cuda10-northeurope-96f6f92646704bba8da3d1c4834048d21f0f0ea6d61\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"gputestcuda9\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/cuda-tensforflow-serving:cuda9\",\r\n \"ports\": [\r\n {\r\n \"port\": 8501\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"MODEL_NAME\",\r\n \"value\": \"half_plus_two\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0,\r\n \"gpu\": {\r\n \"count\": 1,\r\n \"sku\": \"K80\"\r\n }\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"mountPath\": \"/models/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8501\r\n }\r\n ],\r\n \"ip\": \"20.93.81.50\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"azureFile\": {\r\n \"shareName\": \"gpu\",\r\n \"storageAccountName\": \"gpumodels\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier96f6f92646704bba8da3d1c48340a416ACILinuxGpuCuda9/providers/Microsoft.ContainerInstance/containerGroups/cuda9-northeurope-96f6f92646704bba8da3d1c48340651cd5d5e8b98dca\",\r\n \"name\": \"cuda9-northeurope-96f6f92646704bba8da3d1c48340651cd5d5e8b98dca\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '3f3d01d3-0ddb-480e-9dd2-fb8b3b3845f8'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier9feec4e908b44ff1aa1753654ec917c0ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-9feec4e908b44ff1aa1753654ec9112dfe9f1d051b51e\",\r\n \"name\": \"init-northeurope-9feec4e908b44ff1aa1753654ec9112dfe9f1d051b51e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.14\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"yes > /dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera7a1405479d04d9cbd044091cb4c7dedACILinuxDockerhub/providers/Microsoft.ContainerInstance/containerGroups/dockerhub-northeurope-a7a1405479d04d9cbd04409159576260642f3b38\",\r\n \"name\": \"dockerhub-northeurope-a7a1405479d04d9cbd04409159576260642f3b38\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera7ab70ac1faa445d94416e6f7fe8e54bACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-northeurope-a7ab70ac1faa445d94416e6f7ffafb715c992b2020\",\r\n \"name\": \"cgposts-northeurope-a7ab70ac1faa445d94416e6f7ffafb715c992b2020\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/vnetchecker:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ALWAYSRUNCGIP\",\r\n \"value\": \"10.20.0.5\"\r\n },\r\n {\r\n \"name\": \"RUNNERLOCATION\",\r\n \"value\": \"northeurope\"\r\n },\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.6\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-northeurope/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera88a73c540104099a08276b9c0ba9624ACILinuxByoVnetConnectivity/providers/Microsoft.ContainerInstance/containerGroups/byovnet-northeurope-a88a73c540104099a08276b9c0c8c7e1643dd4cb23\",\r\n \"name\": \"byovnet-northeurope-a88a73c540104099a08276b9c0c8c7e1643dd4cb23\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/files/srca88a73c540104099a08276b9c0ba9624acilinuxvnetazurefilevolume.txt\",\r\n \"/files/dsta88a73c540104099a08276b9c0ba9624acilinuxvnetazurefilevolume.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [],\r\n \"ip\": \"10.20.0.9\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"azureFile\": {\r\n \"shareName\": \"sbzend2end-linux-a88a73c540104099a08276b9c0ba9c718fcea2083145f\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-northeurope/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera88a73c540104099a08276b9c0ba9624ACILinuxVnetAzureFileVolume/providers/Microsoft.ContainerInstance/containerGroups/azf-northeurope-a88a73c540104099a08276b9c0ba962f9d945c67390edd\",\r\n \"name\": \"azf-northeurope-a88a73c540104099a08276b9c0ba962f9d945c67390edd\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifieraaac7d075d094f16890297c4c0139b08ACILinuxContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-northeurope-aaac7d075d094f16890297c4c0139474042b48dc008e2\",\r\n \"name\": \"exec-northeurope-aaac7d075d094f16890297c4c0139474042b48dc008e2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '50045a45-b426-45db-b0d8-1bc93fd8f8c0'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T02:01:32Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T02:01:32Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:01:26Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:01:26Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/dotnet/runtime:5.0-alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:01:29Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:01:29Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/dotnet/runtime:5.0-alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:01:32Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:01:32Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:01:32Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:01:32Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifieraaac7d075d094f16890297c4c0139b08ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-aaac7d075d094f16890297c4c0139a8e9458fb27db7ef\",\r\n \"name\": \"init-northeurope-aaac7d075d094f16890297c4c0139a8e9458fb27db7ef\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifieraaac7d075d094f16890297c4c0139b08ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-northeurope-aaac7d075d094f16890297c4513490296dc288dd\",\r\n \"name\": \"liveprobe-northeurope-aaac7d075d094f16890297c4513490296dc288dd\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifieraaac7d075d094f16890297c4c0139b08ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-northeurope-aaac7d075d094f16890297371e55fc59e0793c\",\r\n \"name\": \"escapedargs-northeurope-aaac7d075d094f16890297371e55fc59e0793c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifieraaac7d075d094f16890297c4c0139b08ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-northeurope-aaac7d075d094f16890297c4c0f7d5657383d8e5bb\",\r\n \"name\": \"cgposts-northeurope-aaac7d075d094f16890297c4c0f7d5657383d8e5bb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundchecker:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.82.222.207\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc1b8ba07984f400b8874329171b52df4ACILinuxConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-c1b8ba07984f400b8874329170edafffeede6b347\",\r\n \"name\": \"outbound-northeurope-c1b8ba07984f400b8874329170edafffeede6b347\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc1b8ba07984f400b8874329171b52df4ACILinuxContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-northeurope-c1b8ba07984f400b8874329171b52a6cb472b37e083da\",\r\n \"name\": \"exec-northeurope-c1b8ba07984f400b8874329171b52a6cb472b37e083da\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '18f1c80f-99e6-42dd-bd35-b68e560f9aed' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.67.212.53\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc1b8ba07984f400b8874329171b52df4ACILinuxIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-c1b8ba07984f400b8874329171c5ebe2cd6775d7c9\",\r\n \"name\": \"ingress-northeurope-c1b8ba07984f400b8874329171c5ebe2cd6775d7c9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ab0687e7-ba1e-4729-8690-5b85d49d23a7' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.67.229.71\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"0c8056fbffdf48ccac4cc5655f10ce87\",\r\n \"fqdn\": \"0c8056fbffdf48ccac4cc5655f10ce87.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc1b8ba07984f400b8874329171b52df4ACILinuxIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-c1b8ba07984f400b887432917177640e46f9d72e46\",\r\n \"name\": \"ingress-northeurope-c1b8ba07984f400b887432917177640e46f9d72e46\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '2b9386fd-08eb-4d01-b0e4-64ff09165e50'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T02:15:13Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T02:15:13Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:15:09Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:15:09Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/dotnet/runtime:5.0-alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:15:12Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:15:12Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/dotnet/runtime:5.0-alpine\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:15:13Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:15:13Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:15:13Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:15:13Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc1b8ba07984f400b8874329171b52df4ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-c1b8ba07984f400b8874329171b524c6acd77db19e4d0\",\r\n \"name\": \"init-northeurope-c1b8ba07984f400b8874329171b524c6acd77db19e4d0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc1b8ba07984f400b8874329171b52df4ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-northeurope-c1b8ba07984f400b887432915dc17e32c51ed9a3\",\r\n \"name\": \"liveprobe-northeurope-c1b8ba07984f400b887432915dc17e32c51ed9a3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 3; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc1b8ba07984f400b8874329171b52df4ACILinuxRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-northeurope-c1b8ba07984f400b8874f44e01b5d8080575\",\r\n \"name\": \"restartpolicy-northeurope-c1b8ba07984f400b8874f44e01b5d8080575\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc1b8ba07984f400b8874329171b52df4ACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-northeurope-c1b8ba07984f400b8874329171b52d5fc8920cf212274b\",\r\n \"name\": \"msi-northeurope-c1b8ba07984f400b8874329171b52d5fc8920cf212274b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc1b8ba07984f400b8874329171b52df4ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-northeurope-c1b8ba07984f400b8874329a8eb38c3a194a5a\",\r\n \"name\": \"escapedargs-northeurope-c1b8ba07984f400b8874329a8eb38c3a194a5a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.93.72.211\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc1b8ba07984f400b8874329171b52df4ACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-c1b8ba07984f400b88743291713715a0fc0b28e74a\",\r\n \"name\": \"ingress-northeurope-c1b8ba07984f400b88743291713715a0fc0b28e74a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.82.223.31\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"3d872a5d894e408ab0cf61a40cc16edf\",\r\n \"fqdn\": \"3d872a5d894e408ab0cf61a40cc16edf.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc1b8ba07984f400b8874329171b52df4ACIWindowsIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-c1b8ba07984f400b88743291713303b97c359c1ce2\",\r\n \"name\": \"ingress-northeurope-c1b8ba07984f400b88743291713303b97c359c1ce2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc1b8ba07984f400b8874329171b52df4ACIWindowsContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-northeurope-c1b8ba07984f400b8874329171b524811d13a5115f7e7\",\r\n \"name\": \"exec-northeurope-c1b8ba07984f400b8874329171b524811d13a5115f7e7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc1b8ba07984f400b8874329171b52df4ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-northeurope-c1b8ba07984f400b8874329171bb9c24026118b7e5\",\r\n \"name\": \"cgposts-northeurope-c1b8ba07984f400b8874329171bb9c24026118b7e5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T02:12:42Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T02:12:42Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:12:37Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:12:37Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"mcr.microsoft.com/windows/nanoserver:1809\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:12:38Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:12:38Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"mcr.microsoft.com/windows/nanoserver:1809\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:12:38Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:12:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2021-08-04T02:12:42Z\",\r\n \"lastTimestamp\": \"2021-08-04T02:12:42Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc1b8ba07984f400b8874329171b52df4ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-c1b8ba07984f400b8874329171b529c9e97180cb54d54\",\r\n \"name\": \"init-northeurope-c1b8ba07984f400b8874329171b529c9e97180cb54d54\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 4 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc1b8ba07984f400b8874329171b52df4ACIWindowsRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-northeurope-c1b8ba07984f400b88742dc3d7df70ae7256\",\r\n \"name\": \"restartpolicy-northeurope-c1b8ba07984f400b88742dc3d7df70ae7256\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"51.104.185.97\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc1b8ba07984f400b8874329171b52df4ACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-c1b8ba07984f400b8874329174d63612cec267fc8\",\r\n \"name\": \"outbound-northeurope-c1b8ba07984f400b8874329174d63612cec267fc8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundchecker:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.93.76.10\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc2fb5ea62c5246f38ec2c53e2e154e64ACILinuxConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-c2fb5ea62c5246f38ec2c53e2e19779f90c0f6257\",\r\n \"name\": \"outbound-northeurope-c2fb5ea62c5246f38ec2c53e2e19779f90c0f6257\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc2fb5ea62c5246f38ec2c53e2e154e64ACILinuxContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-northeurope-c2fb5ea62c5246f38ec2c53e2e15461ba71c24906793d\",\r\n \"name\": \"exec-northeurope-c2fb5ea62c5246f38ec2c53e2e15461ba71c24906793d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 3; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc2fb5ea62c5246f38ec2c53e2e154e64ACILinuxRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-northeurope-c2fb5ea62c5246f38ec2b75f2c246c034ec8\",\r\n \"name\": \"restartpolicy-northeurope-c2fb5ea62c5246f38ec2b75f2c246c034ec8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret1.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret2.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc2fb5ea62c5246f38ec2c53e2e154e64ACILinuxSecretVolume/providers/Microsoft.ContainerInstance/containerGroups/secvol-northeurope-c2fb5ea62c5246f38ec2c53e2e12e6916df0a82887b\",\r\n \"name\": \"secvol-northeurope-c2fb5ea62c5246f38ec2c53e2e12e6916df0a82887b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc2fb5ea62c5246f38ec2c53e2e154e64ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-northeurope-c2fb5ea62c5246f38ec2c54dc03334d8adbc94\",\r\n \"name\": \"escapedargs-northeurope-c2fb5ea62c5246f38ec2c54dc03334d8adbc94\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.54.100.158\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc2fb5ea62c5246f38ec2c53e2e154e64ACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-c2fb5ea62c5246f38ec2c53e2ba2e145bb3c4e881\",\r\n \"name\": \"outbound-northeurope-c2fb5ea62c5246f38ec2c53e2ba2e145bb3c4e881\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc6479deff7424423882765bbef06f8ffACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-northeurope-c6479deff7424423882765bbef273198df5b9a1eef\",\r\n \"name\": \"cgposts-northeurope-c6479deff7424423882765bbef273198df5b9a1eef\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"gputestcuda10\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/cuda-tensforflow-serving:cuda10\",\r\n \"ports\": [\r\n {\r\n \"port\": 8501\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"MODEL_NAME\",\r\n \"value\": \"half_plus_two\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0,\r\n \"gpu\": {\r\n \"count\": 1,\r\n \"sku\": \"K80\"\r\n }\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"mountPath\": \"/models/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8501\r\n }\r\n ],\r\n \"ip\": \"52.236.24.213\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"azureFile\": {\r\n \"shareName\": \"gpu\",\r\n \"storageAccountName\": \"gpumodels\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc689dfd7667941be8f5ee254efa7c63dACILinuxGpuCuda10/providers/Microsoft.ContainerInstance/containerGroups/cuda10-northeurope-c689dfd7667941be8f5ee254efa41710d5b6d70e4d8\",\r\n \"name\": \"cuda10-northeurope-c689dfd7667941be8f5ee254efa41710d5b6d70e4d8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.82.194.178\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc9643e73c664464e941f2016b5faf4daACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-c9643e73c664464e941f2016b3c0d04c9dcf1303d\",\r\n \"name\": \"outbound-northeurope-c9643e73c664464e941f2016b3c0d04c9dcf1303d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierd2a6fd4a62dd4c25a8facc8250fa5f57ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-northeurope-d2a6fd4a62dd4c25a8facc82507377df0c402bd4b6\",\r\n \"name\": \"cgposts-northeurope-d2a6fd4a62dd4c25a8facc82507377df0c402bd4b6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"gputestcuda10\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/cuda-tensforflow-serving:cuda10\",\r\n \"ports\": [\r\n {\r\n \"port\": 8501\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"MODEL_NAME\",\r\n \"value\": \"half_plus_two\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0,\r\n \"gpu\": {\r\n \"count\": 1,\r\n \"sku\": \"K80\"\r\n }\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"mountPath\": \"/models/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8501\r\n }\r\n ],\r\n \"ip\": \"20.82.208.175\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"azureFile\": {\r\n \"shareName\": \"gpu\",\r\n \"storageAccountName\": \"gpumodels\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierda6ab787596043979ea73049c93c22bfACILinuxGpuCuda10/providers/Microsoft.ContainerInstance/containerGroups/cuda10-northeurope-da6ab787596043979ea73049c936d64589ddc513156\",\r\n \"name\": \"cuda10-northeurope-da6ab787596043979ea73049c936d64589ddc513156\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"gputestcuda9\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/cuda-tensforflow-serving:cuda9\",\r\n \"ports\": [\r\n {\r\n \"port\": 8501\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"MODEL_NAME\",\r\n \"value\": \"half_plus_two\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0,\r\n \"gpu\": {\r\n \"count\": 1,\r\n \"sku\": \"K80\"\r\n }\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"mountPath\": \"/models/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8501\r\n }\r\n ],\r\n \"ip\": \"20.54.35.65\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"azureFile\": {\r\n \"shareName\": \"gpu\",\r\n \"storageAccountName\": \"gpumodels\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierda6ab787596043979ea73049c93c22bfACILinuxGpuCuda9/providers/Microsoft.ContainerInstance/containerGroups/cuda9-northeurope-da6ab787596043979ea73049c93c7f851299e409819f\",\r\n \"name\": \"cuda9-northeurope-da6ab787596043979ea73049c93c7f851299e409819f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundchecker:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.67.141.78\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACILinuxConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-e3d5c92a6c8c425f97a661562e9811129072d14ed\",\r\n \"name\": \"outbound-northeurope-e3d5c92a6c8c425f97a661562e9811129072d14ed\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACILinuxContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-northeurope-e3d5c92a6c8c425f97a6615623c3032309e90f1e26cce\",\r\n \"name\": \"exec-northeurope-e3d5c92a6c8c425f97a6615623c3032309e90f1e26cce\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '822540d5-c099-491f-82d8-d95a51202ea3' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.93.26.172\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACILinuxIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-e3d5c92a6c8c425f97a6615623282026343cf83ed1\",\r\n \"name\": \"ingress-northeurope-e3d5c92a6c8c425f97a6615623282026343cf83ed1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '12b06b0c-da3e-4fb4-870e-13554496e3d9' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.105.10.96\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"94bcf216546a47ba90f076d7fc3070cf\",\r\n \"fqdn\": \"94bcf216546a47ba90f076d7fc3070cf.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACILinuxIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-e3d5c92a6c8c425f97a66156237f6cfa2c0645dc98\",\r\n \"name\": \"ingress-northeurope-e3d5c92a6c8c425f97a66156237f6cfa2c0645dc98\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo 'e8b79e35-7248-4da1-9c61-b5cbaabc591c'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T02:06:58.031Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T02:07:00.725Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-e3d5c92a6c8c425f97a6615623c30760978da814658ce\",\r\n \"name\": \"init-northeurope-e3d5c92a6c8c425f97a6615623c30760978da814658ce\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-northeurope-e3d5c92a6c8c425f97a661562f8ce6a79b624229\",\r\n \"name\": \"liveprobe-northeurope-e3d5c92a6c8c425f97a661562f8ce6a79b624229\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 3; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACILinuxRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-northeurope-e3d5c92a6c8c425f97a6701d2fd45d38e8dc\",\r\n \"name\": \"restartpolicy-northeurope-e3d5c92a6c8c425f97a6701d2fd45d38e8dc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret1.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret2.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACILinuxSecretVolume/providers/Microsoft.ContainerInstance/containerGroups/secvol-northeurope-e3d5c92a6c8c425f97a6615623c3f92e33186435b64\",\r\n \"name\": \"secvol-northeurope-e3d5c92a6c8c425f97a6615623c3f92e33186435b64\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-northeurope-e3d5c92a6c8c425f97a6615623c307a6b5553fd1a1f0b6\",\r\n \"name\": \"msi-northeurope-e3d5c92a6c8c425f97a6615623c307a6b5553fd1a1f0b6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-northeurope-e3d5c92a6c8c425f97a66137990f44d2988625\",\r\n \"name\": \"escapedargs-northeurope-e3d5c92a6c8c425f97a66137990f44d2988625\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.82.251.227\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-e3d5c92a6c8c425f97a66156239a535c5ce6717b7a\",\r\n \"name\": \"ingress-northeurope-e3d5c92a6c8c425f97a66156239a535c5ce6717b7a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.146.153.149\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"09a719cc139d4237b4ebc3156cba5140\",\r\n \"fqdn\": \"09a719cc139d4237b4ebc3156cba5140.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACIWindowsIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-northeurope-e3d5c92a6c8c425f97a66156234e783452c65d1b57\",\r\n \"name\": \"ingress-northeurope-e3d5c92a6c8c425f97a66156234e783452c65d1b57\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 4 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACIWindowsRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-northeurope-e3d5c92a6c8c425f97a61c398486ae234756\",\r\n \"name\": \"restartpolicy-northeurope-e3d5c92a6c8c425f97a61c398486ae234756\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-northeurope-e3d5c92a6c8c425f97a6615623a24bc40882f1aebf\",\r\n \"name\": \"cgposts-northeurope-e3d5c92a6c8c425f97a6615623a24bc40882f1aebf\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-08-04T02:18:12.164Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-08-04T02:18:15.455Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-northeurope-e3d5c92a6c8c425f97a6615623c301340edee1a922e6b\",\r\n \"name\": \"init-northeurope-e3d5c92a6c8c425f97a6615623c301340edee1a922e6b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACIWindowsContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-northeurope-e3d5c92a6c8c425f97a6615623c30ca91a99b40906feb\",\r\n \"name\": \"exec-northeurope-e3d5c92a6c8c425f97a6615623c30ca91a99b40906feb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"51.104.189.82\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere3d5c92a6c8c425f97a6615623c30705ACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-northeurope-e3d5c92a6c8c425f97a66156266b6e16a35bd31de\",\r\n \"name\": \"outbound-northeurope-e3d5c92a6c8c425f97a66156266b6e16a35bd31de\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere4019c293d73460ab276b5cd77340c66ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-northeurope-e4019c293d73460ab276b5cd775256186e1b28fd1f\",\r\n \"name\": \"cgposts-northeurope-e4019c293d73460ab276b5cd775256186e1b28fd1f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/vnetchecker:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ALWAYSRUNCGIP\",\r\n \"value\": \"10.20.0.5\"\r\n },\r\n {\r\n \"name\": \"RUNNERLOCATION\",\r\n \"value\": \"northeurope\"\r\n },\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.10\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-northeurope/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierf1d24b87d8a24555b69b0f99f84f71b1ACILinuxByoVnetConnectivity/providers/Microsoft.ContainerInstance/containerGroups/byovnet-northeurope-f1d24b87d8a24555b69b0f99f8b3f65f8e19d27009\",\r\n \"name\": \"byovnet-northeurope-f1d24b87d8a24555b69b0f99f8b3f65f8e19d27009\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/files/srcf1d24b87d8a24555b69b0f99f84f71b1acilinuxvnetazurefilevolume.txt\",\r\n \"/files/dstf1d24b87d8a24555b69b0f99f84f71b1acilinuxvnetazurefilevolume.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [],\r\n \"ip\": \"10.20.0.11\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"azureFile\": {\r\n \"shareName\": \"sbzend2end-linux-f1d24b87d8a24555b69b0f99f84f789c2e93a70fa756e\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-northeurope/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierf1d24b87d8a24555b69b0f99f84f71b1ACILinuxVnetAzureFileVolume/providers/Microsoft.ContainerInstance/containerGroups/azf-northeurope-f1d24b87d8a24555b69b0f99f84f716593420bb3428a6c\",\r\n \"name\": \"azf-northeurope-f1d24b87d8a24555b69b0f99f84f716593420bb3428a6c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-northeurope\",\r\n \"name\": \"heartbeatexit-atlas-northeurope\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-northeurope\",\r\n \"name\": \"heartbeatexit-k8-northeurope\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-northeurope\",\r\n \"name\": \"immediatecrash-atlas-northeurope\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-northeurope\",\r\n \"name\": \"immediatecrash-k8-northeurope\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.93.49.55\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-northeurope\",\r\n \"fqdn\": \"longrunning-atlas-northeurope.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-northeurope\",\r\n \"name\": \"longrunning-atlas-northeurope\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.82.169.186\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-northeurope\",\r\n \"fqdn\": \"longrunning-k8-northeurope.northeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-northeurope\",\r\n \"name\": \"longrunning-k8-northeurope\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c60f0c9d-5a65-4088-9bb5-94c5d65df1ea\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.17\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-0c4e4b55-f527-4cf2-a08d-d22ea9b27283\",\r\n \"name\": \"validation-0c4e4b55-f527-4cf2-a08d-d22ea9b27283\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a6f04d4f-b47d-42cb-acae-f57dca71c49a\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.58\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-0e59bba5-4804-4b6d-8994-c1a4c79e380b\",\r\n \"name\": \"validation-0e59bba5-4804-4b6d-8994-c1a4c79e380b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-98e10cb1-33f8-4c44-b9cc-fd758b31974b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.18\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-0f9a519a-1d8d-4b9c-98a1-a6e0d2f72c8c\",\r\n \"name\": \"validation-0f9a519a-1d8d-4b9c-98a1-a6e0d2f72c8c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-186cff44-2eb8-4e4b-b35b-3c22010bf16d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.49\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-1d0a8a41-3595-4a79-adb4-0fb79a6a7b0f\",\r\n \"name\": \"validation-1d0a8a41-3595-4a79-adb4-0fb79a6a7b0f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0f3d0d6c-0ecd-44c5-96db-caf3f56ef5fd\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.44\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-202d307b-cfa2-443f-8e16-3d1bc5772d0e\",\r\n \"name\": \"validation-202d307b-cfa2-443f-8e16-3d1bc5772d0e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-13ec76a2-12b6-4238-a399-2b88ba0c988e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.61\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-3c9c7113-b5e1-4950-8118-ca4c8953a480\",\r\n \"name\": \"validation-3c9c7113-b5e1-4950-8118-ca4c8953a480\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9d7c28f6-19dd-4149-96a5-ba7b2569a0f7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.13\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-3ee4945c-f8c0-439d-a018-329716b9d134\",\r\n \"name\": \"validation-3ee4945c-f8c0-439d-a018-329716b9d134\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9d0219fb-6c23-498c-88e9-f77b44364e40\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.59\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-405c8b25-f7bd-4b28-8ce7-2c351e396b90\",\r\n \"name\": \"validation-405c8b25-f7bd-4b28-8ce7-2c351e396b90\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-b37f14c8-c56c-4005-b2ae-9c4f9b2e92d6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.55\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-49045b77-23e6-4ef7-bf49-07205975a26a\",\r\n \"name\": \"validation-49045b77-23e6-4ef7-bf49-07205975a26a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6329c31f-cd31-48c8-8c3c-970608c6bd8e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.39\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-4fd115c8-c055-455f-9805-3be7fd598d2b\",\r\n \"name\": \"validation-4fd115c8-c055-455f-9805-3be7fd598d2b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f0e07961-f61f-4aec-9a65-865fdd8f1969\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.54\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-60c84f47-188a-4160-886a-a14588175f08\",\r\n \"name\": \"validation-60c84f47-188a-4160-886a-a14588175f08\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0f775c5a-f42c-4cac-829b-55c5264d577f\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.14\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-66072238-6972-42f1-a64f-c02b91378ea7\",\r\n \"name\": \"validation-66072238-6972-42f1-a64f-c02b91378ea7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-4b2bcfd8-8801-4d62-bce2-f423b6cbcecc\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.41\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-6e437031-d39e-4ff7-a588-db73d15cc441\",\r\n \"name\": \"validation-6e437031-d39e-4ff7-a588-db73d15cc441\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0a8fd519-607e-45af-9e48-33be91cc6f77\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.26\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-70187ba1-ab78-4633-b369-4806f486aa8f\",\r\n \"name\": \"validation-70187ba1-ab78-4633-b369-4806f486aa8f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-66f9d785-fcb6-4b0f-a63b-d7a338ef2f82\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.12\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-80430de2-c840-429a-bb15-7b52312a74bf\",\r\n \"name\": \"validation-80430de2-c840-429a-bb15-7b52312a74bf\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-e4f31613-e132-4a2e-9842-abfa9c05e2e3\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.56\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-822fd1be-749a-4065-9066-0b93b86c3561\",\r\n \"name\": \"validation-822fd1be-749a-4065-9066-0b93b86c3561\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c741b2f2-8cc1-4ce5-9034-f5550a0b276d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.57\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-87d89ae5-6ec7-4b53-ae99-820e326ec56c\",\r\n \"name\": \"validation-87d89ae5-6ec7-4b53-ae99-820e326ec56c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9cb44209-ef83-4a44-a331-0afb39bc8e43\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.46\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-89b496ed-191e-4e62-8492-749545a792ba\",\r\n \"name\": \"validation-89b496ed-191e-4e62-8492-749545a792ba\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-5288405a-68f2-4005-b7f7-96c34401df52\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.34\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-8e018f47-9f69-4df4-9f7e-803d4cbb3e42\",\r\n \"name\": \"validation-8e018f47-9f69-4df4-9f7e-803d4cbb3e42\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-153b7a72-1c38-496c-a86a-de47d73feaf6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.22\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-91555b5f-1de1-4c47-bb06-4b3ca2b42c8f\",\r\n \"name\": \"validation-91555b5f-1de1-4c47-bb06-4b3ca2b42c8f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-e6ec281a-d883-4e0a-8d02-e8f7da65333d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.19\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-98747885-5571-4d6d-a655-d8302b4f46d8\",\r\n \"name\": \"validation-98747885-5571-4d6d-a655-d8302b4f46d8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-d76313c3-81a2-42d6-bd71-2cbecd3a77ea\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.10\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-a0affeb0-15f9-433d-9f11-ca21ff2a936f\",\r\n \"name\": \"validation-a0affeb0-15f9-433d-9f11-ca21ff2a936f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1536d65b-1692-419f-85eb-ccde3e5e29d9\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.64\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-a4c1013c-0263-4bde-8140-9d8c20280453\",\r\n \"name\": \"validation-a4c1013c-0263-4bde-8140-9d8c20280453\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-ee540bd4-b440-493d-bfe5-698fc0b6d777\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.15\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-aa73ac3a-30b5-4e45-a552-77379fe82144\",\r\n \"name\": \"validation-aa73ac3a-30b5-4e45-a552-77379fe82144\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1c83f330-753b-4c57-9502-0cfd5b69ed90\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.50\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-b9a9be6d-423b-4308-bf13-f18213ed3ecc\",\r\n \"name\": \"validation-b9a9be6d-423b-4308-bf13-f18213ed3ecc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f2dbfbb0-d390-4a49-b631-a7109f99eafb\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.43\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ba2322d0-cc22-4ab5-afdf-63051f319b7c\",\r\n \"name\": \"validation-ba2322d0-cc22-4ab5-afdf-63051f319b7c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c955c979-33c2-416b-ac8f-39ff259cce06\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.53\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-c14405b2-f970-4a20-bef0-17b4cfc9a2da\",\r\n \"name\": \"validation-c14405b2-f970-4a20-bef0-17b4cfc9a2da\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-e899c5ec-cd79-4b73-92f8-e1215bf05956\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.47\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ca3ec087-86e2-4e7e-a450-a36b860784e8\",\r\n \"name\": \"validation-ca3ec087-86e2-4e7e-a450-a36b860784e8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-bdbf71e2-2b29-4dfb-a654-76952f78c986\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.33\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-cf5bfff5-53f1-433a-97bd-a715290d96c7\",\r\n \"name\": \"validation-cf5bfff5-53f1-433a-97bd-a715290d96c7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9c92e963-5989-4a8b-9379-4ed4b65a5ca8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.35\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-d1bc7f1b-258d-4539-99c4-e7e88c0e716c\",\r\n \"name\": \"validation-d1bc7f1b-258d-4539-99c4-e7e88c0e716c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1f18fdc3-9f08-4946-b135-eeaf6643c27e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.25\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-d67ba42c-e204-4eb8-9a55-3a85d9ec5a3d\",\r\n \"name\": \"validation-d67ba42c-e204-4eb8-9a55-3a85d9ec5a3d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-4642633b-6365-4859-9537-52a8689131cc\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.37\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-e355ea61-5f44-4026-8c8a-694b66f9686d\",\r\n \"name\": \"validation-e355ea61-5f44-4026-8c8a-694b66f9686d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-35026f92-7068-4458-af1d-ce316dc6f01e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.51\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-eaab0427-9c85-47be-be9f-b3b30ac63467\",\r\n \"name\": \"validation-eaab0427-9c85-47be-be9f-b3b30ac63467\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-376e6cbf-868c-4cda-9e38-79eb47cde0ae\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.7\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ed8f31e1-9573-4071-8dab-df51e01bec6b\",\r\n \"name\": \"validation-ed8f31e1-9573-4071-8dab-df51e01bec6b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1914006a-a3bc-42c1-8f06-82a9187db60d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.52\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ef81bdc8-d0b5-43b4-8c1d-59d0dc3a3fb0\",\r\n \"name\": \"validation-ef81bdc8-d0b5-43b4-8c1d-59d0dc3a3fb0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9d6e3a8e-7f75-4c6c-b067-496e928e3b6d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.62\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-f47359a3-e15d-409e-9019-124ac10525ce\",\r\n \"name\": \"validation-f47359a3-e15d-409e-9019-124ac10525ce\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-33e85a9d-04d2-4978-8953-f8d7e2a9b4a2\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.11\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-f56320b8-faa2-480f-8014-ce9323ab7449\",\r\n \"name\": \"validation-f56320b8-faa2-480f-8014-ce9323ab7449\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f5d6fad0-b079-4443-af61-0b429096c0c8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.60\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-f5be515e-81f6-45df-ae2e-f53a000b5dea\",\r\n \"name\": \"validation-f5be515e-81f6-45df-ae2e-f53a000b5dea\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2de0311e-9f6f-4606-935d-418b4362f9df\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.20\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-northeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/northeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/validation-f6d75671-c012-478f-aafa-52dd8474ef5e\",\r\n \"name\": \"validation-f6d75671-c012-478f-aafa-52dd8474ef5e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-northeurope/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-northeurope/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeinynortheu/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeinynortheu/providers/Microsoft.ContainerInstance/containerGroups/appcontainer\",\r\n \"name\": \"appcontainer\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier1547552c687c408fa205e4c01c786f66ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-norwayeast-1547552c687c408fa205e4c01c786f944db7a17254c390\",\r\n \"name\": \"init-norwayeast-1547552c687c408fa205e4c01c786f944db7a17254c390\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret1.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret2.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier3b7c0df9b4714875b9d490930670ed68ACILinuxSecretVolume/providers/Microsoft.ContainerInstance/containerGroups/secvol-norwayeast-3b7c0df9b4714875b9d49093067058b1ed6c38ae96ef\",\r\n \"name\": \"secvol-norwayeast-3b7c0df9b4714875b9d49093067058b1ed6c38ae96ef\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier4eeaf02b787e495b8fc5b992b8bcf71aACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-norwayeast-4eeaf02b787e495b8fc5b992b8bcf717b852be4535bc039\",\r\n \"name\": \"msi-norwayeast-4eeaf02b787e495b8fc5b992b8bcf717b852be4535bc039\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier5a93c0e6617f4c2482106dae8f671a06ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-norwayeast-5a93c0e6617f4c2482106dae8f671a8c1be61e64b973e6\",\r\n \"name\": \"init-norwayeast-5a93c0e6617f4c2482106dae8f671a8c1be61e64b973e6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier5a96eee9ef36477bb47b5b9fedcbbcf8ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-norwayeast-5a96eee9ef36477bb47b5b9fedc0857563b98a3bf5d\",\r\n \"name\": \"cgposts-norwayeast-5a96eee9ef36477bb47b5b9fedc0857563b98a3bf5d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '09c5f931-c976-418c-aaf1-2a002fe2782a' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"dc5d8a4f2496456fb3b724acf92e3117\",\r\n \"fqdn\": \"dc5d8a4f2496456fb3b724acf92e3117.norwayeast.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier9651bf3785cd4f02af49d988930dae70ACILinuxIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-norwayeast-9651bf3785cd4f02af49d9889300e3d4b26fc5da3c4\",\r\n \"name\": \"ingress-norwayeast-9651bf3785cd4f02af49d9889300e3d4b26fc5da3c4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc7c2c96ba33d480fb9cd81a90bd0a6e2ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-norwayeast-c7c2c96ba33d480fb9cd81a90bd289ed0f9b2cb8373\",\r\n \"name\": \"cgposts-norwayeast-c7c2c96ba33d480fb9cd81a90bd289ed0f9b2cb8373\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierd3eddc03a14a4785b4e39b1d4c418ea2ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-norwayeast-d3eddc03a14a4785b4e39b1d4c49e6dbe81c7f8b17b\",\r\n \"name\": \"cgposts-norwayeast-d3eddc03a14a4785b4e39b1d4c49e6dbe81c7f8b17b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '3e5dd236-a648-40be-a64c-59a763e594ab'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierf612ce2a52cf41e98305ff7013756c62ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-norwayeast-f612ce2a52cf41e98305ff7013756c256c11ef9260f566\",\r\n \"name\": \"init-norwayeast-f612ce2a52cf41e98305ff7013756c256c11ef9260f566\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"norwayeast-fs1\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"mountPath\": \"/aci/logs\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"azureFile\": {\r\n \"shareName\": \"acifileshare\",\r\n \"storageAccountName\": \"juhacketfile\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/norwayeast-fs1\",\r\n \"name\": \"norwayeast-fs1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"norwayeast-lin1\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/norwayeast-lin1\",\r\n \"name\": \"norwayeast-lin1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"norwayeast-msi1\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/juhacketTEST/providers/Microsoft.ManagedIdentity/userAssignedIdentities/juhacketMSI\": {\r\n \"principalId\": \"7c35de51-0239-4ea9-8b17-da5c06fad37d\",\r\n \"clientId\": \"c2ccc6c2-cda8-42d9-a18b-caade3dec478\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/norwayeast-msi1\",\r\n \"name\": \"norwayeast-msi1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"norwayeast-msi2\",\r\n \"properties\": {\r\n \"image\": \"microsoft/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"3a4edba6-cbf5-42b6-a50f-f9a3310a5975\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/norwayeast-msi2\",\r\n \"name\": \"norwayeast-msi2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"norwayeast-win5\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/powershell:7.0.0-nanoserver-1809-kb4546852-amd64\",\r\n \"command\": [\r\n \"cmd.exe\",\r\n \"/k\",\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/juhacketTEST/providers/Microsoft.ContainerInstance/containerGroups/norwayeast-win5\",\r\n \"name\": \"norwayeast-win5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hellofiles2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-hellofiles\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"mountPath\": \"/aci/logs/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"azureFile\": {\r\n \"shareName\": \"acishare\",\r\n \"storageAccountName\": \"likevistorageaccount2\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likevenoetest2/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likevenoetest2/providers/Microsoft.ContainerInstance/containerGroups/hellofiles2\",\r\n \"name\": \"hellofiles2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hellofiles3\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-hellofiles\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"mountPath\": \"/aci/logs/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"azureFile\": {\r\n \"shareName\": \"acishare\",\r\n \"storageAccountName\": \"likevistorageaccount3\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likevenoetest3/providers/Microsoft.Network/networkProfiles/aci-network-profile-likevistorageaccount3-default\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likevenoetest3/providers/Microsoft.ContainerInstance/containerGroups/hellofiles3\",\r\n \"name\": \"hellofiles3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hellofiles\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-hellofiles\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"mountPath\": \"/aci/logs/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.6\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"azureFile\": {\r\n \"shareName\": \"acishare\",\r\n \"storageAccountName\": \"likevistorageaccount4\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likevenoetest4/providers/Microsoft.Network/networkProfiles/aci-network-profile-vnet-default\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likevenoetest4/providers/Microsoft.ContainerInstance/containerGroups/hellofiles\",\r\n \"name\": \"hellofiles\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hellofiles\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-hellofiles\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"mountPath\": \"/aci/logs/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"azureFile\": {\r\n \"shareName\": \"acishare\",\r\n \"storageAccountName\": \"likevistorageaccount5\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likevenoetest5/providers/Microsoft.Network/networkProfiles/aci-network-profile-vnet-default\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likevenoetest5/providers/Microsoft.ContainerInstance/containerGroups/hellofiles\",\r\n \"name\": \"hellofiles\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hellofiles\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-hellofiles\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"mountPath\": \"/aci/logs/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"azurefile\",\r\n \"azureFile\": {\r\n \"shareName\": \"acishare\",\r\n \"storageAccountName\": \"likevistorageaccount6\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likevenoetest6/providers/Microsoft.Network/networkProfiles/aci-network-profile-vnet-default\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likevenoetest6/providers/Microsoft.ContainerInstance/containerGroups/hellofiles\",\r\n \"name\": \"hellofiles\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-norwayeast\",\r\n \"name\": \"heartbeatexit-atlas-norwayeast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-norwayeast\",\r\n \"name\": \"immediatecrash-atlas-norwayeast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"51.120.7.47\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-norwayeast\",\r\n \"fqdn\": \"longrunning-atlas-norwayeast.norwayeast.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-norwayeast\",\r\n \"name\": \"longrunning-atlas-norwayeast\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-norwayeast/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-norwayeast/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"norwayeast\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier0abdc3aee8db45aea98bbc83362e3e7bACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-southcentralus-0abdc3aee8db45aea98bbc80534cc9031656f0b\",\r\n \"name\": \"cgposts-southcentralus-0abdc3aee8db45aea98bbc80534cc9031656f0b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/etc/hosts\",\r\n \"/files/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 60;cat /otherfiles/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier10d547fdb0254e659c7e004b4ff6d10dACILinuxEmptyDirVolume/providers/Microsoft.ContainerInstance/containerGroups/emptydir-southcentralus-10d547fdb0254e659c7e00313ef453ecbf3381\",\r\n \"name\": \"emptydir-southcentralus-10d547fdb0254e659c7e00313ef453ecbf3381\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier3085feb689274576a857ef1c0bee6b0eACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-southcentralus-3085feb689274576a8539afca0dea2f8347\",\r\n \"name\": \"escapedargs-southcentralus-3085feb689274576a8539afca0dea2f8347\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret1.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret2.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier345a8c13f15a4135b8bfcb13bc11bc8bACILinuxSecretVolume/providers/Microsoft.ContainerInstance/containerGroups/secvol-southcentralus-345a8c13f15a4135b8bfcb1315524e93cab857a1\",\r\n \"name\": \"secvol-southcentralus-345a8c13f15a4135b8bfcb1315524e93cab857a1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier34ae55c3f4e545a0ae30e0944144a02eACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-southcentralus-34ae55c3f4e545a0ae30e09441202d6d8c7cf386a2\",\r\n \"name\": \"init-southcentralus-34ae55c3f4e545a0ae30e09441202d6d8c7cf386a2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier3cbcd672d2d241ad9b159f6cfb388359ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-southcentralus-3cbcd672d2d241ad9b159cc091051bcadf1e8\",\r\n \"name\": \"liveprobe-southcentralus-3cbcd672d2d241ad9b159cc091051bcadf1e8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier63aec360fdba43778631dc8c770682a1ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-southcentralus-63aec360fdba43778631dc8360044607f3355c9\",\r\n \"name\": \"cgposts-southcentralus-63aec360fdba43778631dc8360044607f3355c9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier6f922574776e45219244ab296de39232ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-southcentralus-6f922574776e45219244ab2ed7082ddbc91aecb\",\r\n \"name\": \"cgposts-southcentralus-6f922574776e45219244ab2ed7082ddbc91aecb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier7d97ed24eeaa43e88d6621fefba1998dACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-southcentralus-7d97ed24eeaa43e88d6621ff66212b769647d85\",\r\n \"name\": \"cgposts-southcentralus-7d97ed24eeaa43e88d6621ff66212b769647d85\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8a16f5ceb7734ef9a461a0c1f2fb5a35ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-southcentralus-8a16f5ceb7734ef9a461a0c3bb169065711cb45\",\r\n \"name\": \"cgposts-southcentralus-8a16f5ceb7734ef9a461a0c3bb169065711cb45\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier90111cb3509d460caadeeb6e4f55ee2aACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-southcentralus-90111cb3509d460caadeeb6fec03e330e7834c2\",\r\n \"name\": \"cgposts-southcentralus-90111cb3509d460caadeeb6fec03e330e7834c2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/etc/hosts\",\r\n \"/files/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 60;cat /otherfiles/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera55bb6008f8e44ccb9b1fd10ee009252ACILinuxEmptyDirVolume/providers/Microsoft.ContainerInstance/containerGroups/emptydir-southcentralus-a55bb6008f8e44ccb9b1fd2d159bb4f7958f18\",\r\n \"name\": \"emptydir-southcentralus-a55bb6008f8e44ccb9b1fd2d159bb4f7958f18\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/etc/hosts\",\r\n \"/files/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 60;cat /otherfiles/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera5832778e0e24593a6e05dc2ae76e3d3ACILinuxEmptyDirVolume/providers/Microsoft.ContainerInstance/containerGroups/emptydir-southcentralus-a5832778e0e24593a6e05ddb33716b1e0ff77d\",\r\n \"name\": \"emptydir-southcentralus-a5832778e0e24593a6e05ddb33716b1e0ff77d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 20\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"ubuntu:16.04\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo 'd0e68fac-7780-46bd-9dff-d293a6c67093'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-07-20T09:49:34.825Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-07-20T09:49:37.333Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc66b36f1f94442798023f36871b4214dACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-southcentralus-c66b36f1f94442798023f3687130668e47c5f2201d\",\r\n \"name\": \"init-southcentralus-c66b36f1f94442798023f3687130668e47c5f2201d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-southcentralus\",\r\n \"name\": \"heartbeatexit-atlas-southcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-southcentralus\",\r\n \"name\": \"heartbeatexit-k8-southcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-southcentralus\",\r\n \"name\": \"immediatecrash-atlas-southcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-southcentralus\",\r\n \"name\": \"immediatecrash-k8-southcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.94.130.24\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-southcentralus\",\r\n \"fqdn\": \"longrunning-atlas-southcentralus.southcentralus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-southcentralus\",\r\n \"name\": \"longrunning-atlas-southcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.189.17.159\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-southcentralus\",\r\n \"fqdn\": \"longrunning-k8-southcentralus.southcentralus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-southcentralus\",\r\n \"name\": \"longrunning-k8-southcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainersouthcentralus\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnetsouthcentralus-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainersouthcentralus\",\r\n \"name\": \"appcontainersouthcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nanoserver\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/framework/runtime:4.8-windowsservercore-ltsc2019\",\r\n \"command\": [\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/windowstest\",\r\n \"name\": \"windowstest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.31\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-southcentralus/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-southcentralus/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier3d0b578fabdb47118be664016086e8fdACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-southeastasia-3d0b578fabdb47118be66401790b976f5d2e6a29\",\r\n \"name\": \"cgposts-southeastasia-3d0b578fabdb47118be66401790b976f5d2e6a29\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier3ee79cac5d3f44a3bf5ab930e8b6350bACIWindowsContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-southeastasia-3ee79cac5d3f44a3bf5ab930e8b172cef03f68067fe\",\r\n \"name\": \"exec-southeastasia-3ee79cac5d3f44a3bf5ab930e8b172cef03f68067fe\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier5db310f821154c4f9e488a07629501f8ACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-southeastasia-5db310f821154c4f9e488a0714a15abd771ed991\",\r\n \"name\": \"ingress-southeastasia-5db310f821154c4f9e488a0714a15abd771ed991\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier642543d2ad1f4092bfdb4bd03cb09f36ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-southeastasia-642543d2ad1f4092bfdb363078d435ab3185\",\r\n \"name\": \"escapedargs-southeastasia-642543d2ad1f4092bfdb363078d435ab3185\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier7d83984b875f479db819966fad719fc4ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-southeastasia-7d83984b875f479db819966f0caceb0cd1f738c3\",\r\n \"name\": \"cgposts-southeastasia-7d83984b875f479db819966f0caceb0cd1f738c3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8dd108981bd34cb89f194eb7fae9b6c4ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-southeastasia-8dd108981bd34cb89f194eb731a96c77576ab9f7\",\r\n \"name\": \"cgposts-southeastasia-8dd108981bd34cb89f194eb731a96c77576ab9f7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier90e4459e09f74d3089c703144675bbcfACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-southeastasia-90e4459e09f74d3089c7031495e3653ada1f7c46\",\r\n \"name\": \"cgposts-southeastasia-90e4459e09f74d3089c7031495e3653ada1f7c46\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierb513cc4d55f5477c8e46f9965b714b9aACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-southeastasia-b513cc4d55f5477c8e46f996b518ca8724b5e6e3\",\r\n \"name\": \"cgposts-southeastasia-b513cc4d55f5477c8e46f996b518ca8724b5e6e3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierced00e15782547838648ebae16efcab8ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-southeastasia-ced00e15782547838648ebaed4cc20678078fc7d\",\r\n \"name\": \"cgposts-southeastasia-ced00e15782547838648ebaed4cc20678078fc7d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Updating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierf407439bbceb461f9ab1820c73a9bd2cACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-southeastasia-f407439bbceb461f9ab1820ce5716e9695dfd911\",\r\n \"name\": \"cgposts-southeastasia-f407439bbceb461f9ab1820ce5716e9695dfd911\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-southeastasia\",\r\n \"name\": \"heartbeatexit-atlas-southeastasia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-southeastasia\",\r\n \"name\": \"heartbeatexit-k8-southeastasia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-southeastasia\",\r\n \"name\": \"immediatecrash-atlas-southeastasia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-southeastasia\",\r\n \"name\": \"immediatecrash-k8-southeastasia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.198.137.110\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-southeastasia\",\r\n \"fqdn\": \"longrunning-atlas-southeastasia.southeastasia.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-southeastasia\",\r\n \"name\": \"longrunning-atlas-southeastasia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.197.82.154\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-southeastasia\",\r\n \"fqdn\": \"longrunning-k8-southeastasia.southeastasia.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-southeastasia\",\r\n \"name\": \"longrunning-k8-southeastasia\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f4fdb8e2-c72a-4e6c-9d29-747cae57063b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.43\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-0c8f69b9-8fe2-4c81-bc70-9f4dc2dbfa8e\",\r\n \"name\": \"validation-0c8f69b9-8fe2-4c81-bc70-9f4dc2dbfa8e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c2c0632d-9cff-46ce-8269-b9bc994685a5\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.59\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-17fc2ce9-ce81-483d-b016-e3d2926cdc39\",\r\n \"name\": \"validation-17fc2ce9-ce81-483d-b016-e3d2926cdc39\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-5c60d550-f9aa-45a7-8006-0900a419a646\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.61\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-1f7d3d4d-ccdd-413e-9537-1ddcd8d80f19\",\r\n \"name\": \"validation-1f7d3d4d-ccdd-413e-9537-1ddcd8d80f19\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0bfa66ac-cd60-489b-9e62-b5b8eb517695\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.64\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-251e283c-6763-4fa6-8c59-5dbf2a1576d1\",\r\n \"name\": \"validation-251e283c-6763-4fa6-8c59-5dbf2a1576d1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-192115fc-e43a-44a6-bef4-f0d70f7b9b58\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.52\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-27522cab-cd83-4ae3-abd0-7a4b9b8a9e58\",\r\n \"name\": \"validation-27522cab-cd83-4ae3-abd0-7a4b9b8a9e58\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-626fa557-01b5-47ef-855a-c146a04d3216\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.18\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-27d48c5a-befd-419b-abf3-182b1972c259\",\r\n \"name\": \"validation-27d48c5a-befd-419b-abf3-182b1972c259\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3d0a32d3-3538-43bc-8ed3-ba42c59a40bf\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.28\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-27f73af9-eba2-4cc2-9edd-08db551101e2\",\r\n \"name\": \"validation-27f73af9-eba2-4cc2-9edd-08db551101e2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-59a49c59-46a3-4024-9fbb-649aac9907f0\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.23\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-28a82830-a763-4fd9-b30d-3179e20e1646\",\r\n \"name\": \"validation-28a82830-a763-4fd9-b30d-3179e20e1646\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-e2274bdd-f7fc-4cc0-bf75-cd3aad8c816c\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.56\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-30eff563-7697-4627-934b-cdb1da976104\",\r\n \"name\": \"validation-30eff563-7697-4627-934b-cdb1da976104\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f2fa1572-0f44-4260-810c-df7a75323792\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.20\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-3485c516-8460-4542-a14b-615297bc4fe5\",\r\n \"name\": \"validation-3485c516-8460-4542-a14b-615297bc4fe5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c8ddee87-bb42-47c4-b9ed-a01e0703fe4c\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.40\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-36d46423-9900-4e52-af02-0da6f5cdd5d0\",\r\n \"name\": \"validation-36d46423-9900-4e52-af02-0da6f5cdd5d0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-d9f31ded-73c3-42c0-8733-7e534f97ecc9\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.9\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-3e766320-fa2d-421f-b9f4-3ff8cbfe6c42\",\r\n \"name\": \"validation-3e766320-fa2d-421f-b9f4-3ff8cbfe6c42\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-34152b34-d773-4f00-b36f-948b16a0a583\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.26\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-46cfd951-b73a-4612-91cc-c380e6a14b01\",\r\n \"name\": \"validation-46cfd951-b73a-4612-91cc-c380e6a14b01\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-fe3460f6-9b42-4311-bfff-c799132b812b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.13\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-4bc36bfe-03ad-4f83-a41a-d99572008915\",\r\n \"name\": \"validation-4bc36bfe-03ad-4f83-a41a-d99572008915\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-12b004df-45e1-48dd-9adf-6d2dd021d5fe\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.30\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-4e777df2-638e-4e2a-9d25-388fc8c2743f\",\r\n \"name\": \"validation-4e777df2-638e-4e2a-9d25-388fc8c2743f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-b36f8de5-8b94-4a17-97f9-468609a840e2\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.7\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-58ca1232-7f21-4175-9320-98dac73ae66f\",\r\n \"name\": \"validation-58ca1232-7f21-4175-9320-98dac73ae66f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3e8600c9-5583-4c36-bbaf-1594dd5ef3f8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.48\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-5eb9bba3-0271-4b95-882a-214606c64c86\",\r\n \"name\": \"validation-5eb9bba3-0271-4b95-882a-214606c64c86\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-bcf7da68-c7e7-4dde-9e9d-79c00e014d56\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-65ad152b-3eff-44c3-9075-e22c31c8a2b2\",\r\n \"name\": \"validation-65ad152b-3eff-44c3-9075-e22c31c8a2b2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-aa91d3d3-bce0-4a8f-abb1-e9af88926146\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.15\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-67662477-2326-461e-9df4-f50b33f20204\",\r\n \"name\": \"validation-67662477-2326-461e-9df4-f50b33f20204\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-67190b89-d810-43d6-9ef3-39d3efa7c172\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.38\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-69305e49-4693-4553-a05b-8a52668cc5aa\",\r\n \"name\": \"validation-69305e49-4693-4553-a05b-8a52668cc5aa\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3cfffc6d-0823-4dc5-967c-0a5c05f081ef\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.14\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-7144e931-3459-4fdf-b40e-45b0e0e5351c\",\r\n \"name\": \"validation-7144e931-3459-4fdf-b40e-45b0e0e5351c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a2a000a2-c5c6-442a-9823-72f9e86116c1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-71ab65f7-b963-49f7-957f-53a4cd74cdb9\",\r\n \"name\": \"validation-71ab65f7-b963-49f7-957f-53a4cd74cdb9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7bd97a76-b860-440a-b973-9d98a9e8cbca\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.27\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-72858e84-67c9-4930-a020-10b86f16d232\",\r\n \"name\": \"validation-72858e84-67c9-4930-a020-10b86f16d232\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-eb7e3b1e-ae5b-45a2-ac41-91ade22cb519\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.60\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-74a886cb-9995-4c27-adc6-91cb1d602961\",\r\n \"name\": \"validation-74a886cb-9995-4c27-adc6-91cb1d602961\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-20ddda1e-f42b-43a8-9703-c207cdff6bcf\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.46\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-75a1afc9-edbf-4442-8038-a54f85fd72c1\",\r\n \"name\": \"validation-75a1afc9-edbf-4442-8038-a54f85fd72c1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3324b771-e50a-458a-bf3f-3e0b9ee8eabc\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.37\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-760af0ae-df10-4b5a-b5bc-594a73eeb7c6\",\r\n \"name\": \"validation-760af0ae-df10-4b5a-b5bc-594a73eeb7c6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-84720446-a23b-4ccd-b1ed-85b83f0f1d5d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.16\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-7b25d6b6-2529-4369-a33e-9d9f0d2d25ac\",\r\n \"name\": \"validation-7b25d6b6-2529-4369-a33e-9d9f0d2d25ac\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7bd6b3a5-e944-4dd5-b08d-3c6418a7f7f4\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.63\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-816dab00-ef83-4184-a1e9-b1953910f205\",\r\n \"name\": \"validation-816dab00-ef83-4184-a1e9-b1953910f205\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-69586239-5bbb-4d54-b9e0-2d6fbd6997b1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.22\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-8e8647bd-5a08-4d71-8118-352ee2c20a51\",\r\n \"name\": \"validation-8e8647bd-5a08-4d71-8118-352ee2c20a51\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-689fe834-ea66-447b-9090-67ef08123656\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.49\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-9142bc94-566c-4004-a6eb-d8eb885c56be\",\r\n \"name\": \"validation-9142bc94-566c-4004-a6eb-d8eb885c56be\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-cb41a70d-10ad-4810-b724-b154e79e1b1b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.35\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-945da32e-e898-4fcc-85a5-ed580012d553\",\r\n \"name\": \"validation-945da32e-e898-4fcc-85a5-ed580012d553\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0f11d4ae-2212-4962-b8c5-9f194f879b49\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.34\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-947f639b-8b81-4a13-a6e0-9c3dd7475bf1\",\r\n \"name\": \"validation-947f639b-8b81-4a13-a6e0-9c3dd7475bf1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-567e4739-3630-4e16-9da8-cc045ac126d8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.50\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-a391d286-e2a5-4aff-bc80-c21510990eb2\",\r\n \"name\": \"validation-a391d286-e2a5-4aff-bc80-c21510990eb2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-e2da8f1c-5d70-4569-a5c5-06b60db92838\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.32\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-a4001417-d2a9-493f-9e22-3438a78f2408\",\r\n \"name\": \"validation-a4001417-d2a9-493f-9e22-3438a78f2408\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7929ddb5-65fb-4ba4-97fb-9b9323189be7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.24\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-a688caa9-a40c-4024-920d-60769c45c2d5\",\r\n \"name\": \"validation-a688caa9-a40c-4024-920d-60769c45c2d5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a5d013a4-3ed7-46bc-9d52-d758b18c5066\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.51\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-a93374f3-7d2e-4274-9dd3-54bbffbca3f7\",\r\n \"name\": \"validation-a93374f3-7d2e-4274-9dd3-54bbffbca3f7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f9319486-5c8d-403d-992a-507bda81fa22\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.19\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-aab9ee5c-9cdd-47c0-8029-1c91f40da130\",\r\n \"name\": \"validation-aab9ee5c-9cdd-47c0-8029-1c91f40da130\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-ce5dc47d-f2e6-452e-9813-c9f1f0feb3fc\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.8\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-afcb76bf-f485-4cc7-aa00-934b1f07d030\",\r\n \"name\": \"validation-afcb76bf-f485-4cc7-aa00-934b1f07d030\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-d337ac15-bc9a-46a0-9f82-6ccea8a4b386\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.33\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-b714fbf4-0120-4bcd-aa69-fa0c3c8d3a7a\",\r\n \"name\": \"validation-b714fbf4-0120-4bcd-aa69-fa0c3c8d3a7a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-81627f38-2165-479c-bbad-0fae02c2044d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.44\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-be1120b9-e392-403b-ab2c-8d4c2e70e9e2\",\r\n \"name\": \"validation-be1120b9-e392-403b-ab2c-8d4c2e70e9e2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-705c6e8e-919e-4e4d-8028-47fb857f9d98\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.29\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-bfa54cb1-0877-416f-8ee9-c99941fca446\",\r\n \"name\": \"validation-bfa54cb1-0877-416f-8ee9-c99941fca446\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2037f6a4-d5e7-4732-8e43-210b6ffa5fc5\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.53\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-c2cfcfa9-aa00-43a4-a89a-946cf2c3a692\",\r\n \"name\": \"validation-c2cfcfa9-aa00-43a4-a89a-946cf2c3a692\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-8d6eaee2-6ba4-4a25-90e9-1889d714e03c\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.12\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-c53adec9-5da8-4e7e-9a93-64943d5a4232\",\r\n \"name\": \"validation-c53adec9-5da8-4e7e-9a93-64943d5a4232\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0b010768-2356-45eb-a256-f4d8179c97c7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.58\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-c5a59c76-3618-4f77-a5bd-576414d6e865\",\r\n \"name\": \"validation-c5a59c76-3618-4f77-a5bd-576414d6e865\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a34c207f-7a1a-4745-8949-bcde0fb22f2a\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.39\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-c6770e4a-a162-4df4-82a9-d5206120bde9\",\r\n \"name\": \"validation-c6770e4a-a162-4df4-82a9-d5206120bde9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2db57f26-ea63-4063-b039-d816ce8b626e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.11\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-c94570bd-8f6f-4de5-92e7-011b13d8f5dc\",\r\n \"name\": \"validation-c94570bd-8f6f-4de5-92e7-011b13d8f5dc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-75e0f215-d387-471e-a12e-b91c70e79c6c\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.45\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-c9b7fb67-5e53-41a1-b5c6-997a5781d9d1\",\r\n \"name\": \"validation-c9b7fb67-5e53-41a1-b5c6-997a5781d9d1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-83dc4a81-a04f-4bd7-8ba6-a1f6196d776a\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.65\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-cb8b9482-f00f-46c7-9500-2864618e0e11\",\r\n \"name\": \"validation-cb8b9482-f00f-46c7-9500-2864618e0e11\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6ae33cbc-bf64-4edd-bdf9-8d3c3ced217e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.10\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-d3578ae9-a3e5-42fa-9492-d451e93d9921\",\r\n \"name\": \"validation-d3578ae9-a3e5-42fa-9492-d451e93d9921\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-51dfc2ca-3440-4629-b018-70d54ccb46c0\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.57\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-d59d1628-36d4-4d38-b9d9-da885c6b088b\",\r\n \"name\": \"validation-d59d1628-36d4-4d38-b9d9-da885c6b088b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-da3c9e71-0e3f-4222-a4d9-ba732b950a95\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.17\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-d923255c-70ab-4f55-8f49-4826ec1a5b83\",\r\n \"name\": \"validation-d923255c-70ab-4f55-8f49-4826ec1a5b83\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-b85a49ae-20d3-44e9-8f28-ff9648576cd6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.55\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-da3810fe-8167-4eb5-a100-c3853c5be7a4\",\r\n \"name\": \"validation-da3810fe-8167-4eb5-a100-c3853c5be7a4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-659229fc-6064-4892-95d7-188f798f04d0\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.6\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-e31a04b7-bd93-4dcb-9711-ceabf3b935f9\",\r\n \"name\": \"validation-e31a04b7-bd93-4dcb-9711-ceabf3b935f9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2d7bc1ef-e369-43cd-bb64-ea90cf898ca7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.31\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-e5a3143a-b3db-4bba-8027-8d0a2f5a8986\",\r\n \"name\": \"validation-e5a3143a-b3db-4bba-8027-8d0a2f5a8986\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-5af2aa1a-5be8-4e31-a7c1-d23e3ac080d4\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.54\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-ea9ee331-2880-439e-9ebb-e9739dccbd61\",\r\n \"name\": \"validation-ea9ee331-2880-439e-9ebb-e9739dccbd61\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-446873bd-e5c9-4e57-8e33-6e2ef079f140\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.41\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-ecacc6eb-cb8c-485d-9c7f-f7c6e362f5a2\",\r\n \"name\": \"validation-ecacc6eb-cb8c-485d-9c7f-f7c6e362f5a2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-023bc6bd-ccb8-4ced-8bc0-d234b2f679c4\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.36\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-edea970e-d993-4761-83f7-c0fbd31c05eb\",\r\n \"name\": \"validation-edea970e-d993-4761-83f7-c0fbd31c05eb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1b0fdbd0-d2fe-4a70-86c0-277ca7f30cd2\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.47\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-f1ecbbe3-cabb-4d92-ba7f-fe4f5fadbe40\",\r\n \"name\": \"validation-f1ecbbe3-cabb-4d92-ba7f-fe4f5fadbe40\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-19d2425c-2831-4049-9e8f-582c25bd653b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.21\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-fd1764f7-3b25-4e71-9bd3-b04ddc1fee20\",\r\n \"name\": \"validation-fd1764f7-3b25-4e71-9bd3-b04ddc1fee20\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0d81f64a-f6bc-4ebf-947d-0455791c0609\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.25\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.Network/networkProfiles/aci-network-profile-southeastasiavnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/southeastasiademo/providers/Microsoft.ContainerInstance/containerGroups/validation-ff7df678-bb9b-42e6-b168-9c0ba4144bda\",\r\n \"name\": \"validation-ff7df678-bb9b-42e6-b168-9c0ba4144bda\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.33\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-southeastasia/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-southeastasia/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"southeastasia\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier2270eab4ae544816a44833a16ea1f138ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-switzerlandnorth-2270eab4ae544816a44833a17389b35029037f0c\",\r\n \"name\": \"init-switzerlandnorth-2270eab4ae544816a44833a17389b35029037f0c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"switzerlandnorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierb2de8e44f1ac465da2ad1f90a4709080ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-switzerlandnorth-b2de8e44f1ac465da2a966ad6b8c8340392\",\r\n \"name\": \"liveprobe-switzerlandnorth-b2de8e44f1ac465da2a966ad6b8c8340392\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"switzerlandnorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc95b2873a4564db88656010aca3a3a54ACIWindowsContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-switzerlandnorth-c95b2873a4564db88656010a3b115696aafb8b84\",\r\n \"name\": \"exec-switzerlandnorth-c95b2873a4564db88656010a3b115696aafb8b84\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"switzerlandnorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '51fccbff-6895-49b0-8c46-25110682d4ed'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierdb8845950f2344c281b937555b2ed5e9ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-switzerlandnorth-db8845950f2344c281b93755096a1009ba8bc248\",\r\n \"name\": \"init-switzerlandnorth-db8845950f2344c281b93755096a1009ba8bc248\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"switzerlandnorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Updating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierf72d4746b1054d87885cfdb48b914c41ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-switzerlandnorth-f72d4746b1054d87885cfa07ec3cb23b30493\",\r\n \"name\": \"cgposts-switzerlandnorth-f72d4746b1054d87885cfa07ec3cb23b30493\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"switzerlandnorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo 'e4ab182b-e7ab-4743-be06-78fd1d7a2dd7'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierf7ab45e5ce8440f78ea0db2bb2b5e62cACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-switzerlandnorth-f7ab45e5ce8440f78ea0db2b45d3db0c13905238\",\r\n \"name\": \"init-switzerlandnorth-f7ab45e5ce8440f78ea0db2b45d3db0c13905238\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"switzerlandnorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-switzerlandnorth\",\r\n \"name\": \"heartbeatexit-atlas-switzerlandnorth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"switzerlandnorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-switzerlandnorth\",\r\n \"name\": \"immediatecrash-atlas-switzerlandnorth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"switzerlandnorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"aspnetcontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"51.107.204.250\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-switzerlandnorth\",\r\n \"fqdn\": \"longrunning-atlas-switzerlandnorth.switzerlandnorth.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-switzerlandnorth\",\r\n \"name\": \"longrunning-atlas-switzerlandnorth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"switzerlandnorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-switzerlandnorth/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-switzerlandnorth/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"switzerlandnorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.14\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"yes > /dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier0a777908039e42d58228b7fcaa7a3486ACILinuxDockerhub/providers/Microsoft.ContainerInstance/containerGroups/dockerhub-uaenorth-0a777908039e42d58228b7fcaa7fb269a886604f2db\",\r\n \"name\": \"dockerhub-uaenorth-0a777908039e42d58228b7fcaa7fb269a886604f2db\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uaenorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier2bbef796903f46aa9423a74c49267e18ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-uaenorth-2bbef796903f46aa9423a74c4280d3e7c61970d07\",\r\n \"name\": \"escapedargs-uaenorth-2bbef796903f46aa9423a74c4280d3e7c61970d07\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uaenorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier4d09500ff49d4006a912c303a310c5e8ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-uaenorth-4d09500ff49d4006a912c303a310cba9775d54ee5fc7d\",\r\n \"name\": \"cgposts-uaenorth-4d09500ff49d4006a912c303a310cba9775d54ee5fc7d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uaenorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier97dd86837b3b476399329ec6a58baf59ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-uaenorth-97dd86837b3b476399329ec6a58bafd026111b1d60304\",\r\n \"name\": \"cgposts-uaenorth-97dd86837b3b476399329ec6a58bafd026111b1d60304\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uaenorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'a3263ee1-5a96-49d6-9d12-58fdbdbed7e5' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"7aac3fa04dce4d5da9140fac2b87832f\",\r\n \"fqdn\": \"7aac3fa04dce4d5da9140fac2b87832f.uaenorth.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera67f87829136448ba483a8a415e4f51cACILinuxIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-uaenorth-a67f87829136448ba483a8a415e4f850225fafa580b92\",\r\n \"name\": \"ingress-uaenorth-a67f87829136448ba483a8a415e4f850225fafa580b92\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uaenorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '80b2812e-efd6-42e1-bc30-cbdfd67df4fb'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc56fcb2b7a124142932c8a136d8ad26cACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-uaenorth-c56fcb2b7a124142932c8a136d8ad26c6807cdf4514a8998\",\r\n \"name\": \"init-uaenorth-c56fcb2b7a124142932c8a136d8ad26c6807cdf4514a8998\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uaenorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierf74bca8ae14149b29604645b4adf59edACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-uaenorth-f74bca8ae14149b29604645b4adf567d986712f1e6cb7\",\r\n \"name\": \"cgposts-uaenorth-f74bca8ae14149b29604645b4adf567d986712f1e6cb7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uaenorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-uaenorth\",\r\n \"name\": \"heartbeatexit-atlas-uaenorth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uaenorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-uaenorth\",\r\n \"name\": \"immediatecrash-atlas-uaenorth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uaenorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.120.89.221\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-uaenorth\",\r\n \"fqdn\": \"longrunning-atlas-uaenorth.uaenorth.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-uaenorth\",\r\n \"name\": \"longrunning-atlas-uaenorth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uaenorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"macolsoncontainerresource\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 4.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.120.89.28\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/macolsorg/providers/Microsoft.ContainerInstance/containerGroups/macolsoncontainerresource\",\r\n \"name\": \"macolsoncontainerresource\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-uaenorth/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-uaenorth/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uaenorth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/etc/hosts\",\r\n \"/files/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 60;cat /otherfiles/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier1565c01c98d84f068692489d14dc93d6ACILinuxEmptyDirVolume/providers/Microsoft.ContainerInstance/containerGroups/emptydir-uksouth-1565c01c98d84f068692489d14dc9278fa8c014b34409\",\r\n \"name\": \"emptydir-uksouth-1565c01c98d84f068692489d14dc9278fa8c014b34409\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 4 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier420ff21946e94bd1a3799ea7b8806793ACIWindowsRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-uksouth-420ff21946e94bd1a3799ea7fb87d424ed5aef1d\",\r\n \"name\": \"restartpolicy-uksouth-420ff21946e94bd1a3799ea7fb87d424ed5aef1d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier47405e991ac4465c82867598076bb237ACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-uksouth-47405e991ac4465c82867598076bb237ac684a210936175300\",\r\n \"name\": \"msi-uksouth-47405e991ac4465c82867598076bb237ac684a210936175300\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier53cb0c86423c46fda58959a35e10a792ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-uksouth-53cb0c86423c46fda58959a35e10a72932cd4554922692\",\r\n \"name\": \"cgposts-uksouth-53cb0c86423c46fda58959a35e10a72932cd4554922692\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier58f1d4982c0e427ca5b3fd71fee1433aACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-uksouth-58f1d4982c0e427ca5b3fd71fee1433aa5a85b0f4ff9cf2b0\",\r\n \"name\": \"init-uksouth-58f1d4982c0e427ca5b3fd71fee1433aa5a85b0f4ff9cf2b0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/files/src5d13597667624d69811d0194bb50a53eacilinuxazurefilevolume.txt\",\r\n \"/files/dst5d13597667624d69811d0194bb50a53eacilinuxazurefilevolume.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"azureFile\": {\r\n \"shareName\": \"sbzend2end-linux-5d13597667624d69811d0194bb50a4060c6fc22e3e3ee\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier5d13597667624d69811d0194bb50a53eACILinuxAzureFileVolume/providers/Microsoft.ContainerInstance/containerGroups/azf-uksouth-5d13597667624d69811d0194bb50a53eac99fef777d286e283\",\r\n \"name\": \"azf-uksouth-5d13597667624d69811d0194bb50a53eac99fef777d286e283\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier6946bb7d6a9142789b82236fa1925359ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-uksouth-6946bb7d6a9142789b82236fa19253b8daef301fd46533\",\r\n \"name\": \"cgposts-uksouth-6946bb7d6a9142789b82236fa19253b8daef301fd46533\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier72ddb92a594a4ded811c3b880f0b2cd2ACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-uksouth-72ddb92a594a4ded811c3b880f0b2cd2ac5181bf85a3213631\",\r\n \"name\": \"msi-uksouth-72ddb92a594a4ded811c3b880f0b2cd2ac5181bf85a3213631\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc37b34ebf2694d38b3f94f0eafb7771dACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-uksouth-c37b34ebf2694d38b3f94f0eafb7771fd207a55145b062\",\r\n \"name\": \"cgposts-uksouth-c37b34ebf2694d38b3f94f0eafb7771fd207a55145b062\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundchecker:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiercf9b84f13c7d47d3b637931f37042854ACILinuxConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-uksouth-cf9b84f13c7d47d3b637931f37042f5cda52d7dc872f5\",\r\n \"name\": \"outbound-uksouth-cf9b84f13c7d47d3b637931f37042f5cda52d7dc872f5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere44693380ec94b2191d8607e7277542bACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-uksouth-e44693380ec94b2191d8607e7277542d465c0abcf8f350\",\r\n \"name\": \"cgposts-uksouth-e44693380ec94b2191d8607e7277542d465c0abcf8f350\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifieref84889dc24b4ee59869c9fbf8ed3aeaACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-uksouth-ef84889dc24b4ee59869c9fbf8ed3a3ca60928490ab363\",\r\n \"name\": \"cgposts-uksouth-ef84889dc24b4ee59869c9fbf8ed3a3ca60928490ab363\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-uksouth\",\r\n \"name\": \"heartbeatexit-atlas-uksouth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-uksouth\",\r\n \"name\": \"heartbeatexit-k8-uksouth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-uksouth\",\r\n \"name\": \"immediatecrash-atlas-uksouth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-uksouth\",\r\n \"name\": \"immediatecrash-k8-uksouth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"51.132.55.138\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-uksouth\",\r\n \"fqdn\": \"longrunning-atlas-uksouth.uksouth.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-uksouth\",\r\n \"name\": \"longrunning-atlas-uksouth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"51.132.49.166\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-uksouth\",\r\n \"fqdn\": \"longrunning-k8-uksouth.uksouth.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-uksouth\",\r\n \"name\": \"longrunning-k8-uksouth\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.12\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-uksouth/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-uksouth/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"uksouth\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier351834f3e61445699581b2ee51471dcaACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-ukwest-351834f3e61445699581b2ee51471d8f2511f86881f016\",\r\n \"name\": \"outbound-ukwest-351834f3e61445699581b2ee51471d8f2511f86881f016\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"ukwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundchecker:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier4790170c42cf41e4a60b75c40176945dACILinuxConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-ukwest-4790170c42cf41e4a60b75c4017694944c4a2a24e96ba5\",\r\n \"name\": \"outbound-ukwest-4790170c42cf41e4a60b75c4017694944c4a2a24e96ba5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"ukwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier798a1618743541e296aa4fbb450dc79cACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-ukwest-798a1618743541e296aa4fbb450dc71fb0eb89c9dd7ba5\",\r\n \"name\": \"outbound-ukwest-798a1618743541e296aa4fbb450dc71fb0eb89c9dd7ba5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"ukwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8c2634015ea74b4dbf92a89272d69a93ACILinuxContainerExec/providers/Microsoft.ContainerInstance/containerGroups/exec-ukwest-8c2634015ea74b4dbf92a89272d69a93ac066ca38c6becc273\",\r\n \"name\": \"exec-ukwest-8c2634015ea74b4dbf92a89272d69a93ac066ca38c6becc273\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"ukwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera0a794169ec341c0a9a874e7985c684dACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-ukwest-a0a794169ec341c0a9a874e7985c684cea57677b8451bc3\",\r\n \"name\": \"cgposts-ukwest-a0a794169ec341c0a9a874e7985c684cea57677b8451bc3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"ukwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 3; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc75c999fb8924a9d9b74b6604009973fACILinuxRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-ukwest-c75c999fb8924a9d9b74b66046d471764bb5652fd\",\r\n \"name\": \"restartpolicy-ukwest-c75c999fb8924a9d9b74b66046d471764bb5652fd\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"ukwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiercfb89242359a4da6979a443ac25ccd71ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-ukwest-cfb89242359a4da6979a443ac25ccd7636b664f6ba72df0\",\r\n \"name\": \"cgposts-ukwest-cfb89242359a4da6979a443ac25ccd7636b664f6ba72df0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"ukwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Updating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierdcd7bb6444e74203a9d6a9b31444c62cACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-ukwest-dcd7bb6444e74203a9d6a9b31444c621ab2540eca6ea50d\",\r\n \"name\": \"cgposts-ukwest-dcd7bb6444e74203a9d6a9b31444c621ab2540eca6ea50d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"ukwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-ukwest\",\r\n \"name\": \"heartbeatexit-atlas-ukwest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"ukwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-ukwest\",\r\n \"name\": \"immediatecrash-atlas-ukwest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"ukwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"aspnetcontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"51.141.73.70\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-ukwest\",\r\n \"fqdn\": \"longrunning-atlas-ukwest.ukwest.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-ukwest\",\r\n \"name\": \"longrunning-atlas-ukwest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"ukwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-ukwest/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-ukwest/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"ukwest\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier5238d0c37ef3494ab3a1468497d751acACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-westcentralus-5238d0c37ef3494ab3a1468497d79fe51fca66c80b33\",\r\n \"name\": \"msi-westcentralus-5238d0c37ef3494ab3a1468497d79fe51fca66c80b33\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier5eb15e9259c64cc2bd9f51395ae3e7a4ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westcentralus-5eb15e9259c64cc2bd9f513917ffac1ba47ca052\",\r\n \"name\": \"cgposts-westcentralus-5eb15e9259c64cc2bd9f513917ffac1ba47ca052\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier94ca829c769345c49ba3382c86b41e60ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-westcentralus-94ca829c769345c49ba338bc58806986757352\",\r\n \"name\": \"liveprobe-westcentralus-94ca829c769345c49ba338bc58806986757352\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier989588ff6afa4785bfa8a9d28a0ed22dACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-westcentralus-989588ff6afa4785bfa8a9d28a0e75bacf68a57f7c5e\",\r\n \"name\": \"msi-westcentralus-989588ff6afa4785bfa8a9d28a0e75bacf68a57f7c5e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierdc187aeb2497471c87eb48b373d4446cACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westcentralus-dc187aeb2497471c87eb48b3211c50bda96ae2b2\",\r\n \"name\": \"cgposts-westcentralus-dc187aeb2497471c87eb48b3211c50bda96ae2b2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-westcentralus\",\r\n \"name\": \"heartbeatexit-k8-westcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-westcentralus\",\r\n \"name\": \"immediatecrash-k8-westcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"13.78.150.95\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-westcentralus\",\r\n \"fqdn\": \"longrunning-k8-westcentralus.westcentralus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-westcentralus\",\r\n \"name\": \"longrunning-k8-westcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainerwestcentralus\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnetwestcentralus-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainerwestcentralus\",\r\n \"name\": \"appcontainerwestcentralus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"fluentd\",\r\n \"properties\": {\r\n \"image\": \"fluentd\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"infnt\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"sleep\",\r\n \"9999999\"\r\n ],\r\n \"environmentVariables\": []\r\n }\r\n }\r\n ],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testinfinteinitk8\",\r\n \"name\": \"testinfinteinitk8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-westcentralus/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-westcentralus/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nfstestwcus\",\r\n \"properties\": {\r\n \"image\": \"nginx:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeinyvneteuap/providers/Microsoft.Network/networkProfiles/aci-network-profile-wcusvnet-aci\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeinyvneteuap/providers/Microsoft.ContainerInstance/containerGroups/nfstestwcus\",\r\n \"name\": \"nfstestwcus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"bcdr-westeurope\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.86.225.154\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"bcdr-test\",\r\n \"fqdn\": \"bcdr-test.westeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/ACI-Compliance/providers/Microsoft.ContainerInstance/containerGroups/bcdr-westeurope\",\r\n \"name\": \"bcdr-westeurope\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier1f223a7270374207b6bf439d26595846ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westeurope-1f223a7270374207b6bf439d26551ce2f82927095f1\",\r\n \"name\": \"cgposts-westeurope-1f223a7270374207b6bf439d26551ce2f82927095f1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier465834d58d0c4cbeb4756c0c1d7fb448ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westeurope-465834d58d0c4cbeb4756c0c1d72060e81194808357\",\r\n \"name\": \"cgposts-westeurope-465834d58d0c4cbeb4756c0c1d72060e81194808357\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier55e20a55684741a58f1b58a6e05ef9ebACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-westeurope-55e20a55684741a58f1b58ab6deceef75b31c27\",\r\n \"name\": \"escapedargs-westeurope-55e20a55684741a58f1b58ab6deceef75b31c27\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.61.226.45\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier561109d1a7a94acc87d60fb8783acf42ACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-westeurope-561109d1a7a94acc87d60fb8783b6eab60ef6a41a5d\",\r\n \"name\": \"ingress-westeurope-561109d1a7a94acc87d60fb8783b6eab60ef6a41a5d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/files/src6379473315e841bdb76479b6390ed4baacilinuxazurefilevolume.txt\",\r\n \"/files/dst6379473315e841bdb76479b6390ed4baacilinuxazurefilevolume.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"azureFile\": {\r\n \"shareName\": \"sbzend2end-linux-6379473315e841bdb76479b6390edc24a9d2afc18838c\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier6379473315e841bdb76479b6390ed4baACILinuxAzureFileVolume/providers/Microsoft.ContainerInstance/containerGroups/azf-westeurope-6379473315e841bdb76479b6390ed4b02d9fd2de00526f0\",\r\n \"name\": \"azf-westeurope-6379473315e841bdb76479b6390ed4b02d9fd2de00526f0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '6d4a828d-714e-4cbc-acf3-04653ab2dd61'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier7091e671351345fd83d73ca7f5ca421aACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-westeurope-7091e671351345fd83d73ca7f5ca420ec1a2e52ae6d20c\",\r\n \"name\": \"init-westeurope-7091e671351345fd83d73ca7f5ca420ec1a2e52ae6d20c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"gputestcuda9\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/cuda-tensforflow-serving:cuda9\",\r\n \"ports\": [\r\n {\r\n \"port\": 8501\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"MODEL_NAME\",\r\n \"value\": \"half_plus_two\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0,\r\n \"gpu\": {\r\n \"count\": 1,\r\n \"sku\": \"K80\"\r\n }\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"mountPath\": \"/models/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8501\r\n }\r\n ],\r\n \"ip\": \"20.93.223.34\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"azureFile\": {\r\n \"shareName\": \"gpu\",\r\n \"storageAccountName\": \"gpumodels\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier73cbe759da5748d4a105c2c3cf109be4ACILinuxGpuCuda9/providers/Microsoft.ContainerInstance/containerGroups/cuda9-westeurope-73cbe759da5748d4a105c2c3cf109b5dc2cc6897e9997\",\r\n \"name\": \"cuda9-westeurope-73cbe759da5748d4a105c2c3cf109b5dc2cc6897e9997\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"gputestcuda9\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/cuda-tensforflow-serving:cuda9\",\r\n \"ports\": [\r\n {\r\n \"port\": 8501\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"MODEL_NAME\",\r\n \"value\": \"half_plus_two\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0,\r\n \"gpu\": {\r\n \"count\": 1,\r\n \"sku\": \"K80\"\r\n }\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"mountPath\": \"/models/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8501\r\n }\r\n ],\r\n \"ip\": \"20.82.56.158\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"azureFile\": {\r\n \"shareName\": \"gpu\",\r\n \"storageAccountName\": \"gpumodels\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier816ddfc6e45e40bbb5c0d43343fd640eACILinuxGpuCuda9/providers/Microsoft.ContainerInstance/containerGroups/cuda9-westeurope-816ddfc6e45e40bbb5c0d43343fd6dba647a0aaaca3b9\",\r\n \"name\": \"cuda9-westeurope-816ddfc6e45e40bbb5c0d43343fd6dba647a0aaaca3b9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.54.220.213\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera5fb2191121b4c15a52a7fd506262a91ACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-westeurope-a5fb2191121b4c15a52a7fd5062687c2f42fca0d6f3\",\r\n \"name\": \"ingress-westeurope-a5fb2191121b4c15a52a7fd5062687c2f42fca0d6f3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierb1a6223619544d8a91b5f8c4e8b5132cACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westeurope-b1a6223619544d8a91b5f8c4e8b3668227cc6449f3f\",\r\n \"name\": \"cgposts-westeurope-b1a6223619544d8a91b5f8c4e8b3668227cc6449f3f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/app/wwwroot/mounted/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo '7aff9434-aa4e-4467-928f-fd1f6e5f1c98' > /files/index.html\"\r\n ],\r\n \"environmentVariables\": [],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.76.131.67\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"1bf7f65a463b4c47b90029db70030f34\",\r\n \"fqdn\": \"1bf7f65a463b4c47b90029db70030f34.westeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierb87cfff367bf4ac7aeb5b28064508bf3ACILinuxIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-westeurope-b87cfff367bf4ac7aeb5b28064570bd3987ac600aab\",\r\n \"name\": \"ingress-westeurope-b87cfff367bf4ac7aeb5b28064570bd3987ac600aab\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc5cd51fbcab64db9ad9131d04b66e4aeACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westeurope-c5cd51fbcab64db9ad9131d04b6fc01eb416091ed8b\",\r\n \"name\": \"cgposts-westeurope-c5cd51fbcab64db9ad9131d04b6fc01eb416091ed8b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.76.110.13\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"e6e63d492f4744fa9076e1b84ab61cb2\",\r\n \"fqdn\": \"e6e63d492f4744fa9076e1b84ab61cb2.westeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierd36574baac614c02a447bbe5c27560dbACIWindowsIngressDns/providers/Microsoft.ContainerInstance/containerGroups/ingress-westeurope-d36574baac614c02a447bbe5c272a7894fa4d59c202\",\r\n \"name\": \"ingress-westeurope-d36574baac614c02a447bbe5c272a7894fa4d59c202\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere87b24b365e34f748291684f02496bccACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-westeurope-e87b24b365e34f748291684f02cc003cfef886a300\",\r\n \"name\": \"outbound-westeurope-e87b24b365e34f748291684f02cc003cfef886a300\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.86.239.85\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierf7ab094382a6434187425b64d8d38a1dACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-westeurope-f7ab094382a6434187425b64d8dd96f7e4f47053748\",\r\n \"name\": \"ingress-westeurope-f7ab094382a6434187425b64d8dd96f7e4f47053748\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"macolso/aci-python-app:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.92.0.18\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/garbage/providers/Microsoft.ContainerInstance/containerGroups/garbage\",\r\n \"name\": \"garbage\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-westeurope\",\r\n \"name\": \"heartbeatexit-atlas-westeurope\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-westeurope\",\r\n \"name\": \"heartbeatexit-k8-westeurope\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-westeurope\",\r\n \"name\": \"immediatecrash-atlas-westeurope\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-westeurope\",\r\n \"name\": \"immediatecrash-k8-westeurope\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.71.66.191\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-westeurope\",\r\n \"fqdn\": \"longrunning-atlas-westeurope.westeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-westeurope\",\r\n \"name\": \"longrunning-atlas-westeurope\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.76.95.198\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-westeurope\",\r\n \"fqdn\": \"longrunning-k8-westeurope.westeurope.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-westeurope\",\r\n \"name\": \"longrunning-k8-westeurope\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainerwesteurope\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnetwesteurope-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainerwesteurope\",\r\n \"name\": \"appcontainerwesteurope\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"mongo\",\r\n \"properties\": {\r\n \"image\": \"mongo\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testmongo\",\r\n \"name\": \"testmongo\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"mongo\",\r\n \"properties\": {\r\n \"image\": \"mongo\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testmongo2\",\r\n \"name\": \"testmongo2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.8\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-westeurope/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-westeurope/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"myapp6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.14\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/myapp6\",\r\n \"name\": \"myapp6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"myapp7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 25\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 25\r\n }\r\n ],\r\n \"ip\": \"10.0.1.11\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westeuropevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/myapp7\",\r\n \"name\": \"myapp7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"myapp8\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/servercore:ltsc2019\",\r\n \"command\": [\r\n \"powershell\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropedemo/providers/Microsoft.ContainerInstance/containerGroups/myapp8\",\r\n \"name\": \"myapp8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.241.0.7\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropetemp/providers/Microsoft.Network/networkProfiles/aci-network-profile-weu\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropetemp/providers/Microsoft.ContainerInstance/containerGroups/test2\",\r\n \"name\": \"test2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.241.0.6\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropetemp/providers/Microsoft.Network/networkProfiles/aci-network-profile-weu\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropetemp/providers/Microsoft.ContainerInstance/containerGroups/test3\",\r\n \"name\": \"test3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.241.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropetemp/providers/Microsoft.Network/networkProfiles/aci-network-profile-weu\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westeuropetemp/providers/Microsoft.ContainerInstance/containerGroups/test4\",\r\n \"name\": \"test4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk8842\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk8842init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.86.184.23\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk8842\",\r\n \"fqdn\": \"acinetsdk8842.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"11d9f62d-1ddc-4cd5-bc90-0f55de757963\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg2147/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk8842\",\r\n \"name\": \"acinetsdk8842\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk3491\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk3491init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo helloworld && sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-05-13T07:22:08.601Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-05-13T07:22:15.079Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk3491\",\r\n \"fqdn\": \"acinetsdk3491.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"4ab108cb-d3b8-467d-a0fd-bf3f69a8b6e9\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg2546/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk3491\",\r\n \"name\": \"acinetsdk3491\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"acinetsdk809\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do sleep 10; done\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"ls\"\r\n ]\r\n },\r\n \"periodSeconds\": 20\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"acinetsdk809init\",\r\n \"properties\": {\r\n \"image\": \"alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 5\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"secretEnv\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.83.207.60\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"acinetsdk809\",\r\n \"fqdn\": \"acinetsdk809.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"workspaceid\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"3ed6700f-d522-410d-8f77-34f1c6c8ae97\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/aci_rg4665/providers/Microsoft.ContainerInstance/containerGroups/acinetsdk809\",\r\n \"name\": \"acinetsdk809\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cv-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cognitive-services/vision/read:3.1-preview\",\r\n \"ports\": [\r\n {\r\n \"port\": 5000\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"eula\",\r\n \"value\": \"accept\"\r\n },\r\n {\r\n \"name\": \"billing\"\r\n },\r\n {\r\n \"name\": \"apikey\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 8.0,\r\n \"cpu\": 4.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 5000\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/allhandsdemo/providers/Microsoft.ContainerInstance/containerGroups/acicognitiveserviceshost\",\r\n \"name\": \"acicognitiveserviceshost\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container1\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"104.210.51.114\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci-demo12345\",\r\n \"fqdn\": \"aci-demo12345.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/bhtest/providers/Microsoft.ContainerInstance/containerGroups/container1\",\r\n \"name\": \"container1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier05109d97291745edb655b2926b9110dbACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westus-05109d97291745edb655b2926b9110d2649f466bc8b2366\",\r\n \"name\": \"cgposts-westus-05109d97291745edb655b2926b9110d2649f466bc8b2366\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/etc/hosts\",\r\n \"/files/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 60;cat /otherfiles/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier13d5bfc9dda54d36811434619a74a726ACILinuxEmptyDirVolume/providers/Microsoft.ContainerInstance/containerGroups/emptydir-westus-13d5bfc9dda54d36811434619a74a7c7438c83c7fcd06c\",\r\n \"name\": \"emptydir-westus-13d5bfc9dda54d36811434619a74a7c7438c83c7fcd06c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier3bfb6c9976e043ce94b4bcd26fce5b44ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westus-3bfb6c9976e043ce94b4bcd26fce5b480ccd5755fc31502\",\r\n \"name\": \"cgposts-westus-3bfb6c9976e043ce94b4bcd26fce5b480ccd5755fc31502\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.14\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"yes > /dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier64cfddda2feb4f07916c3df980bc3d01ACILinuxDockerhub/providers/Microsoft.ContainerInstance/containerGroups/dockerhub-westus-64cfddda2feb4f07916c3df980bc37bb438be9c9ae669\",\r\n \"name\": \"dockerhub-westus-64cfddda2feb4f07916c3df980bc37bb438be9c9ae669\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier6674c3cf875d4258813176ea4faeac3dACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-westus-6674c3cf875d4258813176ea4faeac3daci8436e172bf18ba64\",\r\n \"name\": \"msi-westus-6674c3cf875d4258813176ea4faeac3daci8436e172bf18ba64\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo 'fba0f6c4-19e6-4e55-93fd-7fc16c1f98af'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier770b7c804dcb40dc9e74abe8e3f85ae1ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-westus-770b7c804dcb40dc9e74abe8e3f85ae1ac5c4fd92c5abdc301\",\r\n \"name\": \"init-westus-770b7c804dcb40dc9e74abe8e3f85ae1ac5c4fd92c5abdc301\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '52392925-49d4-42fc-a1a6-1444fd234ae4'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier7af845cf4fc3497b82ceb05fd0154134ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-westus-7af845cf4fc3497b82ceb05fd0154134ac494227dfb5456a14\",\r\n \"name\": \"init-westus-7af845cf4fc3497b82ceb05fd0154134ac494227dfb5456a14\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo 'a8b4f88f-88f8-42ae-9400-0964e317f951'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier94b14583a5a74f7088f5f7e8e9baf7daACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-westus-94b14583a5a74f7088f5f7e8e9baf7daac44e2ae1bc69cdd14\",\r\n \"name\": \"init-westus-94b14583a5a74f7088f5f7e8e9baf7daac44e2ae1bc69cdd14\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '309b2b91-317e-43a9-84e2-3d5dbd652fa2'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier9a0cac7f96cf4896b460e7690430a4bbACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-westus-9a0cac7f96cf4896b460e7690430a4bbace68207cd449109f0\",\r\n \"name\": \"init-westus-9a0cac7f96cf4896b460e7690430a4bbace68207cd449109f0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret1.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"cat /files/secret2.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier9fe0e1e125e544c19e4a656e2765d57eACILinuxSecretVolume/providers/Microsoft.ContainerInstance/containerGroups/secvol-westus-9fe0e1e125e544c19e4a656e2765d57eb0c5c1a23d96abd7\",\r\n \"name\": \"secvol-westus-9fe0e1e125e544c19e4a656e2765d57eb0c5c1a23d96abd7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera788ee4d6a954a15bf3cbabda62d1933ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westus-a788ee4d6a954a15bf3cbabda62d193a0dd122183b24c38\",\r\n \"name\": \"cgposts-westus-a788ee4d6a954a15bf3cbabda62d193a0dd122183b24c38\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/outboundcheckerwindows:2.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"RETRIES\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"SLEEPAFTER\",\r\n \"value\": \"true\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifieracdaad4ea73d499ea76580e60fbd4480ACIWindowsConnectivity/providers/Microsoft.ContainerInstance/containerGroups/outbound-westus-acdaad4ea73d499ea76580e60fbd44bf66c1816f0c86ee\",\r\n \"name\": \"outbound-westus-acdaad4ea73d499ea76580e60fbd44bf66c1816f0c86ee\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierbd4e980e2ee94eafa1475945cbb80894ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westus-bd4e980e2ee94eafa1475945cbb80893c5aa938a0ba44f2\",\r\n \"name\": \"cgposts-westus-bd4e980e2ee94eafa1475945cbb80893c5aa938a0ba44f2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 3; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiercc4471f525844fb9beae407954ce4297ACILinuxRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-westus-cc4471f525844fb9beae407958c41c2b6744a10db\",\r\n \"name\": \"restartpolicy-westus-cc4471f525844fb9beae407958c41c2b6744a10db\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiercdce3ab609a74b56bf7477c9ffcec4dfACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westus-cdce3ab609a74b56bf7477c9ffcec4d9b063245daba3f1f\",\r\n \"name\": \"cgposts-westus-cdce3ab609a74b56bf7477c9ffcec4d9b063245daba3f1f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/files/srcfb8ac14f4d3345c09d8bd03623ed4be2acilinuxazurefilevolume.txt\",\r\n \"/files/dstfb8ac14f4d3345c09d8bd03623ed4be2acilinuxazurefilevolume.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"azureFile\": {\r\n \"shareName\": \"sbzend2end-linux-fb8ac14f4d3345c09d8bd03623ed427ffd98a4fe0511b\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierfb8ac14f4d3345c09d8bd03623ed4be2ACILinuxAzureFileVolume/providers/Microsoft.ContainerInstance/containerGroups/azf-westus-fb8ac14f4d3345c09d8bd03623ed4be2aci28999317917a2bb7\",\r\n \"name\": \"azf-westus-fb8ac14f4d3345c09d8bd03623ed4be2aci28999317917a2bb7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"testcontainer\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.160.103.172\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"likevi-aci-demo\",\r\n \"fqdn\": \"likevi-aci-demo.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likevi-aci-test/providers/Microsoft.ContainerInstance/containerGroups/testcontainer\",\r\n \"name\": \"testcontainer\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-westus\",\r\n \"name\": \"heartbeatexit-atlas-westus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-westus\",\r\n \"name\": \"heartbeatexit-k8-westus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Unhealthy\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-westus\",\r\n \"name\": \"immediatecrash-atlas-westus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-westus\",\r\n \"name\": \"immediatecrash-k8-westus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.78.42.221\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-westus\",\r\n \"fqdn\": \"longrunning-atlas-westus.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-westus\",\r\n \"name\": \"longrunning-atlas-westus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"13.88.174.63\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-westus\",\r\n \"fqdn\": \"longrunning-k8-westus.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-westus\",\r\n \"name\": \"longrunning-k8-westus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"sample\",\r\n \"properties\": {\r\n \"image\": \"seabreeze/sbz-helloworld:1.0-alpine\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/m716aci2/providers/Microsoft.ContainerInstance/containerGroups/m716aci2\",\r\n \"name\": \"m716aci2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"sample\",\r\n \"properties\": {\r\n \"image\": \"busybox\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"i=0; while true; do echo \\\"$i: $(date)\\\"; i=$((i+1)); sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/m810aci1/providers/Microsoft.ContainerInstance/containerGroups/m810aci1\",\r\n \"name\": \"m810aci1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"sample\",\r\n \"properties\": {\r\n \"image\": \"busybox\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"i=0; while true; do echo \\\"$i: $(date)\\\"; i=$((i+1)); sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/m812aci1/providers/Microsoft.ContainerInstance/containerGroups/m812aci1\",\r\n \"name\": \"m812aci1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainer5\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.7\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnet-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainer5\",\r\n \"name\": \"appcontainer5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"clustersim\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/clustersimulator:v4.0\",\r\n \"ports\": [\r\n {\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 8080\r\n }\r\n ],\r\n \"ip\": \"13.91.18.108\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"atlasclustersim\",\r\n \"fqdn\": \"atlasclustersim.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/atlasclustersimulator\",\r\n \"name\": \"atlasclustersimulator\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"fluentd\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"frontend\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"168.62.211.204\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8807d057-fff3-4995-b86d-63934ab69f3b\"\r\n }\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/democontainergroup\",\r\n \"name\": \"democontainergroup\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/msibadclustertest\",\r\n \"name\": \"msibadclustertest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/msibadclustertestk8\",\r\n \"name\": \"msibadclustertestk8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/msitest\",\r\n \"name\": \"msitest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/msitest2\",\r\n \"name\": \"msitest2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/placeholder\",\r\n \"name\": \"placeholder\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 16.0,\r\n \"cpu\": 4.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/placeholderbig\",\r\n \"name\": \"placeholderbig\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"df -h /; fallocate -l 20G temp; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; rm temp; sleep 25; date; df -h /; exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/prunetest00\",\r\n \"name\": \"prunetest00\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"df -h /; fallocate -l 20G temp; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; rm temp; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /;exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/prunetest01\",\r\n \"name\": \"prunetest01\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"df -h /; fallocate -l 20G temp; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; rm temp; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /;exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/prunetest02\",\r\n \"name\": \"prunetest02\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"df -h /; fallocate -l 20G temp; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; rm temp; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /;exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/prunetest03\",\r\n \"name\": \"prunetest03\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"df -h /; fallocate -l 20G temp; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; rm temp; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /;exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/prunetest04\",\r\n \"name\": \"prunetest04\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"df -h /; fallocate -l 20G temp; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; rm temp; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /;exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/prunetest05\",\r\n \"name\": \"prunetest05\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"df -h /; fallocate -l 20G temp; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; rm temp; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /;exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/prunetest06\",\r\n \"name\": \"prunetest06\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"df -h /; fallocate -l 20G temp; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; rm temp; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /;exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/prunetest07\",\r\n \"name\": \"prunetest07\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"df -h /; fallocate -l 20G temp; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; rm temp; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /;exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/prunetest08\",\r\n \"name\": \"prunetest08\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"df -h /; fallocate -l 20G temp; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; rm temp; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /;exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/prunetest09\",\r\n \"name\": \"prunetest09\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"df -h /; fallocate -l 20G temp; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; rm temp; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /;exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/prunetest10\",\r\n \"name\": \"prunetest10\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"df -h /; fallocate -l 20G temp; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; rm temp; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /;exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/prunetest11\",\r\n \"name\": \"prunetest11\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"df -h /; fallocate -l 20G temp; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; rm temp; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /;exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/prunetest12\",\r\n \"name\": \"prunetest12\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"df -h /; fallocate -l 20G temp; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; rm temp; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /;exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/prunetest13\",\r\n \"name\": \"prunetest13\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"df -h /; fallocate -l 20G temp; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; sleep 10; date; df -h /; rm temp; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /; sleep 25; date; df -h /;exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/prunetest14\",\r\n \"name\": \"prunetest14\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"clamav\",\r\n \"properties\": {\r\n \"image\": \"mk0x/docker-clamav:alpine\",\r\n \"ports\": [\r\n {\r\n \"port\": 3310\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 3310\r\n }\r\n ],\r\n \"ip\": \"13.88.19.79\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testclamav\",\r\n \"name\": \"testclamav\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"clamav\",\r\n \"properties\": {\r\n \"image\": \"mk0x/docker-clamav:alpine\",\r\n \"ports\": [\r\n {\r\n \"port\": 3310\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 3310\r\n }\r\n ],\r\n \"ip\": \"104.42.239.138\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testclamavatlas\",\r\n \"name\": \"testclamavatlas\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testexecclialpinek8\",\r\n \"name\": \"testexecclialpinek8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testexecclinginxk8\",\r\n \"name\": \"testexecclinginxk8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nanoserver\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/powershell:lts-nanoserver-1809\",\r\n \"command\": [\r\n \"ping\",\r\n \"-t\",\r\n \"localhost\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testexecclipsk8\",\r\n \"name\": \"testexecclipsk8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"testcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testfluentclient\",\r\n \"name\": \"testfluentclient\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cliupdated\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinidforswap\": {\r\n \"principalId\": \"22885c72-8726-477e-b18d-adcdff92e5b0\",\r\n \"clientId\": \"b72416fd-04ad-4030-b3e3-b58ad854ba57\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testidupdate\",\r\n \"name\": \"testidupdate\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"container\",\r\n \"properties\": {\r\n \"image\": \"fluentd\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"containertwo\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8807d057-fff3-4995-b86d-63934ab69f3b\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testlak8containernames\",\r\n \"name\": \"testlak8containernames\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"psh\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredeploymentscripts-powershell:az3.5-1.0.2961.0_master\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testpshatlas\",\r\n \"name\": \"testpshatlas\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"psh\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredeploymentscripts-powershell:az3.5-1.0.2961.0_master\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testpshk8\",\r\n \"name\": \"testpshk8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testshellscriptinvol\",\r\n \"name\": \"testshellscriptinvol\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nmap\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/likevi/udpserver:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"UDP\",\r\n \"port\": 6071\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"UDP\",\r\n \"port\": 6071\r\n }\r\n ],\r\n \"ip\": \"13.64.106.240\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testudpwestus\",\r\n \"name\": \"testudpwestus\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testusermsiatlas\",\r\n \"name\": \"testusermsiatlas\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testusermsik8\",\r\n \"name\": \"testusermsik8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"sfic-gateway\",\r\n \"properties\": {\r\n \"image\": \"sftestcontainerreg.azurecr.io/sfic-gateway:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 5002\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV_SERVICE_PORT\",\r\n \"value\": \"5002\"\r\n },\r\n {\r\n \"name\": \"ENV_HTTP_PROTOCOL\",\r\n \"value\": \"https\"\r\n },\r\n {\r\n \"name\": \"ENV_HOST_NAME\",\r\n \"value\": \"localhost\"\r\n },\r\n {\r\n \"name\": \"ENV_USE_WILDCARD_HOST\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"ENV_WEB_API_HOST\",\r\n \"value\": \"sfic-webapi.westus.azurecontainer.io\"\r\n },\r\n {\r\n \"name\": \"ENV_WEB_API_PORT\",\r\n \"value\": \"5000\"\r\n },\r\n {\r\n \"name\": \"ENV_INTERNAL_CLIENT_CERT_CN\",\r\n \"value\": \"SFICInternalCert\"\r\n },\r\n {\r\n \"name\": \"ENV_INTERNAL_CLIENT_CERT_THUMBPRINT\",\r\n \"value\": \"BFDD569A2A63AAD94A28C2C7DB0B7880E4077C88\"\r\n },\r\n {\r\n \"name\": \"ENV_INTERNAL_CLIENT_CERT_PASSWORD\",\r\n \"value\": \"=D7ZgfU*+V@tHHyqf\"\r\n },\r\n {\r\n \"name\": \"ENV_EXTERNAL_CLIENT_CERT_THUMBPRINT\",\r\n \"value\": \"F167D47B7D3497596858C0F39F7560FF76560820\"\r\n },\r\n {\r\n \"name\": \"ENV_SERVER_CERT_CN\",\r\n \"value\": \"SFICServerCert\"\r\n },\r\n {\r\n \"name\": \"ENV_SERVER_CERT_PASSWORD\",\r\n \"value\": \"vpUhJ@hE=mqf7tM#\"\r\n },\r\n {\r\n \"name\": \"ExecutorAuthMode\",\r\n \"value\": \"MSI\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 2.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sftestcontainerreg.azurecr.io\",\r\n \"username\": \"sftestcontainerreg\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 5002\r\n }\r\n ],\r\n \"ip\": \"13.83.86.229\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"sfic-gateway\",\r\n \"fqdn\": \"sfic-gateway.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/SFIC-RG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/SFICIdentity\": {\r\n \"principalId\": \"e049a0ab-10a0-40dd-a9f4-c09ba4a4c66c\",\r\n \"clientId\": \"f225ab87-4949-42c6-b429-87af57431f7a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/SFIC-RG/providers/Microsoft.ContainerInstance/containerGroups/sfic-gateway\",\r\n \"name\": \"sfic-gateway\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"sfic-webapi\",\r\n \"properties\": {\r\n \"image\": \"sftestcontainerreg.azurecr.io/sfic-webapi:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 5000\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV_SERVICE_PORT\",\r\n \"value\": \"5000\"\r\n },\r\n {\r\n \"name\": \"ENV_HTTP_PROTOCOL\",\r\n \"value\": \"https\"\r\n },\r\n {\r\n \"name\": \"ENV_HOST_NAME\",\r\n \"value\": \"localhost\"\r\n },\r\n {\r\n \"name\": \"ENV_USE_WILDCARD_HOST\",\r\n \"value\": \"true\"\r\n },\r\n {\r\n \"name\": \"ENV_INTERNAL_CLIENT_CERT_CN\",\r\n \"value\": \"SFICInternalCert\"\r\n },\r\n {\r\n \"name\": \"ENV_INTERNAL_CLIENT_CERT_THUMBPRINT\",\r\n \"value\": \"BFDD569A2A63AAD94A28C2C7DB0B7880E4077C88\"\r\n },\r\n {\r\n \"name\": \"ENV_INTERNAL_CLIENT_CERT_PASSWORD\",\r\n \"value\": \"=D7ZgfU*+V@tHHyqf\"\r\n },\r\n {\r\n \"name\": \"ENV_EXTERNAL_CLIENT_CERT_THUMBPRINT\",\r\n \"value\": \"F167D47B7D3497596858C0F39F7560FF76560820\"\r\n },\r\n {\r\n \"name\": \"ENV_SERVER_CERT_CN\",\r\n \"value\": \"SFICServerCert\"\r\n },\r\n {\r\n \"name\": \"ENV_SERVER_CERT_PASSWORD\",\r\n \"value\": \"vpUhJ@hE=mqf7tM#\"\r\n },\r\n {\r\n \"name\": \"ExecutorAuthMode\",\r\n \"value\": \"MSI\"\r\n },\r\n {\r\n \"name\": \"SQLConn\",\r\n \"value\": \"Password=Password!123;User ID=sampleuser@SFICSQL;Initial Catalog=SFICDB;Data Source=tcp:SFICSQL.database.windows.net;\"\r\n },\r\n {\r\n \"name\": \"ENV_STORAGE_PROVIDER\",\r\n \"value\": \"SQL\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 4.0,\r\n \"cpu\": 2.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sftestcontainerreg.azurecr.io\",\r\n \"username\": \"sftestcontainerreg\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 5000\r\n }\r\n ],\r\n \"ip\": \"104.42.233.76\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"sfic-webapi\",\r\n \"fqdn\": \"sfic-webapi.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/SFIC-RG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/SFICIdentity\": {\r\n \"principalId\": \"e049a0ab-10a0-40dd-a9f4-c09ba4a4c66c\",\r\n \"clientId\": \"f225ab87-4949-42c6-b429-87af57431f7a\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/SFIC-RG/providers/Microsoft.ContainerInstance/containerGroups/sfic-webapi\",\r\n \"name\": \"sfic-webapi\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"sfic-executor1\",\r\n \"properties\": {\r\n \"image\": \"mingy123/sfic-all-linux\",\r\n \"command\": [\r\n \"dotnet\",\r\n \"JobExecutor.Console.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/SFICMSI1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/SFICMSI1\": {\r\n \"principalId\": \"abaa13f3-105a-4740-ba33-4c48d72888ec\",\r\n \"clientId\": \"829860c4-d81c-4520-b4a9-410226c7dfbe\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/SFICMSI1/providers/Microsoft.ContainerInstance/containerGroups/sfic-executor1\",\r\n \"name\": \"sfic-executor1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"sfic-executor2\",\r\n \"properties\": {\r\n \"image\": \"mingy123/sfic-all-linux\",\r\n \"command\": [\r\n \"dotnet\",\r\n \"JobExecutor.Console.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/SFICMSI1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/SFICMSI1\": {\r\n \"principalId\": \"abaa13f3-105a-4740-ba33-4c48d72888ec\",\r\n \"clientId\": \"829860c4-d81c-4520-b4a9-410226c7dfbe\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/SFICMSI1/providers/Microsoft.ContainerInstance/containerGroups/sfic-executor2\",\r\n \"name\": \"sfic-executor2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"sfic-manager1\",\r\n \"properties\": {\r\n \"image\": \"mingy123/sfic-all-linux\",\r\n \"command\": [\r\n \"dotnet\",\r\n \"RequestSolution.Console.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/SFICMSI1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/SFICMSI1\": {\r\n \"principalId\": \"abaa13f3-105a-4740-ba33-4c48d72888ec\",\r\n \"clientId\": \"829860c4-d81c-4520-b4a9-410226c7dfbe\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/SFICMSI1/providers/Microsoft.ContainerInstance/containerGroups/sfic-manager1\",\r\n \"name\": \"sfic-manager1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"sfic-manager2\",\r\n \"properties\": {\r\n \"image\": \"mingy123/sfic-all-linux\",\r\n \"command\": [\r\n \"dotnet\",\r\n \"RequestSolution.Console.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/SFICMSI1/providers/Microsoft.ManagedIdentity/userAssignedIdentities/SFICMSI1\": {\r\n \"principalId\": \"abaa13f3-105a-4740-ba33-4c48d72888ec\",\r\n \"clientId\": \"829860c4-d81c-4520-b4a9-410226c7dfbe\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/SFICMSI1/providers/Microsoft.ContainerInstance/containerGroups/sfic-manager2\",\r\n \"name\": \"sfic-manager2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/testwestus/providers/Microsoft.Network/networkProfiles/aci-network-profile-testwestusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/testwestus/providers/Microsoft.ContainerInstance/containerGroups/test1\",\r\n \"name\": \"test1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.162\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-westus/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-westus/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a4cba867-30d7-4c62-aa5c-553c03704330\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.98\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-03be3132-0178-42fe-b697-33c0d71d9c39\",\r\n \"name\": \"validation-03be3132-0178-42fe-b697-33c0d71d9c39\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3e5a259b-9ef8-4f4f-bd2c-c49f6c674735\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.55\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-0616b7be-5338-49c8-bb2d-1540f74ef598\",\r\n \"name\": \"validation-0616b7be-5338-49c8-bb2d-1540f74ef598\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7b7bdb2e-e820-4e17-a169-cf3254b7089e\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.91\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-0e3b1ac3-7abd-4d1c-99b7-d41c36baac00\",\r\n \"name\": \"validation-0e3b1ac3-7abd-4d1c-99b7-d41c36baac00\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2ab36d39-e9a0-4653-9cdf-f7d51efe23cc\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.67\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-1c901d41-c8e9-4cb2-9754-0f078bb9a075\",\r\n \"name\": \"validation-1c901d41-c8e9-4cb2-9754-0f078bb9a075\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f3dd5e0d-57fb-4182-946c-16cda03752b2\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.76\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-24577b62-e5e0-49f3-a8d8-66a554569384\",\r\n \"name\": \"validation-24577b62-e5e0-49f3-a8d8-66a554569384\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a7e6aa83-2c84-49f1-8c1b-7442fb345b6c\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.93\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-3366fe5b-409a-48fe-b1b6-04d2715af88c\",\r\n \"name\": \"validation-3366fe5b-409a-48fe-b1b6-04d2715af88c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c8d636fa-7494-42ac-88fb-32c1d014feec\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.59\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-3628e15a-f5f6-463b-a31d-e711ec99e94b\",\r\n \"name\": \"validation-3628e15a-f5f6-463b-a31d-e711ec99e94b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-56674f72-a6a3-46ff-9b94-3429e7367428\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.69\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-377f8b34-83b5-4225-8695-af0ef165a092\",\r\n \"name\": \"validation-377f8b34-83b5-4225-8695-af0ef165a092\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-1c8b3b79-9f24-4412-9788-5fa549af0a54\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.84\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-3c1eef81-24fa-49ad-9871-1d55499a6dc0\",\r\n \"name\": \"validation-3c1eef81-24fa-49ad-9871-1d55499a6dc0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-17a8087c-3af5-40ba-9de1-b5e983be7ce0\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.85\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-4855c805-bffb-4cca-8d7b-84202356ccd5\",\r\n \"name\": \"validation-4855c805-bffb-4cca-8d7b-84202356ccd5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-ca802e7c-fc82-4659-8512-28546cf9bc19\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.96\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-4a4abf9a-e6f4-4179-b747-6e1c1e90a282\",\r\n \"name\": \"validation-4a4abf9a-e6f4-4179-b747-6e1c1e90a282\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-d9f747d0-79c6-4e2e-ba14-08f6f41332c2\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.100\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-4bede9d2-2107-4c1d-bd5a-8b4100e1ae05\",\r\n \"name\": \"validation-4bede9d2-2107-4c1d-bd5a-8b4100e1ae05\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7ff59d0f-8668-4ecf-a60e-c20362a738b3\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.57\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-50e4b9d6-599c-4f74-b5bd-57f651dfb015\",\r\n \"name\": \"validation-50e4b9d6-599c-4f74-b5bd-57f651dfb015\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-df827df8-c1ef-4c1d-9426-5a097d30aa6c\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.49\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-544f4f7d-0d3f-47d3-b13e-91a6862f3a2e\",\r\n \"name\": \"validation-544f4f7d-0d3f-47d3-b13e-91a6862f3a2e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-44c543a6-6610-4a06-8cea-e3c439850338\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.82\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-6112e1e9-bcda-458b-b32a-03b584263341\",\r\n \"name\": \"validation-6112e1e9-bcda-458b-b32a-03b584263341\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-d7bff310-11c8-4151-a2f1-e3a3156f63b1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.88\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-6be53863-086d-4f0a-8bb4-7ec679b37edd\",\r\n \"name\": \"validation-6be53863-086d-4f0a-8bb4-7ec679b37edd\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-c26a8eed-3df4-4818-b58e-468a53e1360b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.94\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-7809e165-528e-4905-b85c-1f269e841db0\",\r\n \"name\": \"validation-7809e165-528e-4905-b85c-1f269e841db0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-aaf1e8f9-8d6a-4d43-896f-36f6c857c496\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.50\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-7a74e472-f3ee-4659-a7fc-da984e2d43fc\",\r\n \"name\": \"validation-7a74e472-f3ee-4659-a7fc-da984e2d43fc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6b4b6f81-8e35-415e-8d39-1311302841c4\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.62\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-7d0c879a-7ab2-40ce-887a-d4b6bb42bbbc\",\r\n \"name\": \"validation-7d0c879a-7ab2-40ce-887a-d4b6bb42bbbc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-353c19d0-08d0-4570-822e-804b91a6efdb\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.92\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-83b35cdb-5c9e-43a2-887e-6af3ad331213\",\r\n \"name\": \"validation-83b35cdb-5c9e-43a2-887e-6af3ad331213\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3bca87a3-b4c6-4952-bcea-248af286f9d8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.73\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-863408ca-d8fe-41b5-b191-454a135a3368\",\r\n \"name\": \"validation-863408ca-d8fe-41b5-b191-454a135a3368\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-bc20dd29-865f-47cd-8260-17074c70ef99\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.33\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-896a9267-f6d0-49b9-8fe5-c020c018e6d0\",\r\n \"name\": \"validation-896a9267-f6d0-49b9-8fe5-c020c018e6d0\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0c3bdc95-921f-4f71-9e43-4bdc6b34c409\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.60\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-8f067648-2639-4391-8a4f-ebbf9e6f605f\",\r\n \"name\": \"validation-8f067648-2639-4391-8a4f-ebbf9e6f605f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9d813c0e-9ff7-4882-90ed-82bc8be7aa48\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.64\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-9769403d-e1ff-4274-b4b0-3a5161cc33cc\",\r\n \"name\": \"validation-9769403d-e1ff-4274-b4b0-3a5161cc33cc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-978b66c6-b8eb-4c64-aeed-6eb87d77204c\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.71\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-a38ea3ba-f495-47b2-9e36-566154954a58\",\r\n \"name\": \"validation-a38ea3ba-f495-47b2-9e36-566154954a58\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-5a69adea-b7a8-410d-a327-1242f6a4331f\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.89\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-af728308-9d01-471d-94be-64d0295d414c\",\r\n \"name\": \"validation-af728308-9d01-471d-94be-64d0295d414c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-da341f5a-94c0-4e2c-95e2-18ca7ae6f7fe\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.83\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-b01684a6-f028-439c-b390-7d5e55fbf03f\",\r\n \"name\": \"validation-b01684a6-f028-439c-b390-7d5e55fbf03f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-957b3977-cc67-4b45-9920-fcef20e4b2c8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.101\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-baa57158-5167-40e1-88d0-8495a4023045\",\r\n \"name\": \"validation-baa57158-5167-40e1-88d0-8495a4023045\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a13f92c1-a3d1-4837-8ff9-8e80537867b3\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.29\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-bbd289f3-c558-4fd5-82be-0aaa2af23036\",\r\n \"name\": \"validation-bbd289f3-c558-4fd5-82be-0aaa2af23036\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9bdd81ab-194d-4844-b3c8-b68b906ddf5b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.54\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-bf35f1b3-e145-424f-9ff0-b778a1452fc7\",\r\n \"name\": \"validation-bf35f1b3-e145-424f-9ff0-b778a1452fc7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-21b9cf9a-17bc-4859-80b6-8d7680349915\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.58\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-cac4f1c4-999d-49c0-ad4d-99d78de845aa\",\r\n \"name\": \"validation-cac4f1c4-999d-49c0-ad4d-99d78de845aa\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-bcd689f0-3d07-4f43-9087-151b2619a6f8\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.95\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-dde17c13-0dc1-41b7-a29b-1174d06340af\",\r\n \"name\": \"validation-dde17c13-0dc1-41b7-a29b-1174d06340af\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2e2027c3-9c9a-43d8-8317-795116fe5f30\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.65\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-e04190e9-e78e-427f-8721-656683fab175\",\r\n \"name\": \"validation-e04190e9-e78e-427f-8721-656683fab175\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-cb78c324-8fda-437d-8154-79d73fdcf491\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.61\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-e2b1dba7-cad4-4554-bbb8-2d8eb9a75d81\",\r\n \"name\": \"validation-e2b1dba7-cad4-4554-bbb8-2d8eb9a75d81\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-3243e4a7-47a6-48c9-8117-b60b4b217f00\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.78\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-e60f4bcc-04ba-4d85-84b8-8136505a343e\",\r\n \"name\": \"validation-e60f4bcc-04ba-4d85-84b8-8136505a343e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-cb560c96-329e-4b58-a9fc-897727a90004\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.102\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-e6cf3ccd-87b1-42c4-8297-5d58643ce88d\",\r\n \"name\": \"validation-e6cf3ccd-87b1-42c4-8297-5d58643ce88d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6cca4330-5ea0-43b6-904c-3342678bf647\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.90\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-e820be01-5fd8-4ef8-a771-cecdc2376ec5\",\r\n \"name\": \"validation-e820be01-5fd8-4ef8-a771-cecdc2376ec5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-2174bc16-79f1-443d-99ca-ffce8aebf8ed\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.16\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ecc8c558-b205-4f51-a48d-4a8f1e15f4fb\",\r\n \"name\": \"validation-ecc8c558-b205-4f51-a48d-4a8f1e15f4fb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7ea90089-fa2b-42b3-b199-fd94a7e7a9c6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.87\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ecefe4b8-5a68-42ec-ad78-f43547ab24f1\",\r\n \"name\": \"validation-ecefe4b8-5a68-42ec-ad78-f43547ab24f1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-75164667-ad0d-4b16-974d-c89735d07757\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.74\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-westusvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/westusdemo/providers/Microsoft.ContainerInstance/containerGroups/validation-ef5aa20a-98fe-44b0-96f1-d7d602995f6e\",\r\n \"name\": \"validation-ef5aa20a-98fe-44b0-96f1-d7d602995f6e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cg1\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cognitive-services/custom-form/labeltool:latest\",\r\n \"command\": [\r\n \"./run.sh\",\r\n \"eula=accept\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 8.0,\r\n \"cpu\": 2.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"13.91.240.220\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"zeinylabeltestcg\",\r\n \"fqdn\": \"zeinylabeltestcg.westus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeinytest/providers/Microsoft.ContainerInstance/containerGroups/cg1\",\r\n \"name\": \"cg1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/adobe/providers/Microsoft.Network/networkProfiles/aci-network-profile-adobevnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/adobe/providers/Microsoft.ContainerInstance/containerGroups/testudr1\",\r\n \"name\": \"testudr1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello:latest\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.1.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/byovnet/providers/Microsoft.Network/networkProfiles/aci-network-profile-testvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/byovnet/providers/Microsoft.ContainerInstance/containerGroups/test1\",\r\n \"name\": \"test1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier34297d68e63649388207b1288e4dc1b9ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westus2-34297d68e63649388207b1288e4dc17a02b6a2c60f942c\",\r\n \"name\": \"cgposts-westus2-34297d68e63649388207b1288e4dc17a02b6a2c60f942c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier3483e21aad4c46e697812b29504f16fcACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westus2-3483e21aad4c46e697812b29504f164e56a0a7a5f2e843\",\r\n \"name\": \"cgposts-westus2-3483e21aad4c46e697812b29504f164e56a0a7a5f2e843\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 4 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier3e9241e1d0974058af1361abc0a48117ACIWindowsRestartPolicy/providers/Microsoft.ContainerInstance/containerGroups/restartpolicy-westus2-3e9241e1d0974058af1361ab63b44bfff9a60cc1\",\r\n \"name\": \"restartpolicy-westus2-3e9241e1d0974058af1361ab63b44bfff9a60cc1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier4c28480ef1ce468c98d80f81b029c777ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-westus2-4c28480ef1ce468c98d80f81b02939c3b080d7032301\",\r\n \"name\": \"liveprobe-westus2-4c28480ef1ce468c98d80f81b02939c3b080d7032301\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"gputestcuda10\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/cuda-tensforflow-serving:cuda10\",\r\n \"ports\": [\r\n {\r\n \"port\": 8501\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"MODEL_NAME\",\r\n \"value\": \"half_plus_two\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0,\r\n \"gpu\": {\r\n \"count\": 1,\r\n \"sku\": \"K80\"\r\n }\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"mountPath\": \"/models/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8501\r\n }\r\n ],\r\n \"ip\": \"20.69.128.108\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"azureFile\": {\r\n \"shareName\": \"gpu\",\r\n \"storageAccountName\": \"gpumodels\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier4cd70d5224c1430797742d064784d152ACILinuxGpuCuda10/providers/Microsoft.ContainerInstance/containerGroups/cuda10-westus2-4cd70d5224c1430797742d064784d150f62e007cad07cac\",\r\n \"name\": \"cuda10-westus2-4cd70d5224c1430797742d064784d150f62e007cad07cac\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/files/src5d825958031a43aead969f6d75b46f5dacilinuxazurefilevolume.txt\",\r\n \"/files/dst5d825958031a43aead969f6d75b46f5dacilinuxazurefilevolume.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"azureFile\": {\r\n \"shareName\": \"sbzend2end-linux-5d825958031a43aead969f6d75b461158841889dd1474\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier5d825958031a43aead969f6d75b46f5dACILinuxAzureFileVolume/providers/Microsoft.ContainerInstance/containerGroups/azf-westus2-5d825958031a43aead969f6d75b46f5dac7a666e2a43e61a47\",\r\n \"name\": \"azf-westus2-5d825958031a43aead969f6d75b46f5dac7a666e2a43e61a47\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp-nanoserver-1809\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.125.104.24\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier600bc56fa63448e48f177ad8a76798f0ACIWindowsIngress/providers/Microsoft.ContainerInstance/containerGroups/ingress-westus2-600bc56fa63448e48f177ad8a76798e8f46e3f107bd383\",\r\n \"name\": \"ingress-westus2-600bc56fa63448e48f177ad8a76798e8f46e3f107bd383\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8a6a7e4fb2464c149610c53dde6cac5fACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-westus2-8a6a7e4fb2464c149610c53dde6cac5fa34c61bc1eb8f0445\",\r\n \"name\": \"init-westus2-8a6a7e4fb2464c149610c53dde6cac5fa34c61bc1eb8f0445\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"gputestcuda10\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/cuda-tensforflow-serving:cuda10\",\r\n \"ports\": [\r\n {\r\n \"port\": 8501\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"MODEL_NAME\",\r\n \"value\": \"half_plus_two\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0,\r\n \"gpu\": {\r\n \"count\": 1,\r\n \"sku\": \"K80\"\r\n }\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"mountPath\": \"/models/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8501\r\n }\r\n ],\r\n \"ip\": \"20.83.89.168\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"gpumodel\",\r\n \"azureFile\": {\r\n \"shareName\": \"gpu\",\r\n \"storageAccountName\": \"gpumodels\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier978ec38297cf461481f6db686fe209b7ACILinuxGpuCuda10/providers/Microsoft.ContainerInstance/containerGroups/cuda10-westus2-978ec38297cf461481f6db686fe209b1dba80d1fc08477d\",\r\n \"name\": \"cuda10-westus2-978ec38297cf461481f6db686fe209b1dba80d1fc08477d\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Updating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierb139bfb462754f6b9064a94f280c0fd5ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westus2-b139bfb462754f6b9064a94f280c0f12de8476e99247cb\",\r\n \"name\": \"cgposts-westus2-b139bfb462754f6b9064a94f280c0f12de8476e99247cb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiercd389f30fe8b462684ad08283bb3e816ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westus2-cd389f30fe8b462684ad08283bb3e8f5e8640638b831a3\",\r\n \"name\": \"cgposts-westus2-cd389f30fe8b462684ad08283bb3e8f5e8640638b831a3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierfb6ea51e3617468a9eb3366e505ba348ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-westus2-fb6ea51e3617468a9eb3366e505ba3b8f324a3fc3eb6bb\",\r\n \"name\": \"cgposts-westus2-fb6ea51e3617468a9eb3366e505ba3b8f324a3fc3eb6bb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierffcdff15e0574dec9ff6f3ac550868bbACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-westus2-ffcdff15e0574dec9ff6f3ac556df638b0863df49c\",\r\n \"name\": \"escapedargs-westus2-ffcdff15e0574dec9ff6f3ac556df638b0863df49c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"evicttest\",\r\n \"properties\": {\r\n \"image\": \"progrium/stress\",\r\n \"command\": [\r\n \"--cpu\",\r\n \"1000\",\r\n \"--io\",\r\n \"1\",\r\n \"--vm\",\r\n \"2\",\r\n \"--vm-bytes\",\r\n \"128M\",\r\n \"--timeout\",\r\n \"2000s\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 8.0,\r\n \"cpu\": 4.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/evicttest/providers/Microsoft.ContainerInstance/containerGroups/evicttest\",\r\n \"name\": \"evicttest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"testserver\",\r\n \"properties\": {\r\n \"image\": \"likevi/testserver:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"UDP\",\r\n \"port\": 6071\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"UDP\",\r\n \"port\": 6071\r\n }\r\n ],\r\n \"ip\": \"172.24.0.6\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likeviudptest2/providers/Microsoft.Network/networkProfiles/testserver-networkProfile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likeviudptest2/providers/Microsoft.ContainerInstance/containerGroups/testserver\",\r\n \"name\": \"testserver\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-westus2\",\r\n \"name\": \"heartbeatexit-atlas-westus2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-westus2\",\r\n \"name\": \"heartbeatexit-k8-westus2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-westus2\",\r\n \"name\": \"immediatecrash-atlas-westus2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-westus2\",\r\n \"name\": \"immediatecrash-k8-westus2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.190.14.69\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-westus2\",\r\n \"fqdn\": \"longrunning-atlas-westus2.westus2.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-westus2\",\r\n \"name\": \"longrunning-atlas-westus2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.99.133.149\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-westus2\",\r\n \"fqdn\": \"longrunning-k8-westus2.westus2.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-westus2\",\r\n \"name\": \"longrunning-k8-westus2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"helloworld\",\r\n \"properties\": {\r\n \"image\": \"microsoft/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"KUBERNETES_PORT_443_TCP\",\r\n \"value\": \"tcp://10.0.0.1:443\"\r\n },\r\n {\r\n \"name\": \"KUBERNETES_PORT_443_TCP_PROTO\",\r\n \"value\": \"tcp\"\r\n },\r\n {\r\n \"name\": \"KUBERNETES_PORT_443_TCP_PORT\",\r\n \"value\": \"443\"\r\n },\r\n {\r\n \"name\": \"KUBERNETES_PORT_443_TCP_ADDR\",\r\n \"value\": \"10.0.0.1\"\r\n },\r\n {\r\n \"name\": \"KUBERNETES_SERVICE_HOST\",\r\n \"value\": \"10.0.0.1\"\r\n },\r\n {\r\n \"name\": \"KUBERNETES_SERVICE_PORT\",\r\n \"value\": \"443\"\r\n },\r\n {\r\n \"name\": \"KUBERNETES_SERVICE_PORT_HTTPS\",\r\n \"value\": \"443\"\r\n },\r\n {\r\n \"name\": \"KUBERNETES_PORT\",\r\n \"value\": \"tcp://10.0.0.1:443\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"default-token-tns8v\",\r\n \"mountPath\": \"/var/run/secrets/kubernetes.io/serviceaccount\",\r\n \"readOnly\": true\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"extensions\": [\r\n {\r\n \"name\": \"kube-proxy\",\r\n \"properties\": {\r\n \"extensionType\": \"kube-proxy\",\r\n \"version\": \"1.0\",\r\n \"settings\": {\r\n \"clusterCidr\": \"10.240.0.0/16\",\r\n \"kubeVersion\": \"v1.9.10\"\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.241.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"default-token-tns8v\",\r\n \"secret\": {}\r\n }\r\n ],\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"97582b69-6e36-41f6-a2a9-8dc7027830a1\",\r\n \"logType\": \"ContainerInsights\",\r\n \"metadata\": {\r\n \"cluster-resource-id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/bh-test/providers/Microsoft.ContainerService/managedClusters/vnode-test\",\r\n \"node-name\": \"virtual-node-aci-linux\",\r\n \"pod-uuid\": \"fe07207e-53ee-45de-be8c-c6de91f14860\"\r\n }\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/MC_bh-test_vnode-test_westus2/providers/Microsoft.Network/networkProfiles/vk-6fb80f6c77b5f2ad1d72cc9c7e99832e086a68249ae5ee7e0b1504ddc915ee0e\"\r\n },\r\n \"dnsConfig\": {\r\n \"nameServers\": [\r\n \"10.0.0.10\"\r\n ],\r\n \"searchDomains\": \"default.svc.cluster.local svc.cluster.local cluster.local\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/MC_bh-test_vnode-test_westus2/providers/Microsoft.ContainerInstance/containerGroups/default-helloworld\",\r\n \"name\": \"default-helloworld\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"ClusterName\": \"\",\r\n \"CreationTimestamp\": \"2021-07-12 21:03:55 +0000 UTC\",\r\n \"Namespace\": \"default\",\r\n \"NodeName\": \"virtual-node-aci-linux\",\r\n \"PodName\": \"helloworld\",\r\n \"UID\": \"fe07207e-53ee-45de-be8c-c6de91f14860\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hpa-example\",\r\n \"properties\": {\r\n \"image\": \"k8s.gcr.io/hpa-example\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"KUBERNETES_PORT_443_TCP_PROTO\",\r\n \"value\": \"tcp\"\r\n },\r\n {\r\n \"name\": \"KUBERNETES_PORT\",\r\n \"value\": \"tcp://10.0.0.1:443\"\r\n },\r\n {\r\n \"name\": \"KUBERNETES_SERVICE_HOST\",\r\n \"value\": \"10.0.0.1\"\r\n },\r\n {\r\n \"name\": \"PHP_APACHE_PORT_80_TCP_PROTO\",\r\n \"value\": \"tcp\"\r\n },\r\n {\r\n \"name\": \"KUBERNETES_SERVICE_PORT_HTTPS\",\r\n \"value\": \"443\"\r\n },\r\n {\r\n \"name\": \"PHP_APACHE_PORT_80_TCP\",\r\n \"value\": \"tcp://10.0.46.121:80\"\r\n },\r\n {\r\n \"name\": \"PHP_APACHE_PORT_80_TCP_PORT\",\r\n \"value\": \"80\"\r\n },\r\n {\r\n \"name\": \"PHP_APACHE_PORT_80_TCP_ADDR\",\r\n \"value\": \"10.0.46.121\"\r\n },\r\n {\r\n \"name\": \"KUBERNETES_PORT_443_TCP_PORT\",\r\n \"value\": \"443\"\r\n },\r\n {\r\n \"name\": \"PHP_APACHE_SERVICE_HOST\",\r\n \"value\": \"10.0.46.121\"\r\n },\r\n {\r\n \"name\": \"KUBERNETES_PORT_443_TCP\",\r\n \"value\": \"tcp://10.0.0.1:443\"\r\n },\r\n {\r\n \"name\": \"PHP_APACHE_PORT\",\r\n \"value\": \"tcp://10.0.46.121:80\"\r\n },\r\n {\r\n \"name\": \"KUBERNETES_SERVICE_PORT\",\r\n \"value\": \"443\"\r\n },\r\n {\r\n \"name\": \"KUBERNETES_PORT_443_TCP_ADDR\",\r\n \"value\": \"10.0.0.1\"\r\n },\r\n {\r\n \"name\": \"PHP_APACHE_SERVICE_PORT\",\r\n \"value\": \"80\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"default-token-9dzbl\",\r\n \"mountPath\": \"/var/run/secrets/kubernetes.io/serviceaccount\",\r\n \"readOnly\": true\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.137.95.70\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"default-token-9dzbl\",\r\n \"secret\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/minsha-vk-aci-rg/providers/Microsoft.ContainerInstance/containerGroups/default-vk-test\",\r\n \"name\": \"default-vk-test\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"ClusterName\": \"\",\r\n \"CreationTimestamp\": \"2021-08-04 20:44:52 +0000 UTC\",\r\n \"Namespace\": \"default\",\r\n \"NodeName\": \"vk-node-1\",\r\n \"PodName\": \"vk-test\",\r\n \"UID\": \"070f6cee-ce29-49f5-b538-03f075a06cc9\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"itsthenetwork/alpine-ncat\",\r\n \"command\": [\r\n \"nc\",\r\n \"-vz\",\r\n \"-w1\",\r\n \"google.com\",\r\n \"443\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/netcat/providers/Microsoft.Network/networkProfiles/aci-network-profile-netcatvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/netcat/providers/Microsoft.ContainerInstance/containerGroups/test1\",\r\n \"name\": \"test1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/alpine\",\r\n \"name\": \"alpine\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/azureclionkube\",\r\n \"name\": \"azureclionkube\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"ncat\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"40.91.84.162\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/ncatTest\",\r\n \"name\": \"ncatTest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nmap\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"UDP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"UDP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.190.3.228\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/ncatTest2\",\r\n \"name\": \"ncatTest2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"seed0\",\r\n \"properties\": {\r\n \"image\": \"vetodoro/sf-std-seed:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/seed0-cgroup-novin\",\r\n \"name\": \"seed0-cgroup-novin\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"pingloc\",\r\n \"properties\": {\r\n \"image\": \"novinc/novinprivaterepo:pinglocalhost\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"index.docker.io\",\r\n \"username\": \"novinc\"\r\n }\r\n ],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testatlasprivate\",\r\n \"name\": \"testatlasprivate\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testidentitykube\",\r\n \"name\": \"testidentitykube\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testnewimages01\",\r\n \"name\": \"testnewimages01\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testnewimages02\",\r\n \"name\": \"testnewimages02\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testnewimages03\",\r\n \"name\": \"testnewimages03\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testnewimages04\",\r\n \"name\": \"testnewimages04\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testnewimages05\",\r\n \"name\": \"testnewimages05\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [],\r\n \"ip\": \"0.0.0.0\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/acidemo/providers/Microsoft.Network/networkProfiles/mycontainerapp-networkProfile\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourcegroups/acidemo/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myACIId\": {\r\n \"principalId\": \"72dc39ca-0eac-4432-93fb-e98423078b26\",\r\n \"clientId\": \"5c56d595-9e46-49ce-9988-ef6e80f7b72f\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/acidemo/providers/Microsoft.ContainerInstance/containerGroups/workercontainer\",\r\n \"name\": \"workercontainer\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-0fbca967-8847-42d2-9c2d-270bbc593ff5\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.22.1.20\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-1262276c-c3e6-41c8-8a04-32dc51ffa64a\",\r\n \"name\": \"validation-1262276c-c3e6-41c8-8a04-32dc51ffa64a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-5c149d5c-612d-4562-8677-9d839b153710\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.92.0.20\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-68a89454-b865-4882-9c53-017eb3848cd6\",\r\n \"name\": \"validation-68a89454-b865-4882-9c53-017eb3848cd6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-6d44dac1-8ce0-4d31-aa4b-2e5a5cdd2bdc\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.92.0.23\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-74602e15-4846-4113-a86a-a4fd8780f5eb\",\r\n \"name\": \"validation-74602e15-4846-4113-a86a-a4fd8780f5eb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-8229877e-fa0b-4e3a-8788-c252afc824e3\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.92.0.21\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-74e0edfb-5b8f-4fe2-9313-bf8826b1628a\",\r\n \"name\": \"validation-74e0edfb-5b8f-4fe2-9313-bf8826b1628a\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-046842fe-55bc-44a3-b94a-65f8d19d7da3\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.92.0.19\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-a08480df-cfce-41c6-938f-9e153e0a1879\",\r\n \"name\": \"validation-a08480df-cfce-41c6-938f-9e153e0a1879\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-8addffec-105b-4453-85ae-cce6a6e9a88b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.92.0.21\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-be044faf-2610-4351-8fea-6f90752a8299\",\r\n \"name\": \"validation-be044faf-2610-4351-8fea-6f90752a8299\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a0b2285a-0cfc-44c4-8688-a629956f310a\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.22.1.34\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-c269f12d-6909-426f-8728-c78fcb051f60\",\r\n \"name\": \"validation-c269f12d-6909-426f-8728-c78fcb051f60\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-90dfa177-cd59-435d-86f4-3f5da8e6a51b\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.92.0.17\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-cd0c7491-5207-4647-89b6-a149cd14384e\",\r\n \"name\": \"validation-cd0c7491-5207-4647-89b6-a149cd14384e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-736a45af-1889-4513-84f2-313af436d72c\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.92.0.22\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-df7b1361-9cb7-450c-b56f-2adc9c4cac32\",\r\n \"name\": \"validation-df7b1361-9cb7-450c-b56f-2adc9c4cac32\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-ab1b26c9-f3f2-4c64-b195-daad53050243\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.92.0.17\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-centraluseuapvnet-neednewcni-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/centraluseuapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-e6484c41-41f4-44b1-8650-4422ab5c3ca3\",\r\n \"name\": \"validation-e6484c41-41f4-44b1-8650-4422ab5c3ca3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-westus2/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier11d02b36cf0e41ba8a23b3f8dc50e56fACILinuxVnetLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-centraluseuap-11d02b36cf0e41ba8a23b3948f445ad71bf82b\",\r\n \"name\": \"liveprobe-centraluseuap-11d02b36cf0e41ba8a23b3948f445ad71bf82b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier1d8d38a7b1064a76a4c1ada9b75d0feeACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-centraluseuap-1d8d38a7b1064a76a4c138cd7a2a32c3fdd2\",\r\n \"name\": \"escapedargs-centraluseuap-1d8d38a7b1064a76a4c138cd7a2a32c3fdd2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier5ba18e1862574d3aac7473794fa3363bACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-centraluseuap-5ba18e1862574d3aac747379b9171f011be17158\",\r\n \"name\": \"cgposts-centraluseuap-5ba18e1862574d3aac747379b9171f011be17158\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier64ee2ac8bddf4fcab469c728711da735ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-centraluseuap-64ee2ac8bddf4fcab469c7283eef0b8006bd8434\",\r\n \"name\": \"cgposts-centraluseuap-64ee2ac8bddf4fcab469c7283eef0b8006bd8434\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '604475e8-e1a0-4d75-bafd-fc7042cecd3b'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier708f399e851649c6983ae8e8089a6a90ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-centraluseuap-708f399e851649c6983ae8e808962bffaac5ed5617b\",\r\n \"name\": \"init-centraluseuap-708f399e851649c6983ae8e808962bffaac5ed5617b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier74958574887a42d2b981eaf94643b5fcACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-centraluseuap-74958574887a42d2b981eaf946428c1b601e5b4ee39\",\r\n \"name\": \"init-centraluseuap-74958574887a42d2b981eaf946428c1b601e5b4ee39\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"az-scripts-3ra5j26kchjvyazscripts\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli:2.9.1\",\r\n \"command\": [\r\n \"bash\",\r\n \"/mnt/azscripts/azscriptinput/DeploymentScript.sh\",\r\n \"kv-r7ff631fae-avs\",\r\n \"stgr7ff631faecerts\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"AZ_SCRIPTS_PATH_INPUT_DIRECTORY\",\r\n \"value\": \"/mnt/azscripts/azscriptinput\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_PATH_OUTPUT_DIRECTORY\",\r\n \"value\": \"/mnt/azscripts/azscriptoutput\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_PATH_USER_SCRIPT_FILE_NAME\",\r\n \"value\": \"userscript.sh\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_PATH_PRIMARY_SCRIPT_URI_FILE_NAME\",\r\n \"value\": \"primaryscripturi.config\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_PATH_SUPPORTING_SCRIPT_URI_FILE_NAME\",\r\n \"value\": \"supportingscripturi.config\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_PATH_SCRIPT_OUTPUT_FILE_NAME\",\r\n \"value\": \"scriptoutputs.json\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_PATH_EXECUTION_RESULTS_FILE_NAME\",\r\n \"value\": \"executionresult.json\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_AZURE_ENVIRONMENT\",\r\n \"value\": \"AzureCloud\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_CLEANUP_PREFERENCE\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_USER_ASSIGNED_IDENTITY\",\r\n \"value\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier7ff631fae17f46d7b5cc6c3b0e997651ACIAvsTestScenario/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aci-user\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"azscripts\",\r\n \"mountPath\": \"/mnt/azscripts/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"azscripts\",\r\n \"azureFile\": {\r\n \"shareName\": \"72ins3zfts3hkazscripts\",\r\n \"storageAccountName\": \"3ra5j26kchjvyazscripts\"\r\n }\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier7ff631fae17f46d7b5cc6c3b0e997651ACIAvsTestScenario/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aci-user\": {\r\n \"principalId\": \"36e8651f-5ccd-4970-bfdb-4a6b4e0c824f\",\r\n \"clientId\": \"0549ee8c-aae1-4400-acda-f6ba95fd4f4f\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier7ff631fae17f46d7b5cc6c3b0e997651ACIAvsTestScenario/providers/Microsoft.ContainerInstance/containerGroups/3ra5j26kchjvyazscripts\",\r\n \"name\": \"3ra5j26kchjvyazscripts\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"AZ_SCRIPTS_STATUS\": \"generateCert:Completed\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo 'e79f300b-5701-4775-8199-41b035b734bd'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier827c3e8ef84946f8b85960054c9618b8ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-centraluseuap-827c3e8ef84946f8b85960054c9c330f1aa09c70820\",\r\n \"name\": \"init-centraluseuap-827c3e8ef84946f8b85960054c9c330f1aa09c70820\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"cp\",\r\n \"/etc/hosts\",\r\n \"/files/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/files\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 60;cat /otherfiles/dest.txt\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8af0ad8beeeb45569ec91268aa995026ACILinuxEmptyDirVolume/providers/Microsoft.ContainerInstance/containerGroups/emptydir-centraluseuap-8af0ad8beeeb45569ec912660b66159a4dcfc4f\",\r\n \"name\": \"emptydir-centraluseuap-8af0ad8beeeb45569ec912660b66159a4dcfc4f\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier950838a2b625436e8d4be3ac63c9ec03ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-centraluseuap-950838a2b625436e8d4be3ac822ca394c717a9e9\",\r\n \"name\": \"cgposts-centraluseuap-950838a2b625436e8d4be3ac822ca394c717a9e9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo 'f94d708b-0ad9-4598-b493-daa5d7ad0ffc'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera9c527f5d06846d1845498459685cd32ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-centraluseuap-a9c527f5d06846d184549845968ea5049fcdf3ef893\",\r\n \"name\": \"init-centraluseuap-a9c527f5d06846d184549845968ea5049fcdf3ef893\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set && ping localhost -n 121\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"set\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Terminated\",\r\n \"startTime\": \"2021-07-25T07:52:20.152Z\",\r\n \"exitCode\": 0,\r\n \"finishTime\": \"2021-07-25T07:52:23.374Z\",\r\n \"detailStatus\": \"Completed\"\r\n },\r\n \"events\": []\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierb423b4289d884a4396b1f725f8f272f8ACIWindowsInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-centraluseuap-b423b4289d884a4396b1f725f8f2a6b3f5854ccc4b6\",\r\n \"name\": \"init-centraluseuap-b423b4289d884a4396b1f725f8f2a6b3f5854ccc4b6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierbf48d1dafc354a9ebaa784c7b13d2bb0ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-centraluseuap-bf48d1dafc354a9ebaa784c7d2a8d69ab3f0d6ae\",\r\n \"name\": \"cgposts-centraluseuap-bf48d1dafc354a9ebaa784c7d2a8d69ab3f0d6ae\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiercc5cb3ff7ba94947b76f9dfc62a9adf9ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-centraluseuap-cc5cb3ff7ba94947b76f9dfc4a01a124f37b15c2\",\r\n \"name\": \"cgposts-centraluseuap-cc5cb3ff7ba94947b76f9dfc4a01a124f37b15c2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"democontainer2\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.92.0.9\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/icmtestcentral/providers/Microsoft.Network/networkProfiles/aci-network-profile-icmtestcentral-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/icmtestcentral/providers/Microsoft.ContainerInstance/containerGroups/democontainer2\",\r\n \"name\": \"democontainer2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"CENTRALUSEUAP\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-centraluseuap\",\r\n \"name\": \"heartbeatexit-atlas-centraluseuap\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-centraluseuap\",\r\n \"name\": \"heartbeatexit-k8-centraluseuap\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-centraluseuap\",\r\n \"name\": \"immediatecrash-atlas-centraluseuap\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-centraluseuap\",\r\n \"name\": \"immediatecrash-k8-centraluseuap\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.59.40.137\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-centraluseuap\",\r\n \"fqdn\": \"longrunning-atlas-centraluseuap.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-centraluseuap\",\r\n \"name\": \"longrunning-atlas-centraluseuap\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.45.224.22\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-centraluseuap\",\r\n \"fqdn\": \"longrunning-k8-centraluseuap.centraluseuap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-centraluseuap\",\r\n \"name\": \"longrunning-k8-centraluseuap\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"m717t1\",\r\n \"properties\": {\r\n \"image\": \"microsoft/aci-helloworld:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/m717t1/providers/Microsoft.ContainerInstance/containerGroups/m717t1\",\r\n \"name\": \"m717t1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"appcontainercentraluseuap\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.Network/networkProfiles/aci-network-profile-aci-vnetcentraluseuap-aci-subnet\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/myResourceGroup/providers/Microsoft.ContainerInstance/containerGroups/appcontainercentraluseuap\",\r\n \"name\": \"appcontainercentraluseuap\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cli\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/azureclionatlas\",\r\n \"name\": \"azureclionatlas\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo start; sleep 1; echo exit; exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/exittest1\",\r\n \"name\": \"exittest1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo start; sleep 1; echo exit; exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/exittest2\",\r\n \"name\": \"exittest2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo start; sleep 1; echo exit; exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/exittest3\",\r\n \"name\": \"exittest3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo start; sleep 1; echo exit; exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/exittest4\",\r\n \"name\": \"exittest4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo start; sleep 1; echo exit; exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/exittest5\",\r\n \"name\": \"exittest5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo start; sleep 25; echo exit; exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/exittest6\",\r\n \"name\": \"exittest6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo start; sleep 25; echo exit; exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/exittest7\",\r\n \"name\": \"exittest7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo start; sleep 25; echo exit; exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/exittest8\",\r\n \"name\": \"exittest8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo start; sleep 25; echo exit; exit 0;\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/exittest9\",\r\n \"name\": \"exittest9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/kubecentraluseuap\",\r\n \"name\": \"kubecentraluseuap\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/msitestatlas\",\r\n \"name\": \"msitestatlas\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"exitfail\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit 1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"exitsuccess\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"noexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testazsupcenteratlas\",\r\n \"name\": \"testazsupcenteratlas\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"exitfail\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit 1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"exitsuccess\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"noexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testazsupcenteratlasnever\",\r\n \"name\": \"testazsupcenteratlasnever\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"exitfail\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit 1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"exitsuccess\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"noexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testazsupcenterk8never\",\r\n \"name\": \"testazsupcenterk8never\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"clamav\",\r\n \"properties\": {\r\n \"image\": \"mk0x/docker-clamav:alpine\",\r\n \"ports\": [\r\n {\r\n \"port\": 3310\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 3310\r\n }\r\n ],\r\n \"ip\": \"20.99.184.113\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testclamavatlasstage\",\r\n \"name\": \"testclamavatlasstage\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/testexeccli\",\r\n \"name\": \"testexeccli\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/udptest\",\r\n \"name\": \"udptest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/voltestasc\",\r\n \"name\": \"voltestasc\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/voltestascidentityatlas\",\r\n \"name\": \"voltestascidentityatlas\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/novinid\": {\r\n \"principalId\": \"88d7b4de-6215-4851-aba5-6a6e7359fa46\",\r\n \"clientId\": \"02a72f93-e7f5-4176-841e-8c35b6f79b29\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/voltestascidentityk8\",\r\n \"name\": \"voltestascidentityk8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/voltestasck8\",\r\n \"name\": \"voltestasck8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [],\r\n \"ip\": \"0.0.0.0\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-westus2/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/voltestfailazspcntr\",\r\n \"name\": \"voltestfailazspcntr\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Failed\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"vol\",\r\n \"mountPath\": \"/aci/volpath\",\r\n \"readOnly\": false\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [],\r\n \"ip\": \"10.20.0.5\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"vol\",\r\n \"azureFile\": {\r\n \"shareName\": \"simple-deploy-share\",\r\n \"readOnly\": false,\r\n \"storageAccountName\": \"sbzend2endstorage\"\r\n }\r\n }\r\n ],\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-centraluseuap/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/voltestfailazspcntrk8\",\r\n \"name\": \"voltestfailazspcntrk8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/weekendTest1\",\r\n \"name\": \"weekendTest1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 2.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/weekendTest2\",\r\n \"name\": \"weekendTest2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 3.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/weekendTest3\",\r\n \"name\": \"weekendTest3\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 4.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/weekendTest4\",\r\n \"name\": \"weekendTest4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/weekendTest5\",\r\n \"name\": \"weekendTest5\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/weekendTest6\",\r\n \"name\": \"weekendTest6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 3.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/weekendTest7\",\r\n \"name\": \"weekendTest7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 4.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/weekendTest8\",\r\n \"name\": \"weekendTest8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/weekendTest9\",\r\n \"name\": \"weekendTest9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.6\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-centraluseuap/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-centraluseuap/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.1.29\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-westus2/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-westus2/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alwaysruncg\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/likevi/udpserver:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"UDP\",\r\n \"port\": 6071\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"UDP\",\r\n \"port\": 6071\r\n }\r\n ],\r\n \"ip\": \"10.0.0.7\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnetudp-westus2/providers/Microsoft.Network/networkProfiles/aci-network-profile-westus2vnet-default\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnetudp-westus2/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nfstest\",\r\n \"properties\": {\r\n \"image\": \"nginx:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.9\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeinyvneteuap/providers/Microsoft.Network/networkProfiles/aci-network-profile-cuseuapvnet-aci\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/zeinyvneteuap/providers/Microsoft.ContainerInstance/containerGroups/nfstest\",\r\n \"name\": \"nfstest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.92.0.25\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/cnibad/providers/Microsoft.Network/networkProfiles/aci-network-profile-dumb-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/cnibad/providers/Microsoft.ContainerInstance/containerGroups/test6\",\r\n \"name\": \"test6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"EASTUS2EUAP\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.92.0.19\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/cnibad/providers/Microsoft.Network/networkProfiles/aci-network-profile-dumb-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/cnibad/providers/Microsoft.ContainerInstance/containerGroups/test7\",\r\n \"name\": \"test7\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"EASTUS2EUAP\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier113397fa04e04e00a095617f81e760c8ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastus2euap-113397fa04e04e00a095617f811d740cb88fb77aba\",\r\n \"name\": \"cgposts-eastus2euap-113397fa04e04e00a095617f811d740cb88fb77aba\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier2885ef8729cf48bda6c0dd1f0af114b3ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-eastus2euap-2885ef8729cf48bda6c0dd1fcd1b781dbc90373e\",\r\n \"name\": \"liveprobe-eastus2euap-2885ef8729cf48bda6c0dd1fcd1b781dbc90373e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do az login -i --allow-no-subscriptions; sleep 5; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/076cd026-379c-4383-8bec-8835382efe90/resourceGroups/sbzend2end/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sbzend2endIdentity\": {\r\n \"principalId\": \"b73ac116-62a0-448a-9fe5-ef6e3dbef3a0\",\r\n \"clientId\": \"8885a4ea-93d2-437d-ba49-43c979fd7047\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier357618ad0bec4e6686fe149a2bf57dacACILinuxUserAssignedIdentity/providers/Microsoft.ContainerInstance/containerGroups/msi-eastus2euap-357618ad0bec4e6686fe149a2bf57dde22f3a23dc346a8\",\r\n \"name\": \"msi-eastus2euap-357618ad0bec4e6686fe149a2bf57dde22f3a23dc346a8\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"az-scripts-srcg7wwguqcxyazscripts\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azure-cli:2.9.1\",\r\n \"command\": [\r\n \"bash\",\r\n \"/mnt/azscripts/azscriptinput/DeploymentScript.sh\",\r\n \"kv-r3973bd2ca-avs\",\r\n \"stgr3973bd2cacerts\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"AZ_SCRIPTS_PATH_INPUT_DIRECTORY\",\r\n \"value\": \"/mnt/azscripts/azscriptinput\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_PATH_OUTPUT_DIRECTORY\",\r\n \"value\": \"/mnt/azscripts/azscriptoutput\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_PATH_USER_SCRIPT_FILE_NAME\",\r\n \"value\": \"userscript.sh\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_PATH_PRIMARY_SCRIPT_URI_FILE_NAME\",\r\n \"value\": \"primaryscripturi.config\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_PATH_SUPPORTING_SCRIPT_URI_FILE_NAME\",\r\n \"value\": \"supportingscripturi.config\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_PATH_SCRIPT_OUTPUT_FILE_NAME\",\r\n \"value\": \"scriptoutputs.json\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_PATH_EXECUTION_RESULTS_FILE_NAME\",\r\n \"value\": \"executionresult.json\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_AZURE_ENVIRONMENT\",\r\n \"value\": \"AzureCloud\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_CLEANUP_PREFERENCE\",\r\n \"value\": \"OnExpiration\"\r\n },\r\n {\r\n \"name\": \"AZ_SCRIPTS_USER_ASSIGNED_IDENTITY\",\r\n \"value\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier3973bd2ca49a4c81baec20984d4d1445ACIAvsTestScenario/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aci-user\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"azscripts\",\r\n \"mountPath\": \"/mnt/azscripts/\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"azscripts\",\r\n \"azureFile\": {\r\n \"shareName\": \"xb7jqo6shgth4azscripts\",\r\n \"storageAccountName\": \"srcg7wwguqcxyazscripts\"\r\n }\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier3973bd2ca49a4c81baec20984d4d1445ACIAvsTestScenario/providers/Microsoft.ManagedIdentity/userAssignedIdentities/aci-user\": {\r\n \"principalId\": \"3701b901-abaf-4cad-9806-2bd76c2f6d1a\",\r\n \"clientId\": \"968b7bd1-1344-47c5-af26-a2a105f833be\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier3973bd2ca49a4c81baec20984d4d1445ACIAvsTestScenario/providers/Microsoft.ContainerInstance/containerGroups/srcg7wwguqcxyazscripts\",\r\n \"name\": \"srcg7wwguqcxyazscripts\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"AZ_SCRIPTS_STATUS\": \"generateCert:Completed\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"successful-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /home/test.txt; sleep 1000\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-exec\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"tail\",\r\n \"-f\",\r\n \"/dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"exec\": {\r\n \"command\": [\r\n \"cat\",\r\n \"/home/test.txt\"\r\n ]\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"successful-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"echo 'ok' > /app/wwwroot/test.txt; dotnet aspnetapp.dll\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:8080\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 8080,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"failed-http\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/samples:aspnetapp\",\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ASPNETCORE_URLS\",\r\n \"value\": \"http://+:81\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"livenessProbe\": {\r\n \"httpGet\": {\r\n \"path\": \"/test.txt\",\r\n \"port\": 81,\r\n \"scheme\": \"Http\"\r\n },\r\n \"initialDelaySeconds\": 5,\r\n \"periodSeconds\": 5,\r\n \"failureThreshold\": 5,\r\n \"successThreshold\": 1,\r\n \"timeoutSeconds\": 10\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier5946e36bb038485796b5b87f15cfa3a8ACILinuxLivenessProbe/providers/Microsoft.ContainerInstance/containerGroups/liveprobe-eastus2euap-5946e36bb038485796b5b87f692223849884affe\",\r\n \"name\": \"liveprobe-eastus2euap-5946e36bb038485796b5b87f692223849884affe\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Updating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier8aa7277a54c741f0a6105c564531da48ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastus2euap-8aa7277a54c741f0a6105c564544fabb1ccaf0b74e\",\r\n \"name\": \"cgposts-eastus2euap-8aa7277a54c741f0a6105c564544fabb1ccaf0b74e\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo '7644364b-412b-4a41-9de5-03ff52f3a0e7'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier998cd723a6ab453f848472608f9b1b1cACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-eastus2euap-998cd723a6ab453f848472608f9b1303de5b06a8ea1ae\",\r\n \"name\": \"init-eastus2euap-998cd723a6ab453f848472608f9b1303de5b06a8ea1ae\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifier9c1b7060d818427cb730d96c7c16aaf7ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-eastus2euap-9c1b7060d818427cb730d90add2def1a2fc5f4\",\r\n \"name\": \"escapedargs-eastus2euap-9c1b7060d818427cb730d90add2def1a2fc5f4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"sleep 120; echo 'exit'; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiera3223be611fb442c8d55429bfe3bcd94ACILinuxContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastus2euap-a3223be611fb442c8d55429bfe147c007770acb4e2\",\r\n \"name\": \"cgposts-eastus2euap-a3223be611fb442c8d55429bfe147c007770acb4e2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/windows/nanoserver:1809\",\r\n \"command\": [\r\n \"cmd\",\r\n \"/c\",\r\n \"ping localhost -n 121 > nul && echo exit && exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierc10b0798ecc4430b98aafc7e8deb7232ACIWindowsContainerStartStopRestart/providers/Microsoft.ContainerInstance/containerGroups/cgposts-eastus2euap-c10b0798ecc4430b98aafc7e8d713047344656fd6c\",\r\n \"name\": \"cgposts-eastus2euap-c10b0798ecc4430b98aafc7e8d713047344656fd6c\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;cat /otherfiles/dest.txt; sleep 120\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"container_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"container_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n },\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"initContainers\": [\r\n {\r\n \"name\": \"init-container\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/dotnet/runtime:5.0-alpine\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"set;echo 'c86e4dd3-106e-4eac-a707-de73dcc2b605'>>/otherfiles/dest.txt\"\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"envvar_1\",\r\n \"value\": \"init_value_1\"\r\n },\r\n {\r\n \"name\": \"envvar_2\",\r\n \"value\": \"init_value_2\"\r\n },\r\n {\r\n \"name\": \"envvar_3\"\r\n },\r\n {\r\n \"name\": \"envvar_4\"\r\n }\r\n ],\r\n \"volumeMounts\": [\r\n {\r\n \"name\": \"themount\",\r\n \"mountPath\": \"/otherfiles\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"themount\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifiere113ea9fd64b4ef48041d666d6d85ec9ACILinuxInitContainer/providers/Microsoft.ContainerInstance/containerGroups/init-eastus2euap-e113ea9fd64b4ef48041d666d6d856e741ccb3226bac9\",\r\n \"name\": \"init-eastus2euap-e113ea9fd64b4ef48041d666d6d856e741ccb3226bac9\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v1\",\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"test-container-2\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/nochangi/windowsshellcommands:v2\",\r\n \"command\": [\r\n \"C:\\\\Users\\\\ContainerUser\\\\test space\\\\cmd.exe\",\r\n \"/C\",\r\n \"echo overriden\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.4,\r\n \"cpu\": 0.4\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"osType\": \"Windows\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/e2everifierf9a3dfca7b2e4cdabd6bc75fac3ea234ACIWindowsEscapedArgs/providers/Microsoft.ContainerInstance/containerGroups/escapedargs-eastus2euap-f9a3dfca7b2e4cdabd6bc7faa7c89f144b0ddb\",\r\n \"name\": \"escapedargs-eastus2euap-f9a3dfca7b2e4cdabd6bc7faa7c89f144b0ddb\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-a856a50a-4e16-4aec-a7bb-88b81b9c7b53\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.62\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-21dd9905-9315-4d1f-9643-add0171fde59\",\r\n \"name\": \"validation-21dd9905-9315-4d1f-9643-add0171fde59\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-50d300af-67f2-4ed2-8cb8-a6231f24d561\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.68\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-22cebcff-c27e-4732-b043-4039a22323e6\",\r\n \"name\": \"validation-22cebcff-c27e-4732-b043-4039a22323e6\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f9368401-0826-4d29-825f-491f4367152d\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.69\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-24def123-fe23-4b6b-b973-b7964dc9bf48\",\r\n \"name\": \"validation-24def123-fe23-4b6b-b973-b7964dc9bf48\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-841fb004-6d1d-4d30-9d82-28caaee89af7\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.1.46\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-442ae9aa-7dd5-4a19-9076-94810cabb7fa\",\r\n \"name\": \"validation-442ae9aa-7dd5-4a19-9076-94810cabb7fa\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-7406cd8b-95ca-424e-bbf9-2dc1fa492660\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.92.0.17\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-8c0c6144-1c66-430e-bc15-9b3201f1f6c1\",\r\n \"name\": \"validation-8c0c6144-1c66-430e-bc15-9b3201f1f6c1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-bd8848f3-fcc6-4046-93ba-f1abe0d5913f\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.244.152.2\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-9ee2a48a-d87f-4e9f-bd53-33361463d278\",\r\n \"name\": \"validation-9ee2a48a-d87f-4e9f-bd53-33361463d278\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-9ff7076a-be7c-4156-8ee9-5e119cf367b6\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.92.0.18\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-ac219c9b-580f-43c5-8402-6629bdcedc73\",\r\n \"name\": \"validation-ac219c9b-580f-43c5-8402-6629bdcedc73\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-f82bdcd3-1f8a-4e0c-b30c-ddb95cb758bd\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.92.0.22\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-b39e5b87-f7bf-4def-91c6-7678e69f9486\",\r\n \"name\": \"validation-b39e5b87-f7bf-4def-91c6-7678e69f9486\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-074907e5-2741-45e0-82df-690c4edc4f71\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.92.0.9\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-eed90e8d-a1a4-4524-93bd-8ba96dbfab77\",\r\n \"name\": \"validation-eed90e8d-a1a4-4524-93bd-8ba96dbfab77\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"cnitest-055a7ee5-591c-44b4-b1eb-79e04aa704a3\",\r\n \"properties\": {\r\n \"image\": \"nginxdemos/hello\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.2,\r\n \"cpu\": 0.2\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.244.173.2\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapdemo/providers/Microsoft.Network/networkProfiles/aci-network-profile-eastus2euapvnet-container\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/eastus2euapvalidation/providers/Microsoft.ContainerInstance/containerGroups/validation-f07af4cc-5d68-4b68-b0f4-a344f8ad495b\",\r\n \"name\": \"validation-f07af4cc-5d68-4b68-b0f4-a344f8ad495b\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"testclient\",\r\n \"properties\": {\r\n \"image\": \"likevi/testclient:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"SERVER_PORT\",\r\n \"value\": \"6071\"\r\n },\r\n {\r\n \"name\": \"SERVER_ADDRESS\",\r\n \"value\": \"172.24.0.5\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.0.12\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likeviudptest2/providers/Microsoft.Network/networkProfiles/testserver-networkProfile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likeviudptest2/providers/Microsoft.ContainerInstance/containerGroups/testclient\",\r\n \"name\": \"testclient\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"testclient2\",\r\n \"properties\": {\r\n \"image\": \"likevi/testclient:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"SERVER_PORT\",\r\n \"value\": \"6071\"\r\n },\r\n {\r\n \"name\": \"SERVER_ADDRESS\",\r\n \"value\": \"13.86.62.144\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"172.24.0.11\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likeviudptest2/providers/Microsoft.Network/networkProfiles/testserver-networkProfile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likeviudptest2/providers/Microsoft.ContainerInstance/containerGroups/testclient2\",\r\n \"name\": \"testclient2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"testserver2\",\r\n \"properties\": {\r\n \"image\": \"likevi/testserver:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"UDP\",\r\n \"port\": 6071\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"UDP\",\r\n \"port\": 6071\r\n }\r\n ],\r\n \"ip\": \"172.24.0.10\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likeviudptest2/providers/Microsoft.Network/networkProfiles/testserver-networkProfile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/likeviudptest2/providers/Microsoft.ContainerInstance/containerGroups/testserver2\",\r\n \"name\": \"testserver2\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-atlas-eastus2euap\",\r\n \"name\": \"heartbeatexit-atlas-eastus2euap\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"hbexit\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"date; sleep 20; exit 0\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\",\r\n \"diagnostics\": {\r\n \"logAnalytics\": {\r\n \"workspaceId\": \"8db962c4-0849-4d44-979b-b411b39a1149\"\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/heartbeatexit-k8-eastus2euap\",\r\n \"name\": \"heartbeatexit-k8-eastus2euap\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-atlas-eastus2euap\",\r\n \"name\": \"immediatecrash-atlas-eastus2euap\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"crasher\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"exit -1\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/immediatecrash-k8-eastus2euap\",\r\n \"name\": \"immediatecrash-k8-eastus2euap\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.69.70.215\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-atlas-eastus2euap\",\r\n \"fqdn\": \"longrunning-atlas-eastus2euap.eastus2euap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-atlas-eastus2euap\",\r\n \"name\": \"longrunning-atlas-eastus2euap\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginxcontainer\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"outboundcontainer\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"while true; do date; wget bing.com; rm index.html; sleep 20; done\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 0.5,\r\n \"cpu\": 0.5\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"Always\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.47.210.116\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"longrunning-k8-eastus2euap\",\r\n \"fqdn\": \"longrunning-k8-eastus2euap.eastus2euap.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/longrunning/providers/Microsoft.ContainerInstance/containerGroups/longrunning-k8-eastus2euap\",\r\n \"name\": \"longrunning-k8-eastus2euap\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"vnetipv4\",\r\n \"properties\": {\r\n \"image\": \"mcr.microsoft.com/azuredocs/aci-helloworld:latest\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.0.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/minsha-eastus2euap/providers/Microsoft.Network/networkProfiles/vnetipv4-networkProfile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/minsha-eastus2euap/providers/Microsoft.ContainerInstance/containerGroups/vnetipv4\",\r\n \"name\": \"vnetipv4\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"alpine1\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"yes > /dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"alpine2\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"yes > /dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"alpine3\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"yes > /dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"alpine4\",\r\n \"properties\": {\r\n \"image\": \"alpine:3.12\",\r\n \"command\": [\r\n \"/bin/sh\",\r\n \"-c\",\r\n \"yes > /dev/null\"\r\n ],\r\n \"ports\": [],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/novintest/providers/Microsoft.ContainerInstance/containerGroups/cytelTest\",\r\n \"name\": \"cytelTest\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"demo1\",\r\n \"properties\": {\r\n \"image\": \"aruptonr/oomrepro:20191217075121\",\r\n \"command\": [],\r\n \"ports\": [\r\n {\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"20.39.28.144\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/testorder/providers/Microsoft.ContainerInstance/containerGroups/test1\",\r\n \"name\": \"test1\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"caasrunner.azurecr.io/nmap-ncat:latest\",\r\n \"command\": [\r\n \"ncat\",\r\n \"-l\",\r\n \"80\",\r\n \"-k\"\r\n ],\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"caasrunner.azurecr.io\",\r\n \"username\": \"CaaSRunner\"\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"10.20.0.4\",\r\n \"type\": \"Private\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"networkProfile\": {\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-eastus2euap/providers/Microsoft.Network/networkProfiles/aci-networkprofile\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnet-eastus2euap/providers/Microsoft.ContainerInstance/containerGroups/alwaysruncg\",\r\n \"name\": \"alwaysruncg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sku\": \"Standard\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"test-container\",\r\n \"properties\": {\r\n \"image\": \"sbzend2end.azurecr.io/likevi/udpserver:latest\",\r\n \"ports\": [\r\n {\r\n \"port\": 6071\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.0,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"initContainers\": [],\r\n \"imageRegistryCredentials\": [\r\n {\r\n \"server\": \"sbzend2end.azurecr.io\",\r\n \"username\": \"sbzend2end\"\r\n }\r\n ],\r\n \"restartPolicy\": \"OnFailure\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 6071\r\n }\r\n ],\r\n \"ip\": \"20.47.137.145\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\"\r\n },\r\n \"id\": \"/subscriptions/da28f5e5-aa45-46fe-90c8-053ca49ab4b5/resourceGroups/vnetudp-westus2/providers/Microsoft.ContainerInstance/containerGroups/alwaysrunexternalcg\",\r\n \"name\": \"alwaysrunexternalcg\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus2euap\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": { "CreateResourceGroup": [ - "aci_rg5244", - "aci_rg5461" + "aci_rg2147", + "aci_rg4665" ], "ContainerInstanceListTest": [ - "acinetsdk2386", - "acinetsdk7463" + "acinetsdk8842", + "acinetsdk809" ] }, "Variables": { diff --git a/sdk/containerinstance/ci.yml b/sdk/containerinstance/ci.yml deleted file mode 100644 index ff4ae0c73ef64..0000000000000 --- a/sdk/containerinstance/ci.yml +++ /dev/null @@ -1,33 +0,0 @@ -# NOTE: Please refer to https://aka.ms/azsdk/engsys/ci-yaml before editing this file. - -trigger: - branches: - include: - - main - - hotfix/* - - release/* - paths: - include: - - sdk/containerinstance/ - -pr: - branches: - include: - - main - - feature/* - - hotfix/* - - release/* - paths: - include: - - sdk/containerinstance/ - -# These comments should stay. - -extends: - template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml - parameters: - ServiceDirectory: containerinstance - ArtifactName: packages - Artifacts: - - name: Azure.ResourceManager.ContainerInstance - safeName: AzureResourceManagerContainerInstance \ No newline at end of file diff --git a/sdk/containerregistry/Azure.Containers.ContainerRegistry/CHANGELOG.md b/sdk/containerregistry/Azure.Containers.ContainerRegistry/CHANGELOG.md index 52c662bebd1e2..bb1a8c4935ab4 100644 --- a/sdk/containerregistry/Azure.Containers.ContainerRegistry/CHANGELOG.md +++ b/sdk/containerregistry/Azure.Containers.ContainerRegistry/CHANGELOG.md @@ -1,6 +1,24 @@ # Release History -## 1.0.0-beta.4 (Unreleased) +## 1.0.0-beta.5 (Unreleased) + +### Features Added + +### Breaking Changes + +### Bugs Fixed + +### Other Changes + +## 1.0.0-beta.4 (2021-08-10) + +### Breaking Changes + +- Replaced `AuthenticationScope` property on `ContainerRegistryClientOptions` with `Audience`. `Audience` is of type `ContainerRegistryAudience`, a statically typed string, which allows customers to select from available audiences or provide their own audience string. All calls to client constructors now require passing `ContainerRegistryClientOptions` with the `Audience` property set. + +### Other Changes + +- Updated documentation comments. ## 1.0.0-beta.3 (2021-06-08) diff --git a/sdk/containerregistry/Azure.Containers.ContainerRegistry/src/Azure.Containers.ContainerRegistry.csproj b/sdk/containerregistry/Azure.Containers.ContainerRegistry/src/Azure.Containers.ContainerRegistry.csproj index e6c6eb80b6599..055e4a52997a7 100644 --- a/sdk/containerregistry/Azure.Containers.ContainerRegistry/src/Azure.Containers.ContainerRegistry.csproj +++ b/sdk/containerregistry/Azure.Containers.ContainerRegistry/src/Azure.Containers.ContainerRegistry.csproj @@ -2,7 +2,7 @@ This client library enables working with the Microsoft Azure Container Registry service to store and manage container images and deployment artifacts. Microsoft Azure.Containers.ContainerRegistry client library - 1.0.0-beta.4 + 1.0.0-beta.5 Azure Container Registry;$(PackageCommonTags) $(RequiredTargetFrameworks) diff --git a/sdk/core/Azure.Core.TestFramework/src/Instrumentation/InstrumentResultInterceptor.cs b/sdk/core/Azure.Core.TestFramework/src/Instrumentation/InstrumentResultInterceptor.cs index 1c94317d018fb..b6d251cbe853f 100644 --- a/sdk/core/Azure.Core.TestFramework/src/Instrumentation/InstrumentResultInterceptor.cs +++ b/sdk/core/Azure.Core.TestFramework/src/Instrumentation/InstrumentResultInterceptor.cs @@ -30,6 +30,7 @@ public void Intercept(IInvocation invocation) // We don't want to instrument generated rest clients. if ((type.Name.EndsWith("Client") && !type.Name.EndsWith("RestClient")) || // Generated ARM clients will have a property containing the sub-client that ends with Operations. + //TODO: remove after all track2 .net mgmt libraries are updated to the new generation (invocation.Method.Name.StartsWith("get_") && type.Name.EndsWith("Operations"))) { if (IsNullResult(invocation)) @@ -41,11 +42,10 @@ public void Intercept(IInvocation invocation) if ( // Generated ARM clients will have a property containing the sub-client that ends with Operations. - (invocation.Method.Name.StartsWith("get_") && (type.Name.EndsWith("Operations") || (type.BaseType != null && type.BaseType.Name.EndsWith("Operations")))) || + (invocation.Method.Name.StartsWith("get_") && ManagementInterceptor.InheritsFromArmResource(type)) || // Instrument the container construction methods inside Operations objects - (invocation.Method.Name.StartsWith("Get") && type.Name.EndsWith("Container")) || // Instrument the operations construction methods inside Operations objects - (invocation.Method.Name.StartsWith("Get") && type.Name.EndsWith("Operations"))) + (invocation.Method.Name.StartsWith("Get") && ManagementInterceptor.InheritsFromArmResource(type))) { if (IsNullResult(invocation)) return; diff --git a/sdk/core/Azure.Core.TestFramework/src/Instrumentation/ManagementInterceptor.cs b/sdk/core/Azure.Core.TestFramework/src/Instrumentation/ManagementInterceptor.cs index f4ebe07157169..a2a62f34ae70a 100644 --- a/sdk/core/Azure.Core.TestFramework/src/Instrumentation/ManagementInterceptor.cs +++ b/sdk/core/Azure.Core.TestFramework/src/Instrumentation/ManagementInterceptor.cs @@ -61,7 +61,7 @@ public void Intercept(IInvocation invocation) } } } - else if (invocation.Method.Name.EndsWith("Value") && type.BaseType.Name.EndsWith("Operations")) + else if (invocation.Method.Name.EndsWith("Value") && InheritsFromArmResource(type)) { invocation.ReturnValue = _testBase.InstrumentClient(type, result, new IInterceptor[] { new ManagementInterceptor(_testBase) }); } @@ -72,7 +72,7 @@ public void Intercept(IInvocation invocation) else if (invocation.Method.Name.StartsWith("Get") && invocation.Method.Name.EndsWith("Enumerator") && type.IsGenericType && - InheritsFromOperationBase(type.GetGenericArguments().First())) + InheritsFromArmResource(type.GetGenericArguments().First())) { var wrapperType = typeof(AsyncPageableInterceptor<>); var genericType = wrapperType.MakeGenericType(type.GetGenericArguments()[0]); @@ -81,7 +81,7 @@ public void Intercept(IInvocation invocation) } } - private bool InheritsFromOperationBase(Type elementType) + internal static bool InheritsFromArmResource(Type elementType) { if (elementType.BaseType == null) return false; @@ -89,10 +89,10 @@ private bool InheritsFromOperationBase(Type elementType) if (elementType.BaseType == typeof(object)) return false; - if (elementType.BaseType.Name == "ResourceOperations") + if (elementType.BaseType.Name == "ArmResource") return true; - return InheritsFromOperationBase(elementType.BaseType); + return InheritsFromArmResource(elementType.BaseType); } private object GetValueFromOther(Type taskResultType, object instrumentedResult) diff --git a/sdk/core/Azure.Core/src/Pipeline/HttpWebRequestTransport.cs b/sdk/core/Azure.Core/src/Pipeline/HttpWebRequestTransport.cs index 17cb3728e0c01..d932c4bd050fa 100644 --- a/sdk/core/Azure.Core/src/Pipeline/HttpWebRequestTransport.cs +++ b/sdk/core/Azure.Core/src/Pipeline/HttpWebRequestTransport.cs @@ -273,7 +273,9 @@ public override Stream? ContentStream public override void Dispose() { - _originalContentStream?.Dispose(); + // TODO: https://github.com/Azure/azure-sdk-for-net/issues/23251 + if (_originalContentStream is not MemoryStream) + _originalContentStream?.Dispose(); DisposeContentStreamIfNotBuffered(); } diff --git a/sdk/core/Azure.Core/tests/ManagementPipelineBuilderTests.cs b/sdk/core/Azure.Core/tests/ManagementPipelineBuilderTests.cs index d75ebbf99b778..6f812ab87b88f 100644 --- a/sdk/core/Azure.Core/tests/ManagementPipelineBuilderTests.cs +++ b/sdk/core/Azure.Core/tests/ManagementPipelineBuilderTests.cs @@ -7,14 +7,24 @@ using System.Threading; using Azure.Core.Pipeline; using Azure.Core.TestFramework; +using Azure.Identity; using Azure.ResourceManager; using NUnit.Framework; +using static Azure.Core.Tests.Management.ManagementPipelineBuilderTests; namespace Azure.Core.Tests.Management { - public class ManagementPipelineBuilderTests + internal class ManagementPipelineBuilderTests : RecordedTestBase { + internal class MgmtPipelineTestEnvironment : TestEnvironment { } + + public ManagementPipelineBuilderTests(bool isAsync) + : base(isAsync)//, RecordedTestMode.Record) + { + } + [TestCase] + [SyncOnly] public void AddPerCallPolicy() { var options = new ArmClientOptions(); @@ -27,13 +37,14 @@ public void AddPerCallPolicy() Assert.IsNotNull(policies.ToArray().FirstOrDefault(p => p.GetType() == typeof(DummyPolicy))); } - [TestCase] + [RecordedTest] + [SyncOnly] public void AddPerCallPolicyViaClient() { - var options = new ArmClientOptions(); + var options = InstrumentClientOptions(new ArmClientOptions()); var dummyPolicy = new DummyPolicy(); options.AddPolicy(dummyPolicy, HttpPipelinePosition.PerCall); - var client = new ArmClient(Guid.NewGuid().ToString(), new MockCredential(), options); + var client = InstrumentClient(new ArmClient(TestEnvironment.Credential, options)); var pipelineProperty = client.GetType().GetProperty("Pipeline", BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.GetProperty); var pipeline = pipelineProperty.GetValue(client) as HttpPipeline; diff --git a/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs b/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs index 4dec3faf2738a..2c7a4d742ee8a 100644 --- a/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs +++ b/sdk/core/Azure.Core/tests/ManagementRecordedTestBaseTests.cs @@ -48,7 +48,7 @@ public async Task ValidateInstrumentArmOperation() { ManagementTestClient client = InstrumentClient(new ManagementTestClient()); var sub = client.DefaultSubscription; - var operation = (await sub.GetArmOperationAsync()).Value; + var operation = (await sub.GetLroAsync()).Value; var result = operation.Method(); Assert.AreEqual("TestResourceProxy", operation.GetType().Name); @@ -60,7 +60,7 @@ public async Task ValidateInstrumentArmResponse() { ManagementTestClient client = InstrumentClient(new ManagementTestClient()); var sub = client.DefaultSubscription; - var response = (await sub.GetArmOperationAsync()).Value; + var response = (await sub.GetLroAsync()).Value; var result = response.Method(); Assert.AreEqual("TestResourceProxy", response.GetType().Name); @@ -83,9 +83,9 @@ public void ValidateInstrumentGetContainer() public void ValidateInstrumentGetOperations() { ManagementTestClient client = InstrumentClient(new ManagementTestClient()); - var testResource = client.GetTestResourceOperations(); + var testResource = client.GetTestResource(); - Assert.AreEqual("TestResourceOperationsProxy", testResource.GetType().Name); + Assert.AreEqual("TestResourceProxy", testResource.GetType().Name); Assert.AreEqual("success", testResource.Method()); } @@ -105,8 +105,8 @@ public async Task ValidateInstrumentPageable() public async Task ValidateWaitForCompletion() { ManagementTestClient client = InstrumentClient(new ManagementTestClient()); - TestResourceOperations rgOp = client.GetTestResourceOperations(); - var testResourceOp = await rgOp.GetArmOperationAsync(); + TestResource rgOp = client.GetTestResource(); + var testResourceOp = await rgOp.GetLroAsync(); TestResource testResource = await testResourceOp.WaitForCompletionAsync(); Assert.AreEqual("TestResourceProxy", testResource.GetType().Name); Assert.AreEqual("success", testResource.Method()); @@ -116,7 +116,7 @@ public async Task ValidateWaitForCompletion() public void ValidateExceptionResponse() { ManagementTestClient client = InstrumentClient(new ManagementTestClient()); - TestResourceOperations rgOp = client.GetTestResourceOperations(); + TestResource rgOp = client.GetTestResource(); Assert.ThrowsAsync(typeof(ArgumentException), async () => await rgOp.GetResponseExceptionAsync()); } @@ -124,16 +124,16 @@ public void ValidateExceptionResponse() public void ValidateExceptionOperation() { ManagementTestClient client = InstrumentClient(new ManagementTestClient()); - TestResourceOperations rgOp = client.GetTestResourceOperations(); - Assert.ThrowsAsync(typeof(ArgumentException), async () => await rgOp.GetArmOperationExceptionAsync()); + TestResource rgOp = client.GetTestResource(); + Assert.ThrowsAsync(typeof(ArgumentException), async () => await rgOp.GetLroExceptionAsync()); } [Test] public async Task ValidateExceptionOperationWaitForCompletion() { ManagementTestClient client = InstrumentClient(new ManagementTestClient()); - TestResourceOperations rgOp = client.GetTestResourceOperations(); - var testResourceOp = await rgOp.GetArmOperationAsync(true); + TestResource rgOp = client.GetTestResource(); + var testResourceOp = await rgOp.GetLroAsync(true); Assert.ThrowsAsync(typeof(ArgumentException), async () => await testResourceOp.WaitForCompletionAsync()); } @@ -141,7 +141,7 @@ public async Task ValidateExceptionOperationWaitForCompletion() public async Task ValidateLroWrapper() { ManagementTestClient client = InstrumentClient(new ManagementTestClient()); - TestResourceOperations rgOp = client.GetTestResourceOperations(); + TestResource rgOp = client.GetTestResource(); TestResource testResource = await rgOp.LroWrapperAsync(); Assert.AreEqual("TestResourceProxy", testResource.GetType().Name); Assert.AreEqual("success", testResource.Method()); @@ -151,7 +151,7 @@ public async Task ValidateLroWrapper() public async Task ValidateStartLroWrapper() { ManagementTestClient client = InstrumentClient(new ManagementTestClient()); - TestResourceOperations rgOp = client.GetTestResourceOperations(); + TestResource rgOp = client.GetTestResource(); var testResourceOp = await rgOp.StartLroWrapperAsync(); TestResource testResource = await testResourceOp.WaitForCompletionAsync(); Assert.AreEqual("TestResourceProxy", testResource.GetType().Name); @@ -162,7 +162,7 @@ public async Task ValidateStartLroWrapper() public async Task ValidateSkipWait() { ManagementTestClient client = InstrumentClient(new ManagementTestClient()); - TestResourceOperations rgOp = client.GetTestResourceOperations(); + TestResource rgOp = client.GetTestResource(); Stopwatch timer = Stopwatch.StartNew(); TestResource testResource = await rgOp.LroWrapperAsync(); timer.Stop(); @@ -174,7 +174,7 @@ public async Task ValidateSkipWait() public async Task ValidateStartSkipWait() { ManagementTestClient client = InstrumentClient(new ManagementTestClient()); - TestResourceOperations rgOp = client.GetTestResourceOperations(); + TestResource rgOp = client.GetTestResource(); var testResourceOp = await rgOp.StartLroWrapperAsync(); Stopwatch timer = Stopwatch.StartNew(); TestResource testResource = await testResourceOp.WaitForCompletionAsync(); diff --git a/sdk/core/Azure.Core/tests/SessionRecords/ManagementPipelineBuilderTests/AddPerCallPolicyViaClient.json b/sdk/core/Azure.Core/tests/SessionRecords/ManagementPipelineBuilderTests/AddPerCallPolicyViaClient.json new file mode 100644 index 0000000000000..7d7c8dad9d727 --- /dev/null +++ b/sdk/core/Azure.Core/tests/SessionRecords/ManagementPipelineBuilderTests/AddPerCallPolicyViaClient.json @@ -0,0 +1,60 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3f774f37e4a7406de0b4f1abe3dbd7e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "515", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 11 Aug 2021 20:07:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "382ecb49-bef5-4d21-84b5-ac8342d3e752", + "x-ms-ratelimit-remaining-tenant-reads": "11999", + "x-ms-request-id": "382ecb49-bef5-4d21-84b5-ac8342d3e752", + "x-ms-routing-request-id": "WESTUS2:20210811T200714Z:382ecb49-bef5-4d21-84b5-ac8342d3e752" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + ], + "count": { + "type": "Total", + "value": 1 + } + } + } + ], + "Variables": { + "RandomSeed": "1445225066" + } +} \ No newline at end of file diff --git a/sdk/core/Azure.Core/tests/TestClients/ManagementTestClient.cs b/sdk/core/Azure.Core/tests/TestClients/ManagementTestClient.cs index e61752b2902a0..4e04d3f2683b0 100644 --- a/sdk/core/Azure.Core/tests/TestClients/ManagementTestClient.cs +++ b/sdk/core/Azure.Core/tests/TestClients/ManagementTestClient.cs @@ -19,9 +19,9 @@ public ManagementTestClient(TestClientOptions options) _diagnostics = new ClientDiagnostics(options); } - public virtual TestResourceOperations GetTestResourceOperations() + public virtual TestResource GetTestResource() { - return new TestResourceOperations(); + return new TestResource(); } public virtual TestResourceContainer GetTestResourceContainer() diff --git a/sdk/core/Azure.Core/tests/TestClients/ArmOperationTest.cs b/sdk/core/Azure.Core/tests/TestClients/TestLroOperation.cs similarity index 93% rename from sdk/core/Azure.Core/tests/TestClients/ArmOperationTest.cs rename to sdk/core/Azure.Core/tests/TestClients/TestLroOperation.cs index 69e7129ad51f5..14c547931c66c 100644 --- a/sdk/core/Azure.Core/tests/TestClients/ArmOperationTest.cs +++ b/sdk/core/Azure.Core/tests/TestClients/TestLroOperation.cs @@ -8,18 +8,18 @@ namespace Azure.Core.Tests { - public class ArmOperationTest : Operation, IOperationSource + public class TestLroOperation : Operation, IOperationSource { private TestResource _value; private bool _exceptionOnWait; private OperationOrResponseInternals _operationHelper; private int _delaySteps = 0; - protected ArmOperationTest() + protected TestLroOperation() { } - public ArmOperationTest(TestResource value, bool exceptionOnWait = false, int delaySteps = 0) + public TestLroOperation(TestResource value, bool exceptionOnWait = false, int delaySteps = 0) { _value = value; _exceptionOnWait = exceptionOnWait; diff --git a/sdk/core/Azure.Core/tests/TestClients/TestResource.cs b/sdk/core/Azure.Core/tests/TestClients/TestResource.cs index f7ad212e8fe98..4a4de90338913 100644 --- a/sdk/core/Azure.Core/tests/TestClients/TestResource.cs +++ b/sdk/core/Azure.Core/tests/TestClients/TestResource.cs @@ -1,9 +1,293 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure.Core.Pipeline; +using Azure.Core.TestFramework; +using Azure.ResourceManager; +using Azure.ResourceManager.Core; + namespace Azure.Core.Tests { - public class TestResource : TestResourceOperations + public class TestResource : ArmResource { + private DiagnosticScopeFactory _diagnostic = new DiagnosticScopeFactory("Azure.Clients", "Microsoft.Azure.Core.Cool.Tests", true); + + protected override ResourceType ValidResourceType => ResourceIdentifier.RootResourceIdentifier.ResourceType; + + public virtual TestResource GetAnotherOperations() + { + return new TestResource(); + } + + public virtual TestLroOperation GetLro(bool exceptionOnWait = false, CancellationToken cancellationToken = default) + { + using var scope = _diagnostic.CreateScope("TestResource.GetLro"); + scope.Start(); + + try + { + return new TestLroOperation(new TestResource(), exceptionOnWait); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + public virtual Task GetLroAsync(bool exceptionOnWait = false, CancellationToken cancellationToken = default) + { + using var scope = _diagnostic.CreateScope("TestResource.GetLro"); + scope.Start(); + + try + { + return Task.FromResult(new TestLroOperation(new TestResource(), exceptionOnWait)); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + public virtual Response GetResponse(CancellationToken cancellationToken = default) + { + using var scope = _diagnostic.CreateScope("TestResource.GetResponse"); + scope.Start(); + + try + { + return Response.FromValue(new TestResource(), new MockResponse(200)); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + public async virtual Task> GetResponseAsync(CancellationToken cancellationToken = default) + { + using var scope = _diagnostic.CreateScope("TestResource.GetResponse"); + scope.Start(); + + try + { + await Task.Delay(1); + return Response.FromValue(new TestResource(), new MockResponse(200)); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + public virtual Response GetResponseException(CancellationToken cancellationToken = default) + { + using var scope = _diagnostic.CreateScope("TestResource.GetResponseException"); + scope.Start(); + + try + { + throw new ArgumentException("FakeArg"); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + public virtual Task> GetResponseExceptionAsync(CancellationToken cancellationToken = default) + { + using var scope = _diagnostic.CreateScope("TestResource.GetResponseException"); + scope.Start(); + + try + { + throw new ArgumentException("FakeArg"); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + public virtual TestLroOperation GetLroException(CancellationToken cancellationToken = default) + { + using var scope = _diagnostic.CreateScope("TestResource.GetLroException"); + scope.Start(); + + try + { + throw new ArgumentException("FakeArg"); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + public virtual Task GetLroExceptionAsync(CancellationToken cancellationToken = default) + { + using var scope = _diagnostic.CreateScope("TestResource.GetLroException"); + scope.Start(); + + try + { + throw new ArgumentException("FakeArg"); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + public virtual Response LroWrapper(CancellationToken cancellationToken = default) + { + using var scope = _diagnostic.CreateScope("TestResource.LroWrapper"); + scope.Start(); + + try + { + var operation = StartLroWrapper(cancellationToken); + return operation.WaitForCompletion(cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + public virtual TestLroOperation StartLroWrapper(CancellationToken cancellationToken = default) + { + using var scope = _diagnostic.CreateScope("TestResource.StartLroWrapper"); + scope.Start(); + + try + { + return new TestLroOperation(new TestResource()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + public virtual async Task> LroWrapperAsync(CancellationToken cancellationToken = default) + { + using var scope = _diagnostic.CreateScope("TestResource.LroWrapper"); + scope.Start(); + + try + { + var operation = await StartLroWrapperAsync(cancellationToken); + return await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + public virtual async Task StartLroWrapperAsync(CancellationToken cancellationToken = default) + { + using var scope = _diagnostic.CreateScope("TestResource.StartLroWrapper"); + scope.Start(); + + try + { + await Task.Delay(1); + return new TestLroOperation(new TestResource()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + public virtual Response LongLro(CancellationToken cancellationToken = default) + { + using var scope = _diagnostic.CreateScope("TestResource.LongLro"); + scope.Start(); + + try + { + var operation = StartLongLro(cancellationToken); + return operation.WaitForCompletion(cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + public async virtual Task> LongLroAsync(CancellationToken cancellationToken = default) + { + using var scope = _diagnostic.CreateScope("TestResource.LongLro"); + scope.Start(); + + try + { + var operation = await StartLongLroAsync(cancellationToken); + return await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + public virtual TestLroOperation StartLongLro(CancellationToken cancellationToken = default) + { + using var scope = _diagnostic.CreateScope("TestResource.StartLongLro"); + scope.Start(); + + try + { + return new TestLroOperation(new TestResource(), delaySteps: 10); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + public async virtual Task StartLongLroAsync(CancellationToken cancellationToken = default) + { + using var scope = _diagnostic.CreateScope("TestResource.StartLongLro"); + scope.Start(); + + try + { + await Task.Delay(1); + return new TestLroOperation(new TestResource(), delaySteps: 10); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + public virtual string Method() + { + return "success"; + } } } diff --git a/sdk/core/Azure.Core/tests/TestClients/TestResourceContainer.cs b/sdk/core/Azure.Core/tests/TestClients/TestResourceContainer.cs index eeeed16b3d2a4..19c6a5871714f 100644 --- a/sdk/core/Azure.Core/tests/TestClients/TestResourceContainer.cs +++ b/sdk/core/Azure.Core/tests/TestClients/TestResourceContainer.cs @@ -12,7 +12,7 @@ namespace Azure.Core.Tests { - public class TestResourceContainer : ResourceContainer + public class TestResourceContainer : ArmContainer { private DiagnosticScopeFactory _diagnostic = new DiagnosticScopeFactory("Azure.Clients", "Microsoft.Azure.Core.Cool.Tests", true); diff --git a/sdk/core/Azure.Core/tests/TestClients/TestResourceOperations.cs b/sdk/core/Azure.Core/tests/TestClients/TestResourceOperations.cs deleted file mode 100644 index 416a8b8e7475c..0000000000000 --- a/sdk/core/Azure.Core/tests/TestClients/TestResourceOperations.cs +++ /dev/null @@ -1,293 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; -using System.Threading; -using System.Threading.Tasks; -using Azure.Core.Pipeline; -using Azure.Core.TestFramework; -using Azure.ResourceManager; -using Azure.ResourceManager.Core; - -namespace Azure.Core.Tests -{ - public class TestResourceOperations : ResourceOperations - { - private DiagnosticScopeFactory _diagnostic = new DiagnosticScopeFactory("Azure.Clients", "Microsoft.Azure.Core.Cool.Tests", true); - - protected override ResourceType ValidResourceType => ResourceIdentifier.RootResourceIdentifier.ResourceType; - - public virtual TestResourceOperations GetAnotherOperations() - { - return new TestResource(); - } - - public virtual ArmOperationTest GetArmOperation(bool exceptionOnWait = false, CancellationToken cancellationToken = default) - { - using var scope = _diagnostic.CreateScope("TestResourceOperations.GetArmOperation"); - scope.Start(); - - try - { - return new ArmOperationTest(new TestResource(), exceptionOnWait); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - public virtual Task GetArmOperationAsync(bool exceptionOnWait = false, CancellationToken cancellationToken = default) - { - using var scope = _diagnostic.CreateScope("TestResourceOperations.GetArmOperation"); - scope.Start(); - - try - { - return Task.FromResult(new ArmOperationTest(new TestResource(), exceptionOnWait)); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - public virtual Response GetResponse(CancellationToken cancellationToken = default) - { - using var scope = _diagnostic.CreateScope("TestResourceOperations.GetResponse"); - scope.Start(); - - try - { - return Response.FromValue(new TestResource(), new MockResponse(200)); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - public async virtual Task> GetResponseAsync(CancellationToken cancellationToken = default) - { - using var scope = _diagnostic.CreateScope("TestResourceOperations.GetResponse"); - scope.Start(); - - try - { - await Task.Delay(1); - return Response.FromValue(new TestResource(), new MockResponse(200)); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - public virtual Response GetResponseException(CancellationToken cancellationToken = default) - { - using var scope = _diagnostic.CreateScope("TestResourceOperations.GetResponseException"); - scope.Start(); - - try - { - throw new ArgumentException("FakeArg"); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - public virtual Task> GetResponseExceptionAsync(CancellationToken cancellationToken = default) - { - using var scope = _diagnostic.CreateScope("TestResourceOperations.GetResponseException"); - scope.Start(); - - try - { - throw new ArgumentException("FakeArg"); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - public virtual ArmOperationTest GetArmOperationException(CancellationToken cancellationToken = default) - { - using var scope = _diagnostic.CreateScope("TestResourceOperations.GetArmOperationException"); - scope.Start(); - - try - { - throw new ArgumentException("FakeArg"); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - public virtual Task GetArmOperationExceptionAsync(CancellationToken cancellationToken = default) - { - using var scope = _diagnostic.CreateScope("TestResourceOperations.GetArmOperationException"); - scope.Start(); - - try - { - throw new ArgumentException("FakeArg"); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - public virtual Response LroWrapper(CancellationToken cancellationToken = default) - { - using var scope = _diagnostic.CreateScope("TestResourceOperations.LroWrapper"); - scope.Start(); - - try - { - var operation = StartLroWrapper(cancellationToken); - return operation.WaitForCompletion(cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - public virtual ArmOperationTest StartLroWrapper(CancellationToken cancellationToken = default) - { - using var scope = _diagnostic.CreateScope("TestResourceOperations.StartLroWrapper"); - scope.Start(); - - try - { - return new ArmOperationTest(new TestResource()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - public virtual async Task> LroWrapperAsync(CancellationToken cancellationToken = default) - { - using var scope = _diagnostic.CreateScope("TestResourceOperations.LroWrapper"); - scope.Start(); - - try - { - var operation = await StartLroWrapperAsync(cancellationToken); - return await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - public virtual async Task StartLroWrapperAsync(CancellationToken cancellationToken = default) - { - using var scope = _diagnostic.CreateScope("TestResourceOperations.StartLroWrapper"); - scope.Start(); - - try - { - await Task.Delay(1); - return new ArmOperationTest(new TestResource()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - public virtual Response LongLro(CancellationToken cancellationToken = default) - { - using var scope = _diagnostic.CreateScope("TestResourceOperations.LongLro"); - scope.Start(); - - try - { - var operation = StartLongLro(cancellationToken); - return operation.WaitForCompletion(cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - public async virtual Task> LongLroAsync(CancellationToken cancellationToken = default) - { - using var scope = _diagnostic.CreateScope("TestResourceOperations.LongLro"); - scope.Start(); - - try - { - var operation = await StartLongLroAsync(cancellationToken); - return await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - public virtual ArmOperationTest StartLongLro(CancellationToken cancellationToken = default) - { - using var scope = _diagnostic.CreateScope("TestResourceOperations.StartLongLro"); - scope.Start(); - - try - { - return new ArmOperationTest(new TestResource(), delaySteps: 10); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - public async virtual Task StartLongLroAsync(CancellationToken cancellationToken = default) - { - using var scope = _diagnostic.CreateScope("TestResourceOperations.StartLongLro"); - scope.Start(); - - try - { - await Task.Delay(1); - return new ArmOperationTest(new TestResource(), delaySteps: 10); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - public virtual string Method() - { - return "success"; - } - } -} diff --git a/sdk/eventgrid/Azure.Messaging.EventGrid/CHANGELOG.md b/sdk/eventgrid/Azure.Messaging.EventGrid/CHANGELOG.md index 473b06a60ae66..7020652eb7873 100644 --- a/sdk/eventgrid/Azure.Messaging.EventGrid/CHANGELOG.md +++ b/sdk/eventgrid/Azure.Messaging.EventGrid/CHANGELOG.md @@ -3,9 +3,11 @@ ## 4.6.0 (2021-08-10) ### Features Added - - Added `ContainerServiceNewKubernetesVersionAvailableEventData` system event. +### Bugs Fixed +- Updated deserialization of KeyVault system events to match the casing used in the events published by the service. + ## 4.5.0 (2021-07-19) ### Features Added diff --git a/sdk/eventhub/Azure.Messaging.EventHubs.Processor/CHANGELOG.md b/sdk/eventhub/Azure.Messaging.EventHubs.Processor/CHANGELOG.md index 57fd48f0e9c6d..a5d95e3747218 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs.Processor/CHANGELOG.md +++ b/sdk/eventhub/Azure.Messaging.EventHubs.Processor/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 5.6.0-beta.1 (Unreleased) +## 5.7.0-beta.1 (Unreleased) ### Features Added @@ -8,10 +8,18 @@ ### Bugs Fixed +### Other Changes + +## 5.6.0 (2021-08-10) + +### Bugs Fixed + - Fixed an issue where partition processing would ignore cancellation when the processor was shutting down or partition ownership changed and continue dispatching events to the handler until the entire batch was complete. Cancellation will now be properly respected. ### Other Changes +- Added the ability to adjust the connection idle timeout using the `EventHubConnectionOptions` available within the options for each client type. + ## 5.5.0 (2021-07-07) ### Acknowledgments diff --git a/sdk/eventhub/Azure.Messaging.EventHubs.Processor/src/Azure.Messaging.EventHubs.Processor.csproj b/sdk/eventhub/Azure.Messaging.EventHubs.Processor/src/Azure.Messaging.EventHubs.Processor.csproj index 87019c6eb9ec2..6765895d61d62 100644 --- a/sdk/eventhub/Azure.Messaging.EventHubs.Processor/src/Azure.Messaging.EventHubs.Processor.csproj +++ b/sdk/eventhub/Azure.Messaging.EventHubs.Processor/src/Azure.Messaging.EventHubs.Processor.csproj @@ -1,9 +1,9 @@ Azure Event Hubs is a highly scalable publish-subscribe service that can ingest millions of events per second and stream them to multiple consumers. This library extends its Event Processor with durable storage for checkpoint information using Azure Blob storage. For more information about Event Hubs, see https://azure.microsoft.com/en-us/services/event-hubs/ - 5.6.0-beta.1 + 5.7.0-beta.1 - 5.5.0 + 5.6.0 Azure;Event Hubs;EventHubs;.NET;Event Processor;EventProcessor;$(PackageCommonTags) $(RequiredTargetFrameworks) @@ -14,12 +14,7 @@ - - - - - - + diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/CHANGELOG.md b/sdk/eventhub/Azure.Messaging.EventHubs/CHANGELOG.md index 1d2461e9aec5e..ff036b7418391 100755 --- a/sdk/eventhub/Azure.Messaging.EventHubs/CHANGELOG.md +++ b/sdk/eventhub/Azure.Messaging.EventHubs/CHANGELOG.md @@ -1,17 +1,23 @@ # Release History -## 5.6.0-beta.1 (Unreleased) +## 5.7.0-beta.1 (Unreleased) ### Features Added -- Each Event Hubs client type now offers an option to set an Identifier. The identifier is informational and is associated with the AMQP links used, allowing the service to provide additional context in error messages and the SDK logs to provide an additional point of correlation. - ### Breaking Changes ### Bugs Fixed ### Other Changes +## 5.6.0 (2021-08-10) + +### Features Added + +- Each Event Hubs client type now offers an option to set an Identifier. The identifier is informational and is associated with the AMQP links used, allowing the service to provide additional context in error messages and the SDK logs to provide an additional point of correlation. + +### Other Changes + - Added the ability to adjust the connection idle timeout using the `EventHubConnectionOptions` available within the options for each client type. ## 5.5.0 (2021-07-07) diff --git a/sdk/eventhub/Azure.Messaging.EventHubs/src/Azure.Messaging.EventHubs.csproj b/sdk/eventhub/Azure.Messaging.EventHubs/src/Azure.Messaging.EventHubs.csproj index 200ee6ff5e400..fa3152695ee45 100644 --- a/sdk/eventhub/Azure.Messaging.EventHubs/src/Azure.Messaging.EventHubs.csproj +++ b/sdk/eventhub/Azure.Messaging.EventHubs/src/Azure.Messaging.EventHubs.csproj @@ -1,9 +1,9 @@ Azure Event Hubs is a highly scalable publish-subscribe service that can ingest millions of events per second and stream them to multiple consumers. This client library allows for both publishing and consuming events using Azure Event Hubs. For more information about Event Hubs, see https://azure.microsoft.com/en-us/services/event-hubs/ - 5.6.0-beta.1 + 5.7.0-beta.1 - 5.5.0 + 5.6.0 Azure;Event Hubs;EventHubs;.NET;AMQP;IoT;$(PackageCommonTags) $(RequiredTargetFrameworks) diff --git a/sdk/eventhub/Microsoft.Azure.WebJobs.Extensions.EventHubs/tests/Microsoft.Azure.WebJobs.Extensions.EventHubs.Tests.csproj b/sdk/eventhub/Microsoft.Azure.WebJobs.Extensions.EventHubs/tests/Microsoft.Azure.WebJobs.Extensions.EventHubs.Tests.csproj index 5de0b55d593d9..cca0c806f8da4 100644 --- a/sdk/eventhub/Microsoft.Azure.WebJobs.Extensions.EventHubs/tests/Microsoft.Azure.WebJobs.Extensions.EventHubs.Tests.csproj +++ b/sdk/eventhub/Microsoft.Azure.WebJobs.Extensions.EventHubs/tests/Microsoft.Azure.WebJobs.Extensions.EventHubs.Tests.csproj @@ -10,7 +10,7 @@ - + diff --git a/sdk/identity/Azure.Identity/CHANGELOG.md b/sdk/identity/Azure.Identity/CHANGELOG.md index ab20d0038954a..818430ec06a39 100644 --- a/sdk/identity/Azure.Identity/CHANGELOG.md +++ b/sdk/identity/Azure.Identity/CHANGELOG.md @@ -1,6 +1,16 @@ # Release History -## 1.5.0-beta.3 (Unreleased) +## 1.5.0-beta.4 (Unreleased) + +### Features Added + +### Breaking Changes + +### Bugs Fixed + +### Other Changes + +## 1.5.0-beta.3 (2021-08-10) ### Acknowledgments @@ -10,6 +20,10 @@ Thank you to our developer community members who helped to make Azure Identity b ### Features Added +- A new trace event is now logged when `DefaultAzureCredential` selects a credential during initialization. +- Added `AzureApplicationCredential` +- Added `IsPIILoggingEnabled` property to `TokenCredentialOptions`, which controls whether MSAL PII logging is enabled, and other sensitive credential related logging content. + ### Breaking Changes - Renamed `AZURE_POD_IDENTITY_TOKEN_URL` to `AZURE_POD_IDENTITY_AUTHORITY_HOST`. The value should now be a host, for example "http://169.254.169.254" (the default). @@ -18,9 +32,9 @@ Thank you to our developer community members who helped to make Azure Identity b - Stopped loading `$PROFILE` and checking for updates when using `AzurePowerShellCredential`. - Fixed unrecognized argument issue in `AzureCliCredential` when specifying the `TenantId` option. [#23158](https://github.com/Azure/azure-sdk-for-net/issues/23158) (A community contribution, courtesy of _[tpajurek-dtml](https://github.com/tpajurek-dtml))_. - - -### Other Changes +- Handled an additional error scenario for AzureCliCredential that prompts developers to run `az login` when needed. [#21758](https://github.com/Azure/azure-sdk-for-net/issues/21758) +- Fixed an issue in `EnvironmentCredential` where the supplied `options` were not getting properly applied. [#22787](https://github.com/Azure/azure-sdk-for-net/issues/22787) +- Fixed DateTime parsing to use the current culture in AzurePowerShellCredential. [#22638](https://github.com/Azure/azure-sdk-for-net/issues/22638) ## 1.5.0-beta.2 (2021-07-12) diff --git a/sdk/identity/Azure.Identity/api/Azure.Identity.netstandard2.0.cs b/sdk/identity/Azure.Identity/api/Azure.Identity.netstandard2.0.cs index 5beb367bfbbe2..481a0d77a48ae 100644 --- a/sdk/identity/Azure.Identity/api/Azure.Identity.netstandard2.0.cs +++ b/sdk/identity/Azure.Identity/api/Azure.Identity.netstandard2.0.cs @@ -40,6 +40,18 @@ public partial class AuthorizationCodeCredentialOptions : Azure.Identity.TokenCr public AuthorizationCodeCredentialOptions() { } public System.Uri RedirectUri { get { throw null; } set { } } } + public partial class AzureApplicationCredential : Azure.Core.TokenCredential + { + public AzureApplicationCredential() { } + public AzureApplicationCredential(Azure.Identity.AzureApplicationCredentialOptions options) { } + public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class AzureApplicationCredentialOptions : Azure.Identity.TokenCredentialOptions + { + public AzureApplicationCredentialOptions() { } + public string ManagedIdentityClientId { get { throw null; } set { } } + } public static partial class AzureAuthorityHosts { public static System.Uri AzureChina { get { throw null; } } @@ -330,6 +342,7 @@ public partial class TokenCredentialOptions : Azure.Core.ClientOptions public TokenCredentialOptions() { } public bool AllowMultiTenantAuthentication { get { throw null; } set { } } public System.Uri AuthorityHost { get { throw null; } set { } } + public bool IsLoggingPIIEnabled { get { throw null; } set { } } } public abstract partial class UnsafeTokenCacheOptions : Azure.Identity.TokenCachePersistenceOptions { diff --git a/sdk/identity/Azure.Identity/src/Azure.Identity.csproj b/sdk/identity/Azure.Identity/src/Azure.Identity.csproj index ffe5c15fb4b67..7b9a48bade52b 100644 --- a/sdk/identity/Azure.Identity/src/Azure.Identity.csproj +++ b/sdk/identity/Azure.Identity/src/Azure.Identity.csproj @@ -2,7 +2,7 @@ This is the implementation of the Azure SDK Client Library for Azure Identity Microsoft Azure.Identity Component - 1.5.0-beta.3 + 1.5.0-beta.4 1.4.0 Microsoft Azure Identity;$(PackageCommonTags) diff --git a/sdk/identity/Azure.Identity/src/AzureApplicationCredential.cs b/sdk/identity/Azure.Identity/src/AzureApplicationCredential.cs new file mode 100644 index 0000000000000..0c236267bd680 --- /dev/null +++ b/sdk/identity/Azure.Identity/src/AzureApplicationCredential.cs @@ -0,0 +1,71 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.Identity +{ + /// + /// Provides a implementation which chains the and implementations to be tried in order + /// until one of the getToken methods returns a non-default . + /// + /// + /// This credential is designed for applications deployed to Azure is + /// better suited to local development). It authenticates service principals and managed identities.. + /// + public class AzureApplicationCredential : TokenCredential + { + private readonly ChainedTokenCredential _credential; + + /// + /// Initializes an instance of the . + /// + public AzureApplicationCredential() : this(new AzureApplicationCredentialOptions(), null, null) + { } + + /// + /// Initializes an instance of the . + /// + /// The to configure this credential. + public AzureApplicationCredential(AzureApplicationCredentialOptions options) : this(options ?? new AzureApplicationCredentialOptions(), null, null) + { } + + internal AzureApplicationCredential(AzureApplicationCredentialOptions options, EnvironmentCredential environmentCredential = null, ManagedIdentityCredential managedIdentityCredential = null) + { + _credential = new ChainedTokenCredential( + environmentCredential ?? new EnvironmentCredential(options), + managedIdentityCredential ?? new ManagedIdentityCredential(options.ManagedIdentityClientId) + ); + } + + /// + /// Sequentially calls on all the specified sources, returning the first successfully obtained . + /// This method is called automatically by Azure SDK client libraries. You may call this method directly, but you must also handle token caching and token refreshing. + /// + /// The details of the authentication request. + /// A controlling the request lifetime. + /// The first returned by the specified sources. Any credential which raises a will be skipped. + public override AccessToken GetToken(TokenRequestContext requestContext, CancellationToken cancellationToken = default) + => GetTokenImplAsync(false, requestContext, cancellationToken).EnsureCompleted(); + + /// + /// Sequentially calls on all the specified sources, returning the first successfully obtained . + /// This method is called automatically by Azure SDK client libraries. You may call this method directly, but you must also handle token caching and token refreshing. + /// + /// The details of the authentication request. + /// A controlling the request lifetime. + /// The first returned by the specified sources. Any credential which raises a will be skipped. + public override async ValueTask GetTokenAsync(TokenRequestContext requestContext, CancellationToken cancellationToken = default) + => await GetTokenImplAsync(true, requestContext, cancellationToken).ConfigureAwait(false); + + private async ValueTask GetTokenImplAsync(bool async, TokenRequestContext requestContext, CancellationToken cancellationToken) + => async ? + await _credential.GetTokenAsync(requestContext, cancellationToken).ConfigureAwait(false) + : _credential.GetToken(requestContext, cancellationToken); + } +} diff --git a/sdk/identity/Azure.Identity/src/AzureApplicationCredentialOptions.cs b/sdk/identity/Azure.Identity/src/AzureApplicationCredentialOptions.cs new file mode 100644 index 0000000000000..db50d68af44b2 --- /dev/null +++ b/sdk/identity/Azure.Identity/src/AzureApplicationCredentialOptions.cs @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; + +namespace Azure.Identity +{ + /// + /// Options to configure the authentication flow and requests made to Azure Identity services. + /// + public class AzureApplicationCredentialOptions : TokenCredentialOptions + { + /// + /// Specifies the client id of the azure ManagedIdentity in the case of user assigned identity. + /// + public string ManagedIdentityClientId { get; set; } = GetNonEmptyStringOrNull(EnvironmentVariables.ClientId); + private static string GetNonEmptyStringOrNull(string str) + { + return !string.IsNullOrEmpty(str) ? str : null; + } + } +} diff --git a/sdk/identity/Azure.Identity/src/DeviceCodeCredential.cs b/sdk/identity/Azure.Identity/src/DeviceCodeCredential.cs index c8095984dbb73..9c8d310cffe96 100644 --- a/sdk/identity/Azure.Identity/src/DeviceCodeCredential.cs +++ b/sdk/identity/Azure.Identity/src/DeviceCodeCredential.cs @@ -88,7 +88,13 @@ internal DeviceCodeCredential(Func devi Record = (options as DeviceCodeCredentialOptions)?.AuthenticationRecord; _allowMultiTenantAuthentication = options?.AllowMultiTenantAuthentication ?? false; Pipeline = pipeline ?? CredentialPipeline.GetInstance(options); - Client = client ?? new MsalPublicClient(Pipeline, tenantId, ClientId, AzureAuthorityHosts.GetDeviceCodeRedirectUri(Pipeline.AuthorityHost).AbsoluteUri, options as ITokenCacheOptions); + Client = client ?? new MsalPublicClient( + Pipeline, + tenantId, + ClientId, + AzureAuthorityHosts.GetDeviceCodeRedirectUri(Pipeline.AuthorityHost).AbsoluteUri, + options as ITokenCacheOptions, + options?.IsLoggingPIIEnabled ?? false); } /// diff --git a/sdk/identity/Azure.Identity/src/InteractiveBrowserCredential.cs b/sdk/identity/Azure.Identity/src/InteractiveBrowserCredential.cs index 8ecece7040054..3bdd28bbbb442 100644 --- a/sdk/identity/Azure.Identity/src/InteractiveBrowserCredential.cs +++ b/sdk/identity/Azure.Identity/src/InteractiveBrowserCredential.cs @@ -82,7 +82,7 @@ internal InteractiveBrowserCredential(string tenantId, string clientId, TokenCre Pipeline = pipeline ?? CredentialPipeline.GetInstance(options); LoginHint = (options as InteractiveBrowserCredentialOptions)?.LoginHint; var redirectUrl = (options as InteractiveBrowserCredentialOptions)?.RedirectUri?.AbsoluteUri ?? Constants.DefaultRedirectUrl; - Client = client ?? new MsalPublicClient(Pipeline, tenantId, clientId, redirectUrl, options as ITokenCacheOptions); + Client = client ?? new MsalPublicClient(Pipeline, tenantId, clientId, redirectUrl, options as ITokenCacheOptions, options?.IsLoggingPIIEnabled ?? false); } /// diff --git a/sdk/identity/Azure.Identity/src/MsalPublicClient.cs b/sdk/identity/Azure.Identity/src/MsalPublicClient.cs index df9f77d2c177e..9401f3dd63591 100644 --- a/sdk/identity/Azure.Identity/src/MsalPublicClient.cs +++ b/sdk/identity/Azure.Identity/src/MsalPublicClient.cs @@ -14,14 +14,16 @@ namespace Azure.Identity internal class MsalPublicClient : MsalClientBase { internal string RedirectUrl { get; } + internal bool LogPII { get; } protected MsalPublicClient() { } - public MsalPublicClient(CredentialPipeline pipeline, string tenantId, string clientId, string redirectUrl, ITokenCacheOptions cacheOptions) + public MsalPublicClient(CredentialPipeline pipeline, string tenantId, string clientId, string redirectUrl, ITokenCacheOptions cacheOptions, bool logPII) : base(pipeline, tenantId, clientId, cacheOptions) { RedirectUrl = redirectUrl; + LogPII = logPII; } protected override ValueTask CreateClientAsync(bool async, CancellationToken cancellationToken) @@ -41,7 +43,7 @@ protected virtual ValueTask CreateClientCoreAsync(stri .Create(ClientId) .WithAuthority(authorityUri) .WithHttpClientFactory(new HttpPipelineClientFactory(Pipeline.HttpPipeline)) - .WithLogging(AzureIdentityEventSource.Singleton.LogMsal); + .WithLogging(AzureIdentityEventSource.Singleton.LogMsal, enablePiiLogging: LogPII); if (!string.IsNullOrEmpty(RedirectUrl)) { @@ -134,22 +136,22 @@ protected virtual async ValueTask AcquireTokenInteractiveC { IPublicClientApplication client = await GetClientAsync(async, cancellationToken).ConfigureAwait(false); - var builder = client.AcquireTokenInteractive(scopes) - .WithPrompt(prompt) - .WithClaims(claims) - .WithPrompt(prompt) - .WithClaims(claims); - if (loginHint != null) - { - builder.WithLoginHint(loginHint); - } - if (tenantId != null) - { - builder.WithAuthority(Pipeline.AuthorityHost.AbsoluteUri, tenantId); - } - return await builder - .ExecuteAsync(async, cancellationToken) - .ConfigureAwait(false); + var builder = client.AcquireTokenInteractive(scopes) + .WithPrompt(prompt) + .WithClaims(claims) + .WithPrompt(prompt) + .WithClaims(claims); + if (loginHint != null) + { + builder.WithLoginHint(loginHint); + } + if (tenantId != null) + { + builder.WithAuthority(Pipeline.AuthorityHost.AbsoluteUri, tenantId); + } + return await builder + .ExecuteAsync(async, cancellationToken) + .ConfigureAwait(false); } public async ValueTask AcquireTokenByUsernamePasswordAsync(string[] scopes, string claims, string username, SecureString password, string tenantId, bool async, CancellationToken cancellationToken) diff --git a/sdk/identity/Azure.Identity/src/SharedTokenCacheCredential.cs b/sdk/identity/Azure.Identity/src/SharedTokenCacheCredential.cs index b26bfdbc86c4d..0c9b2ed83c02e 100644 --- a/sdk/identity/Azure.Identity/src/SharedTokenCacheCredential.cs +++ b/sdk/identity/Azure.Identity/src/SharedTokenCacheCredential.cs @@ -75,7 +75,13 @@ internal SharedTokenCacheCredential(string tenantId, string username, TokenCrede _record = (options as SharedTokenCacheCredentialOptions)?.AuthenticationRecord; _pipeline = pipeline ?? CredentialPipeline.GetInstance(options); _allowMultiTenantAuthentication = options?.AllowMultiTenantAuthentication ?? false; - Client = client ?? new MsalPublicClient(_pipeline, tenantId, (options as SharedTokenCacheCredentialOptions)?.ClientId ?? Constants.DeveloperSignOnClientId, null, (options as ITokenCacheOptions) ?? s_DefaultCacheOptions); + Client = client ?? new MsalPublicClient( + _pipeline, + tenantId, + (options as SharedTokenCacheCredentialOptions)?.ClientId ?? Constants.DeveloperSignOnClientId, + null, + (options as ITokenCacheOptions) ?? s_DefaultCacheOptions, + options?.IsLoggingPIIEnabled ?? false); _accountAsyncLock = new AsyncLockWithValue(); } diff --git a/sdk/identity/Azure.Identity/src/TokenCredentialOptions.cs b/sdk/identity/Azure.Identity/src/TokenCredentialOptions.cs index 697582f0f4584..3bc2b7123078d 100644 --- a/sdk/identity/Azure.Identity/src/TokenCredentialOptions.cs +++ b/sdk/identity/Azure.Identity/src/TokenCredentialOptions.cs @@ -27,5 +27,10 @@ public Uri AuthorityHost /// Otherwise the credential will only acquire tokens from the tenant configured when the credential was constructed. /// public bool AllowMultiTenantAuthentication { get; set; } + + /// + /// Gets or sets value indicating if logging that contains PII content should be logged. + /// + public bool IsLoggingPIIEnabled { get; set; } } } diff --git a/sdk/identity/Azure.Identity/src/UsernamePasswordCredential.cs b/sdk/identity/Azure.Identity/src/UsernamePasswordCredential.cs index 5572c6b1c3f7d..b6bc0d05d3bd4 100644 --- a/sdk/identity/Azure.Identity/src/UsernamePasswordCredential.cs +++ b/sdk/identity/Azure.Identity/src/UsernamePasswordCredential.cs @@ -21,13 +21,13 @@ public class UsernamePasswordCredential : TokenCredential private const string NoDefaultScopeMessage = "Authenticating in this environment requires specifying a TokenRequestContext."; private readonly string _clientId; - private readonly MsalPublicClient _client; private readonly CredentialPipeline _pipeline; private readonly string _username; private readonly SecureString _password; private AuthenticationRecord _record; private readonly string _tenantId; private readonly bool _allowMultiTenantAuthentication; + internal MsalPublicClient Client { get; } /// /// Protected constructor for mocking @@ -89,7 +89,7 @@ internal UsernamePasswordCredential(string username, string password, string ten _password = password.ToSecureString(); _clientId = clientId; _pipeline = pipeline ?? CredentialPipeline.GetInstance(options); - _client = client ?? new MsalPublicClient(_pipeline, tenantId, clientId, null, options as ITokenCacheOptions); + Client = client ?? new MsalPublicClient(_pipeline, tenantId, clientId, null, options as ITokenCacheOptions, options?.IsLoggingPIIEnabled ?? false); } /// @@ -190,7 +190,7 @@ private async Task GetTokenImplAsync(bool async, TokenRequestContex { var tenantId = TenantIdResolver.Resolve(_tenantId, requestContext, _allowMultiTenantAuthentication); - AuthenticationResult result = await _client + AuthenticationResult result = await Client .AcquireTokenByUsernamePasswordAsync(requestContext.Scopes, requestContext.Claims, _username, _password, tenantId, async, cancellationToken) .ConfigureAwait(false); diff --git a/sdk/identity/Azure.Identity/src/VisualStudioCodeCredential.cs b/sdk/identity/Azure.Identity/src/VisualStudioCodeCredential.cs index 42d37336753a8..7f1c5999ff639 100644 --- a/sdk/identity/Azure.Identity/src/VisualStudioCodeCredential.cs +++ b/sdk/identity/Azure.Identity/src/VisualStudioCodeCredential.cs @@ -25,9 +25,9 @@ public class VisualStudioCodeCredential : TokenCredential private readonly IFileSystemService _fileSystem; private readonly CredentialPipeline _pipeline; private readonly string _tenantId; - private readonly MsalPublicClient _client; private const string _commonTenant = "common"; private readonly bool _allowMultiTenantAuthentication; + internal MsalPublicClient Client { get; } /// /// Creates a new instance of the . @@ -45,7 +45,7 @@ internal VisualStudioCodeCredential(VisualStudioCodeCredentialOptions options, C { _tenantId = options?.TenantId ?? _commonTenant; _pipeline = pipeline ?? CredentialPipeline.GetInstance(options); - _client = client ?? new MsalPublicClient(_pipeline, options?.TenantId, ClientId, null, null); + Client = client ?? new MsalPublicClient(_pipeline, options?.TenantId, ClientId, null, null, options?.IsLoggingPIIEnabled ?? false); _fileSystem = fileSystem ?? FileSystemService.Default; _vscAdapter = vscAdapter ?? GetVscAdapter(); _allowMultiTenantAuthentication = options?.AllowMultiTenantAuthentication ?? false; @@ -76,7 +76,7 @@ private async ValueTask GetTokenImplAsync(TokenRequestContext reque var cloudInstance = GetAzureCloudInstance(environmentName); string storedCredentials = GetStoredCredentials(environmentName); - var result = await _client + var result = await Client .AcquireTokenByRefreshTokenAsync(requestContext.Scopes, requestContext.Claims, storedCredentials, cloudInstance, tenantId, async, cancellationToken) .ConfigureAwait(false); return scope.Succeeded(new AccessToken(result.AccessToken, result.ExpiresOn)); diff --git a/sdk/identity/Azure.Identity/tests/AzureApplicationCredentialTests.cs b/sdk/identity/Azure.Identity/tests/AzureApplicationCredentialTests.cs new file mode 100644 index 0000000000000..c2d811a1483df --- /dev/null +++ b/sdk/identity/Azure.Identity/tests/AzureApplicationCredentialTests.cs @@ -0,0 +1,146 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure.Core; +using Azure.Core.TestFramework; +using Azure.Core.Tests; +using Moq; +using NUnit.Framework; + +namespace Azure.Identity.Tests +{ + public class AzureApplicationCredentialTests : ClientTestBase + { + private const string clientId = "MyClientId"; + private const string envToken = "environmentToken"; + private const string msiToken = "managedIdentityToken"; + private DateTimeOffset expires = DateTimeOffset.Now; + private Mock mockEnvCred; + private Mock mockManagedIdCred; + private AzureApplicationCredentialOptions options = new AzureApplicationCredentialOptions(); + + public AzureApplicationCredentialTests(bool isAsync) : base(isAsync) + { + TestDiagnostics = false; + } + + [SetUp] + public void TestSetup() + { + options.ManagedIdentityClientId = clientId; + } + + [Test] + public void CtorValidatesArgs() + { + new AzureApplicationCredential(null); + new AzureApplicationCredential(new AzureApplicationCredentialOptions()); + new AzureApplicationCredential(new AzureApplicationCredentialOptions { ManagedIdentityClientId = "clientId" }); + } + + [Test] + public async Task CredentialSequenceValid([Values(true, false)] bool envAvailable, [Values(true, false)] bool MsiAvailable) + { + ConfigureMocks(envAvailable, MsiAvailable); + + var target = InstrumentClient(new AzureApplicationCredential(options, mockEnvCred.Object, mockManagedIdCred.Object)); + + if (!envAvailable && !MsiAvailable) + { + var ex = Assert.CatchAsync(async () => await target.GetTokenAsync(new TokenRequestContext(new string[] { "Scope" }))); + } + else + { + var expectedToken = envAvailable switch + { + true => envToken, + false => msiToken + }; + Assert.AreEqual(expectedToken, (await target.GetTokenAsync(new TokenRequestContext(new string[] { "scope" }))).Token); + } + + VerifyMocks(envAvailable, MsiAvailable); + } + + private void ConfigureMocks(bool EnvAvailable, bool MsiAvailable) + { + mockEnvCred = new Mock(); + mockManagedIdCred = new Mock(); + + if (EnvAvailable) + { + mockEnvCred + .Setup(m => m.GetToken(It.IsAny(), It.IsAny())) + .Returns(new AccessToken(envToken, expires)); + + mockEnvCred + .Setup(m => m.GetTokenAsync(It.IsAny(), It.IsAny())) + .ReturnsAsync(new AccessToken(envToken, expires)); + } + else + { + mockEnvCred + .Setup(m => m.GetToken(It.IsAny(), It.IsAny())) + .Throws(new CredentialUnavailableException("no cred")); + + mockEnvCred + .Setup(m => m.GetTokenAsync(It.IsAny(), It.IsAny())) + .Throws(new CredentialUnavailableException("no cred")); + } + + if (MsiAvailable) + { + mockManagedIdCred + .Setup(m => m.GetToken(It.IsAny(), It.IsAny())) + .Returns(new AccessToken(msiToken, expires)); + + mockManagedIdCred + .Setup(m => m.GetTokenAsync(It.IsAny(), It.IsAny())) + .ReturnsAsync(new AccessToken(msiToken, expires)); + } + else + { + mockManagedIdCred + .Setup(m => m.GetToken(It.IsAny(), It.IsAny())) + .Throws(new CredentialUnavailableException("no cred")); + + mockManagedIdCred + .Setup(m => m.GetTokenAsync(It.IsAny(), It.IsAny())) + .Throws(new CredentialUnavailableException("no cred")); + } + } + + private void VerifyMocks(bool EnvAvailable, bool MsiAvailable) + { + if (EnvAvailable) + { + if (IsAsync) + { + mockEnvCred + .Verify(m => m.GetTokenAsync(It.IsAny(), It.IsAny())); + } + else + { + mockEnvCred + .Verify(m => m.GetToken(It.IsAny(), It.IsAny())); + } + } + else if (MsiAvailable) + { + if (IsAsync) + { + mockManagedIdCred + .Verify(m => m.GetTokenAsync(It.IsAny(), It.IsAny())); + } + else + { + mockManagedIdCred + .Verify(m => m.GetToken(It.IsAny(), It.IsAny())); + } + } + } + } +} diff --git a/sdk/identity/Azure.Identity/tests/DeviceCodeCredentialTests.cs b/sdk/identity/Azure.Identity/tests/DeviceCodeCredentialTests.cs index d7c72e00b9e93..fdf917ece8e1c 100644 --- a/sdk/identity/Azure.Identity/tests/DeviceCodeCredentialTests.cs +++ b/sdk/identity/Azure.Identity/tests/DeviceCodeCredentialTests.cs @@ -121,6 +121,15 @@ public async Task AuthenticateWithDeviceCodeMockAsync([Values(null, TenantIdHint Assert.AreEqual(token.Token, expectedToken); } + [Test] + public void RespectsIsPIILoggingEnabled([Values(true, false)] bool isLoggingPIIEnabled) + { + var credential = new DeviceCodeCredential(new DeviceCodeCredentialOptions { IsLoggingPIIEnabled = isLoggingPIIEnabled}); + + Assert.NotNull(credential.Client); + Assert.AreEqual(isLoggingPIIEnabled, credential.Client.LogPII); + } + [Test] [NonParallelizable] public async Task AuthenticateWithDeviceCodeNoCallback() diff --git a/sdk/identity/Azure.Identity/tests/InteractiveBrowserCredentialTests.cs b/sdk/identity/Azure.Identity/tests/InteractiveBrowserCredentialTests.cs index 06f9502e1b501..941c26a61307d 100644 --- a/sdk/identity/Azure.Identity/tests/InteractiveBrowserCredentialTests.cs +++ b/sdk/identity/Azure.Identity/tests/InteractiveBrowserCredentialTests.cs @@ -49,6 +49,15 @@ public async Task InteractiveBrowserAcquireTokenInteractiveException() await Task.CompletedTask; } + [Test] + public void RespectsIsPIILoggingEnabled([Values(true, false)] bool isLoggingPIIEnabled) + { + var credential = new InteractiveBrowserCredential(new InteractiveBrowserCredentialOptions { IsLoggingPIIEnabled = isLoggingPIIEnabled}); + + Assert.NotNull(credential.Client); + Assert.AreEqual(isLoggingPIIEnabled, credential.Client.LogPII); + } + [Test] public async Task InteractiveBrowserAcquireTokenSilentException() { diff --git a/sdk/identity/Azure.Identity/tests/SharedTokenCacheCredentialTests.cs b/sdk/identity/Azure.Identity/tests/SharedTokenCacheCredentialTests.cs index 3973085b9737b..e8ef63838aae8 100644 --- a/sdk/identity/Azure.Identity/tests/SharedTokenCacheCredentialTests.cs +++ b/sdk/identity/Azure.Identity/tests/SharedTokenCacheCredentialTests.cs @@ -72,6 +72,15 @@ public async Task VerifyAuthenticationRecordOption() Assert.IsTrue(acquireTokenSilentCalled); } + [Test] + public void RespectsIsPIILoggingEnabled([Values(true, false)] bool isLoggingPIIEnabled) + { + var credential = new SharedTokenCacheCredential(new SharedTokenCacheCredentialOptions{ IsLoggingPIIEnabled = isLoggingPIIEnabled}); + + Assert.NotNull(credential.Client); + Assert.AreEqual(isLoggingPIIEnabled, credential.Client.LogPII); + } + [Test] public async Task OneAccountNoTentantNoUsername() { diff --git a/sdk/identity/Azure.Identity/tests/UsernamePasswordCredentialTests.cs b/sdk/identity/Azure.Identity/tests/UsernamePasswordCredentialTests.cs index 7b9e46cce8030..2e492826f774f 100644 --- a/sdk/identity/Azure.Identity/tests/UsernamePasswordCredentialTests.cs +++ b/sdk/identity/Azure.Identity/tests/UsernamePasswordCredentialTests.cs @@ -52,6 +52,20 @@ public async Task VerifyMsalClientExceptionAsync() await Task.CompletedTask; } + [Test] + public void RespectsIsPIILoggingEnabled([Values(true, false)] bool isLoggingPIIEnabled) + { + var username = Guid.NewGuid().ToString(); + var password = Guid.NewGuid().ToString(); + var clientId = Guid.NewGuid().ToString(); + var tenantId = Guid.NewGuid().ToString(); + + var credential = new UsernamePasswordCredential(username, password, clientId, tenantId, new TokenCredentialOptions{ IsLoggingPIIEnabled = isLoggingPIIEnabled}, default, null); + + Assert.NotNull(credential.Client); + Assert.AreEqual(isLoggingPIIEnabled, credential.Client.LogPII); + } + [Test] public async Task UsesTenantIdHint([Values(null, TenantIdHint)] string tenantId, [Values(true)] bool allowMultiTenantAuthentication) { diff --git a/sdk/identity/Azure.Identity/tests/VisualStudioCodeCredentialTests.cs b/sdk/identity/Azure.Identity/tests/VisualStudioCodeCredentialTests.cs index 258d64c5b8c01..91c8c3b22bd61 100644 --- a/sdk/identity/Azure.Identity/tests/VisualStudioCodeCredentialTests.cs +++ b/sdk/identity/Azure.Identity/tests/VisualStudioCodeCredentialTests.cs @@ -82,6 +82,15 @@ public async Task AuthenticateWithVsCodeCredential([Values(null, TenantIdHint)] Assert.AreEqual(expiresOn, actualToken.ExpiresOn, "expiresOn should match"); } + [Test] + public void RespectsIsPIILoggingEnabled([Values(true, false)] bool isLoggingPIIEnabled) + { + var credential = new VisualStudioCodeCredential(new VisualStudioCodeCredentialOptions{ IsLoggingPIIEnabled = isLoggingPIIEnabled}); + + Assert.NotNull(credential.Client); + Assert.AreEqual(isLoggingPIIEnabled, credential.Client.LogPII); + } + [Test] public void AdfsTenantThrowsCredentialUnavailable() { diff --git a/sdk/keyvault/Azure.Security.KeyVault.Administration/CHANGELOG.md b/sdk/keyvault/Azure.Security.KeyVault.Administration/CHANGELOG.md index 75a21614f542b..6f7b1b2261502 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Administration/CHANGELOG.md +++ b/sdk/keyvault/Azure.Security.KeyVault.Administration/CHANGELOG.md @@ -1,12 +1,6 @@ # Release History -## 4.1.0-beta.1 (Unreleased) - -### Features Added - -### Breaking Changes - -### Key Bugs Fixed +## 4.1.0-beta.1 (2021-08-10) ### Fixed diff --git a/sdk/keyvault/Azure.Security.KeyVault.Certificates/CHANGELOG.md b/sdk/keyvault/Azure.Security.KeyVault.Certificates/CHANGELOG.md index 78556edebd795..ba5409a4b37cb 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Certificates/CHANGELOG.md +++ b/sdk/keyvault/Azure.Security.KeyVault.Certificates/CHANGELOG.md @@ -1,12 +1,6 @@ # Release History -## 4.3.0-beta.1 (Unreleased) - -### Features Added - -### Breaking Changes - -### Key Bugs Fixed +## 4.3.0-beta.1 (2021-08-10) ### Fixed diff --git a/sdk/keyvault/Azure.Security.KeyVault.Keys/CHANGELOG.md b/sdk/keyvault/Azure.Security.KeyVault.Keys/CHANGELOG.md index 34ab4cb43a6ba..cfc509f7cfe3b 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Keys/CHANGELOG.md +++ b/sdk/keyvault/Azure.Security.KeyVault.Keys/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 4.3.0-beta.1 (Unreleased) +## 4.3.0-beta.1 (2021-08-10) ### Features Added @@ -8,10 +8,6 @@ - Added `Exportable` and `ReleasePolicy` to `CreateKeyOptions`, `ImportKeyOptions`, and `KeyProperties` to support Secure Key Release for Key Vault and Managed HSM. - Added `ReleaseKey` and `ReleaseKeyAsync` to `KeyClient` to release a key for Key Vault and Managed HSM. -### Breaking Changes - -### Key Bugs Fixed - ### Fixed - The default service version is now "7.3-preview". diff --git a/sdk/keyvault/Azure.Security.KeyVault.Secrets/CHANGELOG.md b/sdk/keyvault/Azure.Security.KeyVault.Secrets/CHANGELOG.md index 270094665e0b7..fb4efd1540239 100644 --- a/sdk/keyvault/Azure.Security.KeyVault.Secrets/CHANGELOG.md +++ b/sdk/keyvault/Azure.Security.KeyVault.Secrets/CHANGELOG.md @@ -1,12 +1,6 @@ # Release History -## 4.3.0-beta.1 (Unreleased) - -### Features Added - -### Breaking Changes - -### Key Bugs Fixed +## 4.3.0-beta.1 (2021-08-10) ### Fixed diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/CHANGELOG.md b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/CHANGELOG.md index 1d6159be60c4b..75c2835bdc568 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/CHANGELOG.md +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.1.0-beta.1 (Unreleased) +## 1.2.0-beta.1 (Unreleased) ### Features Added @@ -10,6 +10,12 @@ ### Other Changes +## 1.1.0 (2021-08-06) + +### Features Added + +- Added the static class `MetricsAdvisorModelFactory`. It can be used to instantiate Metrics Advisor models for mocking. + ## 1.0.0 (2021-07-08) ### New Features diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/api/Azure.AI.MetricsAdvisor.netstandard2.0.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/api/Azure.AI.MetricsAdvisor.netstandard2.0.cs index 90de9130ada7f..213cfd0c51229 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/api/Azure.AI.MetricsAdvisor.netstandard2.0.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/api/Azure.AI.MetricsAdvisor.netstandard2.0.cs @@ -1243,6 +1243,34 @@ internal MetricEnrichedSeriesData() { } public static bool operator !=(Azure.AI.MetricsAdvisor.Models.MetricPeriodType left, Azure.AI.MetricsAdvisor.Models.MetricPeriodType right) { throw null; } public override string ToString() { throw null; } } + public static partial class MetricsAdvisorModelFactory + { + public static Azure.AI.MetricsAdvisor.Models.AnomalyAlert AnomalyAlert(string id = null, System.DateTimeOffset timestamp = default(System.DateTimeOffset), System.DateTimeOffset createdOn = default(System.DateTimeOffset), System.DateTimeOffset lastModified = default(System.DateTimeOffset)) { throw null; } + public static Azure.AI.MetricsAdvisor.Models.AnomalyAlertConfiguration AnomalyAlertConfiguration(string id = null, string name = null, string description = null, Azure.AI.MetricsAdvisor.Models.MetricAlertConfigurationsOperator? crossMetricsOperator = default(Azure.AI.MetricsAdvisor.Models.MetricAlertConfigurationsOperator?), System.Collections.Generic.IEnumerable dimensionsToSplitAlert = null, System.Collections.Generic.IEnumerable idsOfHooksToAlert = null, System.Collections.Generic.IEnumerable metricAlertConfigurations = null) { throw null; } + public static Azure.AI.MetricsAdvisor.Models.AnomalyDetectionConfiguration AnomalyDetectionConfiguration(string id = null, string name = null, string description = null, string metricId = null, Azure.AI.MetricsAdvisor.Models.MetricWholeSeriesDetectionCondition wholeSeriesDetectionConditions = null, System.Collections.Generic.IEnumerable seriesGroupDetectionConditions = null, System.Collections.Generic.IEnumerable seriesDetectionConditions = null) { throw null; } + public static Azure.AI.MetricsAdvisor.Models.AnomalyIncident AnomalyIncident(string dataFeedId = null, string metricId = null, string detectionConfigurationId = null, string id = null, System.DateTimeOffset startedOn = default(System.DateTimeOffset), System.DateTimeOffset lastDetectedOn = default(System.DateTimeOffset), Azure.AI.MetricsAdvisor.Models.DimensionKey rootSeriesKey = null, Azure.AI.MetricsAdvisor.Models.AnomalySeverity severity = default(Azure.AI.MetricsAdvisor.Models.AnomalySeverity), Azure.AI.MetricsAdvisor.Models.AnomalyIncidentStatus status = default(Azure.AI.MetricsAdvisor.Models.AnomalyIncidentStatus), double valueOfRootNode = 0, double? expectedValueOfRootNode = default(double?)) { throw null; } + public static Azure.AI.MetricsAdvisor.Models.DataFeed DataFeed(string id = null, Azure.AI.MetricsAdvisor.Models.DataFeedStatus? status = default(Azure.AI.MetricsAdvisor.Models.DataFeedStatus?), System.DateTimeOffset? createdOn = default(System.DateTimeOffset?), string creator = null, bool? isAdministrator = default(bool?), System.Collections.Generic.IReadOnlyDictionary metricIds = null, string name = null, Azure.AI.MetricsAdvisor.Administration.DataFeedSource dataSource = null, Azure.AI.MetricsAdvisor.Models.DataFeedSchema schema = null, Azure.AI.MetricsAdvisor.Models.DataFeedGranularity granularity = null, Azure.AI.MetricsAdvisor.Models.DataFeedIngestionSettings ingestionSettings = null, string description = null, string actionLinkTemplate = null, Azure.AI.MetricsAdvisor.Models.DataFeedAccessMode? accessMode = default(Azure.AI.MetricsAdvisor.Models.DataFeedAccessMode?), Azure.AI.MetricsAdvisor.Models.DataFeedRollupSettings rollupSettings = null, Azure.AI.MetricsAdvisor.Models.DataFeedMissingDataPointFillSettings missingDataPointFillSettings = null, System.Collections.Generic.IEnumerable administrators = null, System.Collections.Generic.IEnumerable viewers = null) { throw null; } + public static Azure.AI.MetricsAdvisor.Models.DataFeedIngestionProgress DataFeedIngestionProgress(System.DateTimeOffset? latestSuccessTimestamp = default(System.DateTimeOffset?), System.DateTimeOffset? latestActiveTimestamp = default(System.DateTimeOffset?)) { throw null; } + public static Azure.AI.MetricsAdvisor.Models.DataFeedIngestionStatus DataFeedIngestionStatus(System.DateTimeOffset timestamp = default(System.DateTimeOffset), Azure.AI.MetricsAdvisor.Models.IngestionStatusType status = default(Azure.AI.MetricsAdvisor.Models.IngestionStatusType), string message = null) { throw null; } + public static Azure.AI.MetricsAdvisor.Models.DataFeedMetric DataFeedMetric(string id = null, string name = null, string displayName = null, string description = null) { throw null; } + public static Azure.AI.MetricsAdvisor.Administration.DataLakeSharedKeyCredentialEntity DataLakeSharedKeyCredentialEntity(string id = null, string name = null, string description = null, string accountKey = null) { throw null; } + public static Azure.AI.MetricsAdvisor.Models.DataPointAnomaly DataPointAnomaly(string dataFeedId = null, string metricId = null, string detectionConfigurationId = null, System.DateTimeOffset timestamp = default(System.DateTimeOffset), System.DateTimeOffset? createdOn = default(System.DateTimeOffset?), System.DateTimeOffset? lastModified = default(System.DateTimeOffset?), Azure.AI.MetricsAdvisor.Models.DimensionKey seriesKey = null, Azure.AI.MetricsAdvisor.Models.AnomalySeverity severity = default(Azure.AI.MetricsAdvisor.Models.AnomalySeverity), Azure.AI.MetricsAdvisor.Models.AnomalyStatus? status = default(Azure.AI.MetricsAdvisor.Models.AnomalyStatus?), double value = 0, double? expectedValue = default(double?)) { throw null; } + public static Azure.AI.MetricsAdvisor.Administration.EmailNotificationHook EmailNotificationHook(string id = null, string name = null, string description = null, System.Uri externalUri = null, System.Collections.Generic.IEnumerable administrators = null, System.Collections.Generic.IEnumerable emailsToAlert = null) { throw null; } + public static Azure.AI.MetricsAdvisor.Models.EnrichmentStatus EnrichmentStatus(System.DateTimeOffset timestamp = default(System.DateTimeOffset), string status = null, string message = null) { throw null; } + public static Azure.AI.MetricsAdvisor.Models.IncidentRootCause IncidentRootCause(Azure.AI.MetricsAdvisor.Models.DimensionKey seriesKey = null, System.Collections.Generic.IEnumerable paths = null, double contributionScore = 0, string description = null) { throw null; } + public static Azure.AI.MetricsAdvisor.MetricAnomalyFeedback MetricAnomalyFeedback(string id = null, System.DateTimeOffset? createdOn = default(System.DateTimeOffset?), string userPrincipal = null, string metricId = null, Azure.AI.MetricsAdvisor.Models.DimensionKey dimensionKey = null, System.DateTimeOffset startsOn = default(System.DateTimeOffset), System.DateTimeOffset endsOn = default(System.DateTimeOffset), Azure.AI.MetricsAdvisor.Models.AnomalyValue anomalyValue = default(Azure.AI.MetricsAdvisor.Models.AnomalyValue), string detectionConfigurationId = null, Azure.AI.MetricsAdvisor.Models.AnomalyDetectionConfiguration detectionConfigurationSnapshot = null) { throw null; } + public static Azure.AI.MetricsAdvisor.MetricChangePointFeedback MetricChangePointFeedback(string id = null, System.DateTimeOffset? createdOn = default(System.DateTimeOffset?), string userPrincipal = null, string metricId = null, Azure.AI.MetricsAdvisor.Models.DimensionKey dimensionKey = null, System.DateTimeOffset startsOn = default(System.DateTimeOffset), System.DateTimeOffset endsOn = default(System.DateTimeOffset), Azure.AI.MetricsAdvisor.Models.ChangePointValue changePointValue = default(Azure.AI.MetricsAdvisor.Models.ChangePointValue)) { throw null; } + public static Azure.AI.MetricsAdvisor.MetricCommentFeedback MetricCommentFeedback(string id = null, System.DateTimeOffset? createdOn = default(System.DateTimeOffset?), string userPrincipal = null, string metricId = null, Azure.AI.MetricsAdvisor.Models.DimensionKey dimensionKey = null, System.DateTimeOffset? startsOn = default(System.DateTimeOffset?), System.DateTimeOffset? endsOn = default(System.DateTimeOffset?), string comment = null) { throw null; } + public static Azure.AI.MetricsAdvisor.Models.MetricEnrichedSeriesData MetricEnrichedSeriesData(Azure.AI.MetricsAdvisor.Models.DimensionKey seriesKey = null, System.Collections.Generic.IEnumerable timestamps = null, System.Collections.Generic.IEnumerable metricValues = null, System.Collections.Generic.IEnumerable isAnomaly = null, System.Collections.Generic.IEnumerable periods = null, System.Collections.Generic.IEnumerable expectedMetricValues = null, System.Collections.Generic.IEnumerable lowerBoundaryValues = null, System.Collections.Generic.IEnumerable upperBoundaryValues = null) { throw null; } + public static Azure.AI.MetricsAdvisor.MetricPeriodFeedback MetricPeriodFeedback(string id = null, System.DateTimeOffset? createdOn = default(System.DateTimeOffset?), string userPrincipal = null, string metricId = null, Azure.AI.MetricsAdvisor.Models.DimensionKey dimensionKey = null, Azure.AI.MetricsAdvisor.Models.MetricPeriodType periodType = default(Azure.AI.MetricsAdvisor.Models.MetricPeriodType), int periodValue = 0) { throw null; } + public static Azure.AI.MetricsAdvisor.Models.MetricSeriesData MetricSeriesData(string metricId = null, Azure.AI.MetricsAdvisor.Models.DimensionKey seriesKey = null, System.Collections.Generic.IEnumerable timestamps = null, System.Collections.Generic.IEnumerable metricValues = null) { throw null; } + public static Azure.AI.MetricsAdvisor.Models.MetricSeriesDefinition MetricSeriesDefinition(string metricId = null, Azure.AI.MetricsAdvisor.Models.DimensionKey seriesKey = null) { throw null; } + public static Azure.AI.MetricsAdvisor.Administration.ServicePrincipalCredentialEntity ServicePrincipalCredentialEntity(string id = null, string name = null, string description = null, string clientId = null, string clientSecret = null, string tenantId = null) { throw null; } + public static Azure.AI.MetricsAdvisor.Administration.ServicePrincipalInKeyVaultCredentialEntity ServicePrincipalInKeyVaultCredentialEntity(string id = null, string name = null, string description = null, System.Uri endpoint = null, string keyVaultClientId = null, string keyVaultClientSecret = null, string secretNameForClientId = null, string secretNameForClientSecret = null, string tenantId = null) { throw null; } + public static Azure.AI.MetricsAdvisor.Administration.SqlConnectionStringCredentialEntity SqlConnectionStringCredentialEntity(string id = null, string name = null, string description = null, string connectionString = null) { throw null; } + public static Azure.AI.MetricsAdvisor.Models.TopNGroupScope TopNGroupScope(int top = 0, int period = 0, int minimumTopCount = 0) { throw null; } + public static Azure.AI.MetricsAdvisor.Administration.WebNotificationHook WebNotificationHook(string id = null, string name = null, string description = null, System.Uri externalUri = null, System.Collections.Generic.IEnumerable administrators = null, System.Uri endpoint = null, string username = null, string password = null, System.Collections.Generic.IDictionary headers = null, string certificateKey = null, string certificatePassword = null) { throw null; } + } public partial class MetricSeriesData { internal MetricSeriesData() { } diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/Azure.AI.MetricsAdvisor.csproj b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/Azure.AI.MetricsAdvisor.csproj index 980492027873e..ba14c48c7c479 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/Azure.AI.MetricsAdvisor.csproj +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/Azure.AI.MetricsAdvisor.csproj @@ -2,9 +2,9 @@ This is the Microsoft Azure Cognitive Services Metrics Advisor client library Microsoft Azure.AI.MetricsAdvisor client library - 1.1.0-beta.1 + 1.2.0-beta.1 - 1.0.0 + 1.1.0 Microsoft Azure Metrics Advisor $(RequiredTargetFrameworks) diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/MetricsAdvisorModelFactory.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/MetricsAdvisorModelFactory.cs new file mode 100644 index 0000000000000..efc0a02dd8bc7 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/MetricsAdvisorModelFactory.cs @@ -0,0 +1,477 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Linq; +using Azure.AI.MetricsAdvisor.Administration; + +namespace Azure.AI.MetricsAdvisor.Models +{ + /// + /// A factory that builds Azure.AI.MetricsAdvisor and Azure.AI.MetricsAdvisor.Administration + /// model types used for mocking. + /// + public static class MetricsAdvisorModelFactory + { + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static AnomalyAlert AnomalyAlert(string id = null, DateTimeOffset timestamp = default, DateTimeOffset createdOn = default, DateTimeOffset lastModified = default) + { + return new AnomalyAlert(id, timestamp, createdOn, lastModified); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static AnomalyAlertConfiguration AnomalyAlertConfiguration(string id = null, string name = null, string description = null, MetricAlertConfigurationsOperator? crossMetricsOperator = null, IEnumerable dimensionsToSplitAlert = null, IEnumerable idsOfHooksToAlert = null, IEnumerable metricAlertConfigurations = null) + { + dimensionsToSplitAlert ??= new List(); + idsOfHooksToAlert ??= new List(); + metricAlertConfigurations ??= new List(); + + return new AnomalyAlertConfiguration(id, name, description, crossMetricsOperator, dimensionsToSplitAlert?.ToList(), idsOfHooksToAlert?.ToList(), metricAlertConfigurations?.ToList()); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static AnomalyDetectionConfiguration AnomalyDetectionConfiguration(string id = null, string name = null, string description = null, string metricId = null, MetricWholeSeriesDetectionCondition wholeSeriesDetectionConditions = null, IEnumerable seriesGroupDetectionConditions = null, IEnumerable seriesDetectionConditions = null) + { + seriesGroupDetectionConditions ??= new List(); + seriesDetectionConditions ??= new List(); + + return new AnomalyDetectionConfiguration(id, name, description, metricId, wholeSeriesDetectionConditions, seriesGroupDetectionConditions?.ToList(), seriesDetectionConditions?.ToList()); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static AnomalyIncident AnomalyIncident(string dataFeedId = null, string metricId = null, string detectionConfigurationId = null, string id = null, DateTimeOffset startedOn = default, DateTimeOffset lastDetectedOn = default, DimensionKey rootSeriesKey = null, AnomalySeverity severity = default, AnomalyIncidentStatus status = default, double valueOfRootNode = default, double? expectedValueOfRootNode = null) + { + Dictionary dimensions = rootSeriesKey?.ToDictionary(key => key.Key, key => key.Value); + IncidentProperty incidentProperty = new IncidentProperty(severity, status, valueOfRootNode, expectedValueOfRootNode); + + return new AnomalyIncident(dataFeedId, metricId, detectionConfigurationId, id, startedOn, lastDetectedOn, new SeriesIdentity(dimensions), incidentProperty); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static DataFeed DataFeed(string id = null, DataFeedStatus? status = null, DateTimeOffset? createdOn = null, string creator = null, bool? isAdministrator = null, IReadOnlyDictionary metricIds = null, string name = null, DataFeedSource dataSource = null, DataFeedSchema schema = null, DataFeedGranularity granularity = null, DataFeedIngestionSettings ingestionSettings = null, string description = null, string actionLinkTemplate = null, DataFeedAccessMode? accessMode = null, DataFeedRollupSettings rollupSettings = null, DataFeedMissingDataPointFillSettings missingDataPointFillSettings = null, IEnumerable administrators = null, IEnumerable viewers = null) + { + metricIds = metricIds ?? new Dictionary(); + administrators = administrators ?? new List(); + viewers = viewers ?? new List(); + + return new DataFeed(id, status, createdOn, creator, isAdministrator, metricIds, name, dataSource, schema, granularity, ingestionSettings, description, actionLinkTemplate, accessMode, rollupSettings, missingDataPointFillSettings, administrators.ToList(), viewers.ToList()); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static DataFeedIngestionProgress DataFeedIngestionProgress(DateTimeOffset? latestSuccessTimestamp = null, DateTimeOffset? latestActiveTimestamp = null) + { + return new DataFeedIngestionProgress(latestSuccessTimestamp, latestActiveTimestamp); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static DataFeedIngestionStatus DataFeedIngestionStatus(DateTimeOffset timestamp = default, IngestionStatusType status = default, string message = null) + { + return new DataFeedIngestionStatus(timestamp, status, message); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static DataFeedMetric DataFeedMetric(string id = null, string name = null, string displayName = null, string description = null) + { + return new DataFeedMetric(id, name, displayName, description); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the account key. This secret is not exposed in a property. + /// A new instance of for mocking purposes. + public static DataLakeSharedKeyCredentialEntity DataLakeSharedKeyCredentialEntity(string id = null, string name = null, string description = null, string accountKey = null) + { + DataLakeGen2SharedKeyParam parameters = new DataLakeGen2SharedKeyParam(accountKey); + + return new DataLakeSharedKeyCredentialEntity(DataSourceCredentialKind.DataLakeSharedKey, id, name, description, parameters); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static DataPointAnomaly DataPointAnomaly(string dataFeedId = null, string metricId = null, string detectionConfigurationId = null, DateTimeOffset timestamp = default, DateTimeOffset? createdOn = null, DateTimeOffset? lastModified = null, DimensionKey seriesKey = null, AnomalySeverity severity = default, AnomalyStatus? status = null, double value = default, double? expectedValue = null) + { + Dictionary dimensions = seriesKey?.ToDictionary(key => key.Key, key => key.Value); + AnomalyProperty anomalyProperty = new AnomalyProperty(severity, status, value, expectedValue); + + return new DataPointAnomaly(dataFeedId, metricId, detectionConfigurationId, timestamp, createdOn, lastModified, dimensions, anomalyProperty); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static EmailNotificationHook EmailNotificationHook(string id = null, string name = null, string description = null, Uri externalUri = null, IEnumerable administrators = null, IEnumerable emailsToAlert = null) + { + administrators ??= new List(); + emailsToAlert ??= new List(); + + EmailHookParameter parameter = new EmailHookParameter(emailsToAlert.ToList()); + + return new EmailNotificationHook(NotificationHookKind.Email, id, name, description, externalUri?.AbsoluteUri, administrators.ToList(), parameter); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static EnrichmentStatus EnrichmentStatus(DateTimeOffset timestamp = default, string status = null, string message = null) + { + return new EnrichmentStatus(timestamp, status, message); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static IncidentRootCause IncidentRootCause(DimensionKey seriesKey = null, IEnumerable paths = null, double contributionScore = default, string description = null) + { + paths ??= new List(); + + return new IncidentRootCause(seriesKey, paths, contributionScore, description); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static MetricAnomalyFeedback MetricAnomalyFeedback(string id = null, DateTimeOffset? createdOn = null, string userPrincipal = null, string metricId = null, DimensionKey dimensionKey = null, DateTimeOffset startsOn = default, DateTimeOffset endsOn = default, AnomalyValue anomalyValue = default, string detectionConfigurationId = null, AnomalyDetectionConfiguration detectionConfigurationSnapshot = null) + { + Dictionary dimensions = dimensionKey?.ToDictionary(key => key.Key, key => key.Value); + FeedbackFilter filter = new FeedbackFilter(dimensions); + AnomalyFeedbackValue feedbackValue = new AnomalyFeedbackValue(anomalyValue); + + return new MetricAnomalyFeedback(MetricFeedbackKind.Anomaly, id, createdOn, userPrincipal, metricId, filter, startsOn, endsOn, feedbackValue, detectionConfigurationId, detectionConfigurationSnapshot); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static MetricChangePointFeedback MetricChangePointFeedback(string id = null, DateTimeOffset? createdOn = null, string userPrincipal = null, string metricId = null, DimensionKey dimensionKey = null, DateTimeOffset startsOn = default, DateTimeOffset endsOn = default, ChangePointValue changePointValue = default) + { + Dictionary dimensions = dimensionKey?.ToDictionary(key => key.Key, key => key.Value); + FeedbackFilter filter = new FeedbackFilter(dimensions); + ChangePointFeedbackValue feedbackValue = new ChangePointFeedbackValue(changePointValue); + + return new MetricChangePointFeedback(MetricFeedbackKind.ChangePoint, id, createdOn, userPrincipal, metricId, filter, startsOn, endsOn, feedbackValue); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static MetricCommentFeedback MetricCommentFeedback(string id = null, DateTimeOffset? createdOn = null, string userPrincipal = null, string metricId = null, DimensionKey dimensionKey = null, DateTimeOffset? startsOn = null, DateTimeOffset? endsOn = null, string comment = null) + { + Dictionary dimensions = dimensionKey?.ToDictionary(key => key.Key, key => key.Value); + FeedbackFilter filter = new FeedbackFilter(dimensions); + CommentFeedbackValue feedbackValue = new CommentFeedbackValue(comment); + + return new MetricCommentFeedback(MetricFeedbackKind.Comment, id, createdOn, userPrincipal, metricId, filter, startsOn, endsOn, feedbackValue); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static MetricEnrichedSeriesData MetricEnrichedSeriesData(DimensionKey seriesKey = null, IEnumerable timestamps = null, IEnumerable metricValues = null, IEnumerable isAnomaly = null, IEnumerable periods = null, IEnumerable expectedMetricValues = null, IEnumerable lowerBoundaryValues = null, IEnumerable upperBoundaryValues = null) + { + timestamps ??= new List(); + metricValues ??= new List(); + isAnomaly ??= new List(); + periods ??= new List(); + expectedMetricValues ??= new List(); + lowerBoundaryValues ??= new List(); + upperBoundaryValues ??= new List(); + + Dictionary dimensions = seriesKey?.ToDictionary(key => key.Key, key => key.Value); + + return new MetricEnrichedSeriesData(new SeriesIdentity(dimensions), timestamps?.ToList(), metricValues?.ToList(), isAnomaly?.ToList(), periods?.ToList(), expectedMetricValues?.ToList(), lowerBoundaryValues?.ToList(), upperBoundaryValues?.ToList()); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static MetricPeriodFeedback MetricPeriodFeedback(string id = null, DateTimeOffset? createdOn = null, string userPrincipal = null, string metricId = null, DimensionKey dimensionKey = null, MetricPeriodType periodType = default, int periodValue = default) + { + Dictionary dimensions = dimensionKey?.ToDictionary(key => key.Key, key => key.Value); + FeedbackFilter filter = new FeedbackFilter(dimensions); + PeriodFeedbackValue feedbackValue = new PeriodFeedbackValue(periodType, periodValue); + + return new MetricPeriodFeedback(MetricFeedbackKind.Period, id, createdOn, userPrincipal, metricId, filter, feedbackValue); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static MetricSeriesData MetricSeriesData(string metricId = null, DimensionKey seriesKey = null, IEnumerable timestamps = null, IEnumerable metricValues = null) + { + timestamps ??= new List(); + metricValues ??= new List(); + + Dictionary dimensions = seriesKey?.ToDictionary(key => key.Key, key => key.Value); + MetricSeriesDefinition definition = new MetricSeriesDefinition(metricId, dimensions); + + return new MetricSeriesData(definition, timestamps?.ToList(), metricValues?.ToList()); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static MetricSeriesDefinition MetricSeriesDefinition(string metricId = null, DimensionKey seriesKey = null) + { + Dictionary dimensions = seriesKey?.ToDictionary(key => key.Key, key => key.Value); + + return new MetricSeriesDefinition(metricId, dimensions); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the client secret. This secret is not exposed in a property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static ServicePrincipalCredentialEntity ServicePrincipalCredentialEntity(string id = null, string name = null, string description = null, string clientId = null, string clientSecret = null, string tenantId = null) + { + ServicePrincipalParam parameters = new ServicePrincipalParam(clientId, clientSecret, tenantId); + + return new ServicePrincipalCredentialEntity(DataSourceCredentialKind.ServicePrincipal, id, name, description, parameters); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the Key Vault client secret. This secret is not exposed in a property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static ServicePrincipalInKeyVaultCredentialEntity ServicePrincipalInKeyVaultCredentialEntity(string id = null, string name = null, string description = null, Uri endpoint = null, string keyVaultClientId = null, string keyVaultClientSecret = null, string secretNameForClientId = null, string secretNameForClientSecret = null, string tenantId = null) + { + ServicePrincipalInKVParam parameters = new ServicePrincipalInKVParam(endpoint?.AbsoluteUri, keyVaultClientId, keyVaultClientSecret, secretNameForClientId, secretNameForClientSecret, tenantId); + + return new ServicePrincipalInKeyVaultCredentialEntity(DataSourceCredentialKind.ServicePrincipalInKeyVault, id, name, description, parameters); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the connection string. This secret is not exposed in a property. + /// A new instance of for mocking purposes. + public static SqlConnectionStringCredentialEntity SqlConnectionStringCredentialEntity(string id = null, string name = null, string description = null, string connectionString = null) + { + AzureSQLConnectionStringParam parameters = new AzureSQLConnectionStringParam(connectionString); + + return new SqlConnectionStringCredentialEntity(DataSourceCredentialKind.SqlConnectionString, id, name, description, parameters); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static TopNGroupScope TopNGroupScope(int top = default, int period = default, int minimumTopCount = default) + { + return new TopNGroupScope(top, period, minimumTopCount); + } + + /// + /// Initializes a new instance of for mocking purposes. + /// + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// Sets the property. + /// A new instance of for mocking purposes. + public static WebNotificationHook WebNotificationHook(string id = null, string name = null, string description = null, Uri externalUri = null, IEnumerable administrators = null, Uri endpoint = null, string username = null, string password = null, IDictionary headers = null, string certificateKey = null, string certificatePassword = null) + { + administrators ??= new List(); + headers ??= new Dictionary(); + + WebhookHookParameter parameter = new WebhookHookParameter(endpoint?.AbsoluteUri, username, password, headers, certificateKey, certificatePassword); + + return new WebNotificationHook(NotificationHookKind.Webhook, id, name, description, externalUri?.AbsoluteUri, administrators.ToList(), parameter); + } + } +} diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/Models/DataFeed/DataFeed.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/Models/DataFeed/DataFeed.cs index d3a1367f4e1bc..72fea11fee9ef 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/Models/DataFeed/DataFeed.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/Models/DataFeed/DataFeed.cs @@ -53,6 +53,36 @@ internal DataFeed(DataFeedDetail dataFeedDetail) Viewers = dataFeedDetail.Viewers; } + /// + /// Initializes a new instance of the class for mocking + /// purposes. + /// + internal DataFeed(string id, DataFeedStatus? status, DateTimeOffset? createdOn, string creator, bool? isAdministrator, + IReadOnlyDictionary metricIds, string name, DataFeedSource dataSource, DataFeedSchema schema, + DataFeedGranularity granularity, DataFeedIngestionSettings ingestionSettings, string description, string actionLinkTemplate, + DataFeedAccessMode? accessMode, DataFeedRollupSettings rollupSettings, DataFeedMissingDataPointFillSettings missingDataPointFillSettings, + IList administrators, IList viewers) + { + Id = id; + Status = status; + CreatedOn = createdOn; + Creator = creator; + IsAdministrator = isAdministrator; + MetricIds = metricIds; + Name = name; + DataSource = dataSource; + Schema = schema; + Granularity = granularity; + IngestionSettings = ingestionSettings; + Description = description; + ActionLinkTemplate = actionLinkTemplate; + AccessMode = accessMode; + RollupSettings = rollupSettings; + MissingDataPointFillSettings = missingDataPointFillSettings; + Administrators = administrators; + Viewers = viewers; + } + /// /// The unique identifier of this . /// diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorLiveTestBase.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorLiveTestBase.cs index c8d4d1f37abcb..08c9675235c5c 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorLiveTestBase.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/MetricsAdvisorLiveTestBase.cs @@ -42,6 +42,12 @@ public MetricsAdvisorLiveTestBase(bool isAsync) : base(isAsync) public MetricsAdvisorAdministrationClient GetMetricsAdvisorAdministrationClient(bool useTokenCredential = false) { + // TODO: remove 'if' block when (https://github.com/Azure/azure-sdk-for-net/issues/23268) is solved + if (useTokenCredential) + { + Assert.Ignore(); + } + var endpoint = new Uri(TestEnvironment.MetricsAdvisorUri); var instrumentedOptions = GetInstrumentedOptions(); @@ -54,6 +60,12 @@ public MetricsAdvisorAdministrationClient GetMetricsAdvisorAdministrationClient( public MetricsAdvisorClient GetMetricsAdvisorClient(bool useTokenCredential = false) { + // TODO: remove 'if' block when (https://github.com/Azure/azure-sdk-for-net/issues/23268) is solved + if (useTokenCredential) + { + Assert.Ignore(); + } + var endpoint = new Uri(TestEnvironment.MetricsAdvisorUri); var instrumentedOptions = GetInstrumentedOptions(); diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/Models/MetricsAdvisorModelFactoryTests.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/Models/MetricsAdvisorModelFactoryTests.cs new file mode 100644 index 0000000000000..5cea7a154d818 --- /dev/null +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/tests/Models/MetricsAdvisorModelFactoryTests.cs @@ -0,0 +1,591 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using Azure.AI.MetricsAdvisor.Administration; +using Azure.AI.MetricsAdvisor.Models; +using NUnit.Framework; + +namespace Azure.AI.MetricsAdvisor.Tests +{ + /// + /// The suite of tests for the class. + /// + public class MetricsAdvisorModelFactoryTests + { + private readonly DimensionKey SampleDimensionKey = new DimensionKey(new Dictionary() + { + { "key1", "value1" }, + { "key2", "value2" } + }); + + [Test] + public void AnomalyAlert() + { + var id = "id"; + var timestamp = DateTimeOffset.Parse("2021-01-01T00:00:00Z"); + var createdOn = DateTimeOffset.Parse("2021-02-02T00:00:00Z"); + var lastModified = DateTimeOffset.Parse("2021-03-03T00:00:00Z"); + + var anomalyAlert = MetricsAdvisorModelFactory.AnomalyAlert(id, timestamp, createdOn, lastModified); + + Assert.That(anomalyAlert.Id, Is.EqualTo(id)); + Assert.That(anomalyAlert.Timestamp, Is.EqualTo(timestamp)); + Assert.That(anomalyAlert.CreatedOn, Is.EqualTo(createdOn)); + Assert.That(anomalyAlert.LastModified, Is.EqualTo(lastModified)); + } + + [Test] + public void AnomalyAlertConfiguration() + { + var id = "id"; + var name = "name"; + var description = "description"; + var crossMetricsOperator = MetricAlertConfigurationsOperator.Xor; + var dimensionsToSplitAlert = new List() { "dimension1", "dimension2" }; + var idsOfHooksToAlert = new List() { "hookId1", "hookId2" }; + var metricAlertConfigurations = new List() + { + new MetricAlertConfiguration("detectionConfigId1", MetricAnomalyAlertScope.CreateScopeForWholeSeries()), + new MetricAlertConfiguration("detectionConfigId2", MetricAnomalyAlertScope.CreateScopeForWholeSeries()) + }; + + var anomalyAlertConfiguration = MetricsAdvisorModelFactory.AnomalyAlertConfiguration(id, name, description, crossMetricsOperator, + dimensionsToSplitAlert, idsOfHooksToAlert, metricAlertConfigurations); + + Assert.That(anomalyAlertConfiguration.Id, Is.EqualTo(id)); + Assert.That(anomalyAlertConfiguration.Name, Is.EqualTo(name)); + Assert.That(anomalyAlertConfiguration.Description, Is.EqualTo(description)); + Assert.That(anomalyAlertConfiguration.CrossMetricsOperator, Is.EqualTo(crossMetricsOperator)); + Assert.That(anomalyAlertConfiguration.DimensionsToSplitAlert, Is.EqualTo(dimensionsToSplitAlert)); + Assert.That(anomalyAlertConfiguration.IdsOfHooksToAlert, Is.EqualTo(idsOfHooksToAlert)); + Assert.That(anomalyAlertConfiguration.MetricAlertConfigurations, Is.EqualTo(metricAlertConfigurations)); + } + + [Test] + public void AnomalyDetectionConfiguration() + { + var id = "id"; + var name = "name"; + var description = "description"; + var metricId = "metricId"; + var wholeSeriesDetectionConditions = new MetricWholeSeriesDetectionCondition(); + var seriesGroupDetectionConditions = new List() + { + new MetricSeriesGroupDetectionCondition(SampleDimensionKey), + new MetricSeriesGroupDetectionCondition(SampleDimensionKey) + }; + var seriesDetectionConditions = new List() + { + new MetricSingleSeriesDetectionCondition(SampleDimensionKey), + new MetricSingleSeriesDetectionCondition(SampleDimensionKey) + }; + + var anomalyDetectionConfiguration = MetricsAdvisorModelFactory.AnomalyDetectionConfiguration(id, name, description, metricId, + wholeSeriesDetectionConditions, seriesGroupDetectionConditions, seriesDetectionConditions); + + Assert.That(anomalyDetectionConfiguration.Id, Is.EqualTo(id)); + Assert.That(anomalyDetectionConfiguration.Name, Is.EqualTo(name)); + Assert.That(anomalyDetectionConfiguration.Description, Is.EqualTo(description)); + Assert.That(anomalyDetectionConfiguration.MetricId, Is.EqualTo(metricId)); + Assert.That(anomalyDetectionConfiguration.WholeSeriesDetectionConditions, Is.EqualTo(wholeSeriesDetectionConditions)); + Assert.That(anomalyDetectionConfiguration.SeriesGroupDetectionConditions, Is.EqualTo(seriesGroupDetectionConditions)); + Assert.That(anomalyDetectionConfiguration.SeriesDetectionConditions, Is.EqualTo(seriesDetectionConditions)); + } + + [Test] + public void AnomalyIncident() + { + var dataFeedId = "dataFeedId"; + var metricId = "metricId"; + var detectionConfigurationId = "detectionConfigurationId"; + var id = "id"; + var startedOn = DateTimeOffset.Parse("2021-01-01T00:00:00Z"); + var lastDetectedOn = DateTimeOffset.Parse("2021-02-02T00:00:00Z"); + var rootSeriesKey = SampleDimensionKey; + var severity = AnomalySeverity.High; + var status = AnomalyIncidentStatus.Resolved; + var valueOfRootNode = 10.0; + var expectedValueOfRootNode = 20.0; + + var anomalyIncident = MetricsAdvisorModelFactory.AnomalyIncident(dataFeedId, metricId, detectionConfigurationId, + id, startedOn, lastDetectedOn, rootSeriesKey, severity, status, valueOfRootNode, expectedValueOfRootNode); + + Assert.That(anomalyIncident.DataFeedId, Is.EqualTo(dataFeedId)); + Assert.That(anomalyIncident.MetricId, Is.EqualTo(metricId)); + Assert.That(anomalyIncident.DetectionConfigurationId, Is.EqualTo(detectionConfigurationId)); + Assert.That(anomalyIncident.Id, Is.EqualTo(id)); + Assert.That(anomalyIncident.StartedOn, Is.EqualTo(startedOn)); + Assert.That(anomalyIncident.LastDetectedOn, Is.EqualTo(lastDetectedOn)); + Assert.That(anomalyIncident.RootSeriesKey, Is.EqualTo(rootSeriesKey)); + Assert.That(anomalyIncident.Severity, Is.EqualTo(severity)); + Assert.That(anomalyIncident.Status, Is.EqualTo(status)); + Assert.That(anomalyIncident.ValueOfRootNode, Is.EqualTo(valueOfRootNode)); + Assert.That(anomalyIncident.ExpectedValueOfRootNode, Is.EqualTo(expectedValueOfRootNode)); + } + + [Test] + public void DataFeed() + { + var id = "id"; + var status = DataFeedStatus.Paused; + var createdOn = DateTimeOffset.Parse("2021-01-01T00:00:00Z"); + var creator = "creator"; + var isAdministrator = true; + var metricIds = new Dictionary() + { + { "key1", "value1" }, + { "key2", "value2" } + }; + var name = "name"; + var dataSource = new SqlServerDataFeedSource("query"); + var schema = new DataFeedSchema(); + var granularity = new DataFeedGranularity(DataFeedGranularityType.Daily); + var ingestionSettings = new DataFeedIngestionSettings(DateTimeOffset.UtcNow); + var description = "description"; + var actionLinkTemplate = "actionLinkTemplate"; + var accessMode = DataFeedAccessMode.Public; + var rollupSettings = new DataFeedRollupSettings(); + var missingDataPointFillSettings = new DataFeedMissingDataPointFillSettings(DataFeedMissingDataPointFillType.PreviousValue); + var administrators = new List() { "admin1", "admin2" }; + var viewers = new List() { "viewer1", "viewer2" }; + + var dataFeed = MetricsAdvisorModelFactory.DataFeed(id, status, createdOn, creator, isAdministrator, metricIds, name, dataSource, + schema, granularity, ingestionSettings, description, actionLinkTemplate, accessMode, rollupSettings, missingDataPointFillSettings, + administrators, viewers); + + Assert.That(dataFeed.Id, Is.EqualTo(id)); + Assert.That(dataFeed.Status, Is.EqualTo(status)); + Assert.That(dataFeed.CreatedOn, Is.EqualTo(createdOn)); + Assert.That(dataFeed.Creator, Is.EqualTo(creator)); + Assert.That(dataFeed.IsAdministrator, Is.EqualTo(isAdministrator)); + Assert.That(dataFeed.MetricIds, Is.EqualTo(metricIds)); + Assert.That(dataFeed.Name, Is.EqualTo(name)); + Assert.That(dataFeed.DataSource, Is.EqualTo(dataSource)); + Assert.That(dataFeed.Schema, Is.EqualTo(schema)); + Assert.That(dataFeed.Granularity, Is.EqualTo(granularity)); + Assert.That(dataFeed.IngestionSettings, Is.EqualTo(ingestionSettings)); + Assert.That(dataFeed.Description, Is.EqualTo(description)); + Assert.That(dataFeed.ActionLinkTemplate, Is.EqualTo(actionLinkTemplate)); + Assert.That(dataFeed.AccessMode, Is.EqualTo(accessMode)); + Assert.That(dataFeed.RollupSettings, Is.EqualTo(rollupSettings)); + Assert.That(dataFeed.MissingDataPointFillSettings, Is.EqualTo(missingDataPointFillSettings)); + Assert.That(dataFeed.Administrators, Is.EqualTo(administrators)); + Assert.That(dataFeed.Viewers, Is.EqualTo(viewers)); + } + + [Test] + public void DataFeedIngestionProgress() + { + var latestSuccessTimestamp = DateTimeOffset.Parse("2021-01-01T00:00:00Z"); + var latestActiveTimestamp = DateTimeOffset.Parse("2021-02-02T00:00:00Z"); + + var dataFeedIngestionProgress = MetricsAdvisorModelFactory.DataFeedIngestionProgress(latestSuccessTimestamp, latestActiveTimestamp); + + Assert.That(dataFeedIngestionProgress.LatestSuccessTimestamp, Is.EqualTo(latestSuccessTimestamp)); + Assert.That(dataFeedIngestionProgress.LatestActiveTimestamp, Is.EqualTo(latestActiveTimestamp)); + } + + [Test] + public void DataFeedIngestionStatus() + { + var timestamp = DateTimeOffset.Parse("2021-01-01T00:00:00Z"); + var status = IngestionStatusType.Paused; + var message = "message"; + + var dataFeedIngestionStatus = MetricsAdvisorModelFactory.DataFeedIngestionStatus(timestamp, status, message); + + Assert.That(dataFeedIngestionStatus.Timestamp, Is.EqualTo(timestamp)); + Assert.That(dataFeedIngestionStatus.Status, Is.EqualTo(status)); + Assert.That(dataFeedIngestionStatus.Message, Is.EqualTo(message)); + } + + [Test] + public void DataFeedMetric() + { + var id = "id"; + var name = "name"; + var displayName = "displayName"; + var description = "description"; + + var dataFeedMetric = MetricsAdvisorModelFactory.DataFeedMetric(id, name, displayName, description); + + Assert.That(dataFeedMetric.Id, Is.EqualTo(id)); + Assert.That(dataFeedMetric.Name, Is.EqualTo(name)); + Assert.That(dataFeedMetric.DisplayName, Is.EqualTo(displayName)); + Assert.That(dataFeedMetric.Description, Is.EqualTo(description)); + } + + [Test] + public void DataLakeSharedKeyCredentialEntity() + { + var id = "id"; + var name = "name"; + var description = "displayName"; + var accountKey = "accountKey"; + + var credentialEntity = MetricsAdvisorModelFactory.DataLakeSharedKeyCredentialEntity(id, name, description, accountKey); + + Assert.That(credentialEntity.Id, Is.EqualTo(id)); + Assert.That(credentialEntity.Name, Is.EqualTo(name)); + Assert.That(credentialEntity.Description, Is.EqualTo(description)); + Assert.That(credentialEntity.AccountKey, Is.EqualTo(accountKey)); // Validation of internal property + } + + [Test] + public void DataPointAnomaly() + { + var dataFeedId = "dataFeedId"; + var metricId = "metricId"; + var detectionConfigurationId = "detectionConfigurationId"; + var timestamp = DateTimeOffset.Parse("2021-01-01T00:00:00Z"); + var createdOn = DateTimeOffset.Parse("2021-02-02T00:00:00Z"); + var lastModified = DateTimeOffset.Parse("2021-03-03T00:00:00Z"); + var seriesKey = SampleDimensionKey; + var severity = AnomalySeverity.High; + var status = AnomalyStatus.Resolved; + var value = 10.0; + var expectedValue = 20.0; + + var dataPointAnomaly = MetricsAdvisorModelFactory.DataPointAnomaly(dataFeedId, metricId, detectionConfigurationId, + timestamp, createdOn, lastModified, seriesKey, severity, status, value, expectedValue); + + Assert.That(dataPointAnomaly.DataFeedId, Is.EqualTo(dataFeedId)); + Assert.That(dataPointAnomaly.MetricId, Is.EqualTo(metricId)); + Assert.That(dataPointAnomaly.DetectionConfigurationId, Is.EqualTo(detectionConfigurationId)); + Assert.That(dataPointAnomaly.Timestamp, Is.EqualTo(timestamp)); + Assert.That(dataPointAnomaly.CreatedOn, Is.EqualTo(createdOn)); + Assert.That(dataPointAnomaly.LastModified, Is.EqualTo(lastModified)); + Assert.That(dataPointAnomaly.SeriesKey, Is.EqualTo(seriesKey)); + Assert.That(dataPointAnomaly.Severity, Is.EqualTo(severity)); + Assert.That(dataPointAnomaly.Status, Is.EqualTo(status)); + Assert.That(dataPointAnomaly.Value, Is.EqualTo(value)); + Assert.That(dataPointAnomaly.ExpectedValue, Is.EqualTo(expectedValue)); + } + + [Test] + public void EmailNotificationHook() + { + var id = "id"; + var name = "name"; + var description = "description"; + var externalUri = new Uri("https://fake.endpoint.com/"); + var administrators = new List() { "admin1", "admin2" }; + var emailsToAlert = new List() { "fake1@email.com", "fake2@email.com" }; + + var hook = MetricsAdvisorModelFactory.EmailNotificationHook(id, name, description, externalUri, administrators, emailsToAlert); + + Assert.That(hook.Id, Is.EqualTo(id)); + Assert.That(hook.Name, Is.EqualTo(name)); + Assert.That(hook.Description, Is.EqualTo(description)); + Assert.That(hook.ExternalUri, Is.EqualTo(externalUri)); + Assert.That(hook.Administrators, Is.EqualTo(administrators)); + Assert.That(hook.EmailsToAlert, Is.EqualTo(emailsToAlert)); + } + + [Test] + public void EnrichmentStatus() + { + var timestamp = DateTimeOffset.Parse("2021-01-01T00:00:00Z"); + var status = "status"; + var message = "message"; + + var enrichmentStatus = MetricsAdvisorModelFactory.EnrichmentStatus(timestamp, status, message); + + Assert.That(enrichmentStatus.Timestamp, Is.EqualTo(timestamp)); + Assert.That(enrichmentStatus.Status, Is.EqualTo(status)); + Assert.That(enrichmentStatus.Message, Is.EqualTo(message)); + } + + [Test] + public void IncidentRootCause() + { + var seriesKey = SampleDimensionKey; + var paths = new List() { "dimension1", "dimension2" }; + var contributionScore = 0.5; + var description = "description"; + + var incidentRootCause = MetricsAdvisorModelFactory.IncidentRootCause(seriesKey, paths, contributionScore, description); + + Assert.That(incidentRootCause.SeriesKey, Is.EqualTo(seriesKey)); + Assert.That(incidentRootCause.Paths, Is.EqualTo(paths)); + Assert.That(incidentRootCause.ContributionScore, Is.EqualTo(contributionScore)); + Assert.That(incidentRootCause.Description, Is.EqualTo(description)); + } + + [Test] + public void MetricAnomalyFeedback() + { + var id = "id"; + var createdOn = DateTimeOffset.Parse("2021-01-01T00:00:00Z"); + var userPrincipal = "userPrincipal"; + var metricId = "metricId"; + var dimensionKey = SampleDimensionKey; + var startsOn = DateTimeOffset.Parse("2021-02-02T00:00:00Z"); + var endsOn = DateTimeOffset.Parse("2021-03-03T00:00:00Z"); + var anomalyValue = AnomalyValue.AutoDetect; + var detectionConfigurationId = "id3"; + var detectionConfigurationSnapshot = MetricsAdvisorModelFactory.AnomalyDetectionConfiguration(); + + var feedback = MetricsAdvisorModelFactory.MetricAnomalyFeedback(id, createdOn, userPrincipal, metricId, dimensionKey, startsOn, + endsOn, anomalyValue, detectionConfigurationId, detectionConfigurationSnapshot); + + Assert.That(feedback.Id, Is.EqualTo(id)); + Assert.That(feedback.CreatedOn, Is.EqualTo(createdOn)); + Assert.That(feedback.UserPrincipal, Is.EqualTo(userPrincipal)); + Assert.That(feedback.MetricId, Is.EqualTo(metricId)); + Assert.That(feedback.DimensionKey, Is.EqualTo(dimensionKey)); + Assert.That(feedback.StartsOn, Is.EqualTo(startsOn)); + Assert.That(feedback.EndsOn, Is.EqualTo(endsOn)); + Assert.That(feedback.AnomalyValue, Is.EqualTo(anomalyValue)); + Assert.That(feedback.DetectionConfigurationId, Is.EqualTo(detectionConfigurationId)); + Assert.That(feedback.DetectionConfigurationSnapshot, Is.EqualTo(detectionConfigurationSnapshot)); + } + + [Test] + public void MetricChangePointFeedback() + { + var id = "id"; + var createdOn = DateTimeOffset.Parse("2021-01-01T00:00:00Z"); + var userPrincipal = "userPrincipal"; + var metricId = "metricId"; + var dimensionKey = SampleDimensionKey; + var startsOn = DateTimeOffset.Parse("2021-02-02T00:00:00Z"); + var endsOn = DateTimeOffset.Parse("2021-03-03T00:00:00Z"); + var changePointValue = ChangePointValue.AutoDetect; + + var feedback = MetricsAdvisorModelFactory.MetricChangePointFeedback(id, createdOn, userPrincipal, metricId, dimensionKey, startsOn, + endsOn, changePointValue); + + Assert.That(feedback.Id, Is.EqualTo(id)); + Assert.That(feedback.CreatedOn, Is.EqualTo(createdOn)); + Assert.That(feedback.UserPrincipal, Is.EqualTo(userPrincipal)); + Assert.That(feedback.MetricId, Is.EqualTo(metricId)); + Assert.That(feedback.DimensionKey, Is.EqualTo(dimensionKey)); + Assert.That(feedback.StartsOn, Is.EqualTo(startsOn)); + Assert.That(feedback.EndsOn, Is.EqualTo(endsOn)); + Assert.That(feedback.ChangePointValue, Is.EqualTo(changePointValue)); + } + + [Test] + public void MetricCommentFeedback() + { + var id = "id"; + var createdOn = DateTimeOffset.Parse("2021-01-01T00:00:00Z"); + var userPrincipal = "userPrincipal"; + var metricId = "metricId"; + var dimensionKey = SampleDimensionKey; + var startsOn = DateTimeOffset.Parse("2021-02-02T00:00:00Z"); + var endsOn = DateTimeOffset.Parse("2021-03-03T00:00:00Z"); + var comment = "comment"; + + var feedback = MetricsAdvisorModelFactory.MetricCommentFeedback(id, createdOn, userPrincipal, metricId, dimensionKey, startsOn, + endsOn, comment); + + Assert.That(feedback.Id, Is.EqualTo(id)); + Assert.That(feedback.CreatedOn, Is.EqualTo(createdOn)); + Assert.That(feedback.UserPrincipal, Is.EqualTo(userPrincipal)); + Assert.That(feedback.MetricId, Is.EqualTo(metricId)); + Assert.That(feedback.DimensionKey, Is.EqualTo(dimensionKey)); + Assert.That(feedback.StartsOn, Is.EqualTo(startsOn)); + Assert.That(feedback.EndsOn, Is.EqualTo(endsOn)); + Assert.That(feedback.Comment, Is.EqualTo(comment)); + } + + [Test] + public void MetricEnrichedSeriesData() + { + var seriesKey = SampleDimensionKey; + var timestamps = new List() + { + DateTimeOffset.Parse("2021-01-01T00:00:00Z"), + DateTimeOffset.Parse("2021-02-02T00:00:00Z") + }; + var metricValues = new List() { 10.0, 20.0 }; + var isAnomaly = new List() { true, false }; + var periods = new List() { 1, 2 }; + var expectedMetricValues = new List() { 30.0, 40.0 }; + var lowerBoundaryValues = new List() { 50.0, 60.0 }; + var upperBoundaryValues = new List() { 70.0, 80.0 }; + + var metricEnrichedSeriesData = MetricsAdvisorModelFactory.MetricEnrichedSeriesData(seriesKey, timestamps, metricValues, + isAnomaly, periods, expectedMetricValues, lowerBoundaryValues, upperBoundaryValues); + + Assert.That(metricEnrichedSeriesData.SeriesKey, Is.EqualTo(seriesKey)); + Assert.That(metricEnrichedSeriesData.Timestamps, Is.EqualTo(timestamps)); + Assert.That(metricEnrichedSeriesData.MetricValues, Is.EqualTo(metricValues)); + Assert.That(metricEnrichedSeriesData.IsAnomaly, Is.EqualTo(isAnomaly)); + Assert.That(metricEnrichedSeriesData.Periods, Is.EqualTo(periods)); + Assert.That(metricEnrichedSeriesData.ExpectedMetricValues, Is.EqualTo(expectedMetricValues)); + Assert.That(metricEnrichedSeriesData.LowerBoundaryValues, Is.EqualTo(lowerBoundaryValues)); + Assert.That(metricEnrichedSeriesData.UpperBoundaryValues, Is.EqualTo(upperBoundaryValues)); + } + + [Test] + public void MetricPeriodFeedback() + { + var id = "id"; + var createdOn = DateTimeOffset.Parse("2021-01-01T00:00:00Z"); + var userPrincipal = "userPrincipal"; + var metricId = "metricId"; + var dimensionKey = SampleDimensionKey; + var periodType = MetricPeriodType.AutoDetect; + var periodValue = 10; + + var feedback = MetricsAdvisorModelFactory.MetricPeriodFeedback(id, createdOn, userPrincipal, metricId, dimensionKey, periodType, + periodValue); + + Assert.That(feedback.Id, Is.EqualTo(id)); + Assert.That(feedback.CreatedOn, Is.EqualTo(createdOn)); + Assert.That(feedback.UserPrincipal, Is.EqualTo(userPrincipal)); + Assert.That(feedback.MetricId, Is.EqualTo(metricId)); + Assert.That(feedback.DimensionKey, Is.EqualTo(dimensionKey)); + Assert.That(feedback.PeriodType, Is.EqualTo(periodType)); + Assert.That(feedback.PeriodValue, Is.EqualTo(periodValue)); + } + + [Test] + public void MetricSeriesData() + { + var metricId = "id"; + var seriesKey = SampleDimensionKey; + var timestamps = new List() + { + DateTimeOffset.Parse("2021-01-01T00:00:00Z"), + DateTimeOffset.Parse("2021-02-02T00:00:00Z") + }; + var metricValues = new List() { 10.0, 20.0 }; + + var metricSeriesData = MetricsAdvisorModelFactory.MetricSeriesData(metricId, seriesKey, timestamps, metricValues); + + Assert.That(metricSeriesData.MetricId, Is.EqualTo(metricId)); + Assert.That(metricSeriesData.SeriesKey, Is.EqualTo(seriesKey)); + Assert.That(metricSeriesData.Timestamps, Is.EqualTo(timestamps)); + Assert.That(metricSeriesData.MetricValues, Is.EqualTo(metricValues)); + } + + [Test] + public void MetricSeriesDefinition() + { + var metricId = "id"; + var seriesKey = SampleDimensionKey; + + var metricSeriesDefinition = MetricsAdvisorModelFactory.MetricSeriesDefinition(metricId, seriesKey); + + Assert.That(metricSeriesDefinition.MetricId, Is.EqualTo(metricId)); + Assert.That(metricSeriesDefinition.SeriesKey, Is.EqualTo(seriesKey)); + } + + [Test] + public void ServicePrincipalCredentialEntity() + { + var id = "id"; + var name = "name"; + var description = "displayName"; + var clientId = "clientId"; + var clientSecret = "clientSecret"; + var tenantId = "tenantId"; + + var credentialEntity = MetricsAdvisorModelFactory.ServicePrincipalCredentialEntity(id, name, description, clientId, clientSecret, tenantId); + + Assert.That(credentialEntity.Id, Is.EqualTo(id)); + Assert.That(credentialEntity.Name, Is.EqualTo(name)); + Assert.That(credentialEntity.Description, Is.EqualTo(description)); + Assert.That(credentialEntity.ClientId, Is.EqualTo(clientId)); + Assert.That(credentialEntity.ClientSecret, Is.EqualTo(clientSecret)); // Validation of internal property + Assert.That(credentialEntity.TenantId, Is.EqualTo(tenantId)); + } + + [Test] + public void ServicePrincipalInKeyVaultCredentialEntity() + { + var id = "id"; + var name = "name"; + var description = "displayName"; + var endpoint = new Uri("https://fake.endpoint.com/"); + var keyVaultClientId = "keyVaultClientId"; + var keyVaultClientSecret = "keyVaultClientSecret"; + var secretNameForClientId = "secretNameForClientId"; + var secretNameForClientSecret = "secretNameForClientSecret"; + var tenantId = "tenantId"; + + var credentialEntity = MetricsAdvisorModelFactory.ServicePrincipalInKeyVaultCredentialEntity(id, name, description, endpoint, keyVaultClientId, keyVaultClientSecret, secretNameForClientId, secretNameForClientSecret, tenantId); + + Assert.That(credentialEntity.Id, Is.EqualTo(id)); + Assert.That(credentialEntity.Name, Is.EqualTo(name)); + Assert.That(credentialEntity.Description, Is.EqualTo(description)); + Assert.That(credentialEntity.Endpoint, Is.EqualTo(endpoint)); + Assert.That(credentialEntity.KeyVaultClientId, Is.EqualTo(keyVaultClientId)); + Assert.That(credentialEntity.KeyVaultClientSecret, Is.EqualTo(keyVaultClientSecret)); // Validation of internal property + Assert.That(credentialEntity.SecretNameForClientId, Is.EqualTo(secretNameForClientId)); + Assert.That(credentialEntity.SecretNameForClientSecret, Is.EqualTo(secretNameForClientSecret)); + Assert.That(credentialEntity.TenantId, Is.EqualTo(tenantId)); + } + + [Test] + public void SqlConnectionStringCredentialEntity() + { + var id = "id"; + var name = "name"; + var description = "displayName"; + var connectionString = "connectionString"; + + var credentialEntity = MetricsAdvisorModelFactory.SqlConnectionStringCredentialEntity(id, name, description, connectionString); + + Assert.That(credentialEntity.Id, Is.EqualTo(id)); + Assert.That(credentialEntity.Name, Is.EqualTo(name)); + Assert.That(credentialEntity.Description, Is.EqualTo(description)); + Assert.That(credentialEntity.ConnectionString, Is.EqualTo(connectionString)); // Validation of internal property + } + + [Test] + public void TopNGroupScope() + { + var top = 10; + var period = 20; + var minimumTopCount = 30; + + var topNGroupScope = MetricsAdvisorModelFactory.TopNGroupScope(top, period, minimumTopCount); + + Assert.That(topNGroupScope.Top, Is.EqualTo(top)); + Assert.That(topNGroupScope.Period, Is.EqualTo(period)); + Assert.That(topNGroupScope.MinimumTopCount, Is.EqualTo(minimumTopCount)); + } + + [Test] + public void WebNotificationHook() + { + var id = "id"; + var name = "name"; + var description = "description"; + var externalUri = new Uri("https://fake.endpoint1.com/"); + var administrators = new List() { "admin1", "admin2" }; + var endpoint = new Uri("https://fake.endpoint2.com/"); + var username = "username"; + var password = "password"; + var headers = new Dictionary() + { + { "key1", "value1" }, + { "key2", "value2" } + }; + var certificateKey = "certificateKey"; + var certificatePassword = "certificatePassword"; + + var hook = MetricsAdvisorModelFactory.WebNotificationHook(id, name, description, externalUri, administrators, endpoint, + username, password, headers, certificateKey, certificatePassword); + + Assert.That(hook.Id, Is.EqualTo(id)); + Assert.That(hook.Name, Is.EqualTo(name)); + Assert.That(hook.Description, Is.EqualTo(description)); + Assert.That(hook.ExternalUri, Is.EqualTo(externalUri)); + Assert.That(hook.Administrators, Is.EqualTo(administrators)); + Assert.That(hook.Endpoint, Is.EqualTo(endpoint)); + Assert.That(hook.Username, Is.EqualTo(username)); + Assert.That(hook.Password, Is.EqualTo(password)); + Assert.That(hook.Headers, Is.EqualTo(headers)); + Assert.That(hook.CertificateKey, Is.EqualTo(certificateKey)); + Assert.That(hook.CertificatePassword, Is.EqualTo(certificatePassword)); + } + } +} diff --git a/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/src/HttpHelper.cs b/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/src/HttpHelper.cs index 5b33a17d9b715..32e95166c2d71 100644 --- a/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/src/HttpHelper.cs +++ b/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/src/HttpHelper.cs @@ -92,5 +92,69 @@ internal static void GenerateUrlAndAuthority(this AzMonList tagObjects, out stri url = string.IsNullOrWhiteSpace(url) ? null : url; } + /// + /// Gets http request url from activity tag objects. + /// + internal static string GetRequestUrl(this AzMonList tagObjects) + { + // From spec: one of the following combinations is required in case of server spans: + // https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/semantic_conventions/http.md#http-server-semantic-conventions + // http.url + // http.scheme, http.host, http.target + // http.scheme, http.server_name, net.host.port, http.target + // http.scheme, net.host.name, net.host.port, http.target + string url = null; + var httpUrl = AzMonList.GetTagValue(ref tagObjects, SemanticConventions.AttributeHttpUrl)?.ToString(); + if (!string.IsNullOrWhiteSpace(httpUrl)) + { + url = httpUrl; + return url; + } + var httpScheme = AzMonList.GetTagValue(ref tagObjects, SemanticConventions.AttributeHttpScheme)?.ToString(); + if (!string.IsNullOrWhiteSpace(httpScheme)) + { + var httpTarget = AzMonList.GetTagValue(ref tagObjects, SemanticConventions.AttributeHttpTarget)?.ToString(); + // http.target is required in other three possible combinations + // If not available then do not proceed. + if (string.IsNullOrWhiteSpace(httpTarget)) + { + return null; + } + + var httpHost = AzMonList.GetTagValue(ref tagObjects, SemanticConventions.AttributeHttpHost)?.ToString(); + if (!string.IsNullOrWhiteSpace(httpHost)) + { + url = $"{httpScheme}://{httpHost}{httpTarget}"; + return url; + } + + var httpServerName = AzMonList.GetTagValue(ref tagObjects, SemanticConventions.AttributeHttpServerName)?.ToString(); + string host; + if (!string.IsNullOrWhiteSpace(httpServerName)) + { + host = httpServerName; + } + else + { + host = AzMonList.GetTagValue(ref tagObjects, SemanticConventions.AttributeNetHostName)?.ToString(); + } + if (!string.IsNullOrWhiteSpace(host)) + { + var netHostPort = AzMonList.GetTagValue(ref tagObjects, SemanticConventions.AttributeNetHostPort)?.ToString(); + if (!string.IsNullOrWhiteSpace(netHostPort)) + { + if (netHostPort == "80" || netHostPort == "443") + { + url = $"{httpScheme}://{host}{httpTarget}"; + return url; + } + + url = $"{httpScheme}://{host}:{netHostPort}{httpTarget}"; + return url; + } + } + } + return url; + } } } diff --git a/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/src/TelemetryPartB.cs b/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/src/TelemetryPartB.cs index 6bdaa6c009558..dd6c2ec01c03b 100644 --- a/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/src/TelemetryPartB.cs +++ b/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/src/TelemetryPartB.cs @@ -27,7 +27,6 @@ internal class TelemetryPartB internal static RequestData GetRequestData(Activity activity) { string url = null; - string urlAuthority = null; var monitorTags = EnumerateActivityTags(activity); AddActivityLinksToPartCTags(activity.Links, ref monitorTags.PartCTags); @@ -35,7 +34,7 @@ internal static RequestData GetRequestData(Activity activity) switch (monitorTags.activityType) { case PartBType.Http: - monitorTags.PartBTags.GenerateUrlAndAuthority(out url, out urlAuthority); + url = monitorTags.PartBTags.GetRequestUrl(); break; case PartBType.Messaging: url = AzMonList.GetTagValue(ref monitorTags.PartBTags, SemanticConventions.AttributeMessagingUrl)?.ToString(); @@ -48,7 +47,6 @@ internal static RequestData GetRequestData(Activity activity) { Name = activity.DisplayName, Url = url, - Source = urlAuthority }; AddPropertiesToTelemetry(request.Properties, ref monitorTags.PartCTags); diff --git a/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/tests/Azure.Monitor.OpenTelemetry.Exporter.Tests/HttpHelperTests.cs b/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/tests/Azure.Monitor.OpenTelemetry.Exporter.Tests/HttpHelperTests.cs index 3049bc5413ad1..197457c3afba4 100644 --- a/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/tests/Azure.Monitor.OpenTelemetry.Exporter.Tests/HttpHelperTests.cs +++ b/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/tests/Azure.Monitor.OpenTelemetry.Exporter.Tests/HttpHelperTests.cs @@ -183,6 +183,131 @@ public void GetUrl_HttpUrl_Success() Assert.Equal("www.wiki.com", urlAuthority); } - // TODO: Order of precedence. + [Fact] + public void HttpRequestUrlIsSetUsingHttpUrl() + { + var PartBTags = AzMonList.Initialize(); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpUrl, "https://www.wiki.com")); + + string url = PartBTags.GetRequestUrl(); + Assert.Equal("https://www.wiki.com", url); + } + + [Fact] + public void HttpRequestUrlIsSetUsing_Scheme_Host_Target() + { + var PartBTags = AzMonList.Initialize(); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpScheme, "http")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpHost, "www.httphost.org")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpTarget, "/path")); + + string expectedUrl = "http://www.httphost.org/path"; + string url = PartBTags.GetRequestUrl(); + Assert.Equal(expectedUrl, url); + } + + [Theory] + [InlineData("80")] + [InlineData("443")] + [InlineData("8888")] + + public void HttpRequestUrlIsSetUsing_Scheme_ServerName_Port_Target(string port) + { + var PartBTags = AzMonList.Initialize(); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpScheme, "http")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpServerName, "servername.com")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeNetHostPort, port)); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpTarget, "/path")); + string colon = ":"; + if (port == "80" || port == "443") + { + port = ""; + colon = ""; + } + string expectedUrl = $"http://servername.com{colon}{port}/path"; + string url = PartBTags.GetRequestUrl(); + Assert.Equal(expectedUrl, url); + } + + [Theory] + [InlineData("80")] + [InlineData("443")] + [InlineData("8888")] + + public void HttpRequestUrlIsSetUsing_Scheme_NetHostName_Port_Target(string port) + { + var PartBTags = AzMonList.Initialize(); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpScheme, "http")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeNetHostName, "localhost")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeNetHostPort, port)); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpTarget, "/path")); + string colon = ":"; + if (port == "80" || port == "443") + { + port = ""; + colon = ""; + } + string expectedUrl = $"http://localhost{colon}{port}/path"; + string url = PartBTags.GetRequestUrl(); + Assert.Equal(expectedUrl, url); + } + + [Fact] + public void HttpUrlAttributeTakesPrecedenceSettingHttpRequestUrl() + { + var PartBTags = AzMonList.Initialize(); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpUrl, "https://www.wiki.com")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpScheme, "http")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeNetHostName, "localhost")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpHost, "www.httphost.org")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpServerName, "servername.com")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeNetHostPort, "8888")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpTarget, "/path")); + string expectedUrl = "https://www.wiki.com"; + string url = PartBTags.GetRequestUrl(); + Assert.Equal(expectedUrl, url); + } + + [Fact] + public void HttpHostAttributeTakesPrecedenceSettingHttpRequestUrl() + { + var PartBTags = AzMonList.Initialize(); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpScheme, "http")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeNetHostName, "localhost")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpHost, "www.httphost.org")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpServerName, "servername.com")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeNetHostPort, "8888")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpTarget, "/path")); + string expectedUrl = "http://www.httphost.org/path"; + string url = PartBTags.GetRequestUrl(); + Assert.Equal(expectedUrl, url); + } + + [Fact] + public void HttpServerNameAttributeTakesPrecedenceSettingHttpRequestUrl() + { + var PartBTags = AzMonList.Initialize(); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpScheme, "http")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeNetHostName, "localhost")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpServerName, "servername.com")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeNetHostPort, "8888")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpTarget, "/path")); + string expectedUrl = "http://servername.com:8888/path"; + string url = PartBTags.GetRequestUrl(); + Assert.Equal(expectedUrl, url); + } + + [Fact] + public void NetHostNameAttributeTakesPrecedenceSettingHttpRequestUrl() + { + var PartBTags = AzMonList.Initialize(); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpScheme, "http")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeNetHostName, "localhost")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeNetHostPort, "8888")); + AzMonList.Add(ref PartBTags, new KeyValuePair(SemanticConventions.AttributeHttpTarget, "/path")); + string expectedUrl = "http://localhost:8888/path"; + string url = PartBTags.GetRequestUrl(); + Assert.Equal(expectedUrl, url); + } } } diff --git a/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/tests/Azure.Monitor.OpenTelemetry.Exporter.Tests/TelemetryPartBTests.cs b/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/tests/Azure.Monitor.OpenTelemetry.Exporter.Tests/TelemetryPartBTests.cs new file mode 100644 index 0000000000000..2437b0df714c2 --- /dev/null +++ b/sdk/monitor/Azure.Monitor.OpenTelemetry.Exporter/tests/Azure.Monitor.OpenTelemetry.Exporter.Tests/TelemetryPartBTests.cs @@ -0,0 +1,114 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Globalization; +using System.Linq; +using System.Text; +using System.Text.Json; +using OpenTelemetry.Trace; +using Xunit; + +namespace Azure.Monitor.OpenTelemetry.Exporter.Demo.Tracing +{ + public class TelemetryPartBTests + { + private const string ActivitySourceName = "TelemetryPartBTests"; + private const string ActivityName = "TestActivity"; + + static TelemetryPartBTests() + { + Activity.DefaultIdFormat = ActivityIdFormat.W3C; + Activity.ForceDefaultIdFormat = true; + + var listener = new ActivityListener + { + ShouldListenTo = _ => true, + Sample = (ref ActivityCreationOptions options) => ActivitySamplingResult.AllData, + }; + + ActivitySource.AddActivityListener(listener); + } + + [Fact] + public void ValidateHttpRequestData() + { + using ActivitySource activitySource = new ActivitySource(ActivitySourceName); + using var activity = activitySource.StartActivity( + ActivityName, + ActivityKind.Server, + parentContext: new ActivityContext(ActivityTraceId.CreateRandom(), ActivitySpanId.CreateRandom(), ActivityTraceFlags.Recorded), + startTime: DateTime.UtcNow); + activity.Stop(); + + var httpUrl = "https://www.foo.bar/search"; + activity.SetStatus(Status.Ok); + activity.SetTag(SemanticConventions.AttributeHttpUrl, httpUrl); // only adding test via http.url. all possible combinations are covered in HttpHelperTests. + activity.SetTag(SemanticConventions.AttributeHttpStatusCode, null); + var requestData = TelemetryPartB.GetRequestData(activity); + + Assert.Equal(activity.DisplayName, requestData.Name); + Assert.Equal(activity.Context.SpanId.ToHexString(), requestData.Id); + Assert.Equal(httpUrl, requestData.Url); + Assert.Equal("0", requestData.ResponseCode); + Assert.Equal(activity.Duration.ToString("c", CultureInfo.InvariantCulture), requestData.Duration); + Assert.Equal(activity.GetStatus() != Status.Error, requestData.Success); + Assert.Null(requestData.Source); + Assert.True(requestData.Properties.Count == 1); //Because of otel_statuscode attribute for activity status. todo: do not add all tags to PartC + Assert.True(requestData.Measurements.Count == 0); + } + + [Theory] + [InlineData("200")] + [InlineData(null)] + public void ValidateHttpRequestDataResponseCode(string httpStatusCode) + { + using ActivitySource activitySource = new ActivitySource(ActivitySourceName); + using var activity = activitySource.StartActivity( + ActivityName, + ActivityKind.Server, + parentContext: new ActivityContext(ActivityTraceId.CreateRandom(), ActivitySpanId.CreateRandom(), ActivityTraceFlags.Recorded), + startTime: DateTime.UtcNow); + + var httpResponsCode = httpStatusCode ?? "0"; + activity.SetTag(SemanticConventions.AttributeHttpUrl, "https://www.foo.bar/search"); + activity.SetTag(SemanticConventions.AttributeHttpStatusCode, httpStatusCode); + var requestData = TelemetryPartB.GetRequestData(activity); + + Assert.Equal(httpResponsCode, requestData.ResponseCode); + } + + [Theory] + [InlineData("Ok")] + [InlineData("Error")] + [InlineData("Unset")] + public void ValidateRequestDataSuccess(string activityStatus) + { + using ActivitySource activitySource = new ActivitySource(ActivitySourceName); + using var activity = activitySource.StartActivity( + ActivityName, + ActivityKind.Server, + parentContext: new ActivityContext(ActivityTraceId.CreateRandom(), ActivitySpanId.CreateRandom(), ActivityTraceFlags.Recorded), + startTime: DateTime.UtcNow); + + if (activityStatus == "Ok") + { + activity.SetStatus(Status.Ok); + } + else if (activityStatus == "Error") + { + activity.SetStatus(Status.Error); + } + else + { + activity.SetStatus(Status.Unset); + } + activity.SetTag(SemanticConventions.AttributeHttpUrl, "https://www.foo.bar/search"); + var requestData = TelemetryPartB.GetRequestData(activity); + + Assert.Equal(activity.GetStatus() != Status.Error, requestData.Success); + } + } +} diff --git a/sdk/monitor/Azure.Monitor.Query/CHANGELOG.md b/sdk/monitor/Azure.Monitor.Query/CHANGELOG.md index 754b9f4580024..479d76a03d2d6 100644 --- a/sdk/monitor/Azure.Monitor.Query/CHANGELOG.md +++ b/sdk/monitor/Azure.Monitor.Query/CHANGELOG.md @@ -1,5 +1,15 @@ # Release History +## 1.0.0-beta.4 (Unreleased) + +### Features Added + +### Breaking Changes + +### Bugs Fixed + +### Other Changes + ## 1.0.0-beta.3 (2021-08-10) ### Breaking Changes diff --git a/sdk/monitor/Azure.Monitor.Query/src/Azure.Monitor.Query.csproj b/sdk/monitor/Azure.Monitor.Query/src/Azure.Monitor.Query.csproj index efe1ed25b3f74..2109dacee3959 100644 --- a/sdk/monitor/Azure.Monitor.Query/src/Azure.Monitor.Query.csproj +++ b/sdk/monitor/Azure.Monitor.Query/src/Azure.Monitor.Query.csproj @@ -2,7 +2,7 @@ This library allows querying logs and metrics from the Azure Monitor service. Azure Monitor Query client library - 1.0.0-beta.3 + 1.0.0-beta.4 Azure Monitor Query $(RequiredTargetFrameworks) $(NoWarn);AZC0001 diff --git a/sdk/resourcemanager/Azure.ResourceManager/api/Azure.ResourceManager.netstandard2.0.cs b/sdk/resourcemanager/Azure.ResourceManager/api/Azure.ResourceManager.netstandard2.0.cs index 826df671a1a02..00d06b5f3a2e7 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/api/Azure.ResourceManager.netstandard2.0.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/api/Azure.ResourceManager.netstandard2.0.cs @@ -20,21 +20,24 @@ public ArmClient(System.Uri baseUri, Azure.Core.TokenCredential credential, Azur protected virtual Azure.Core.TokenCredential Credential { get { throw null; } } public virtual Azure.ResourceManager.Resources.Subscription DefaultSubscription { get { throw null; } } protected virtual Azure.Core.Pipeline.HttpPipeline Pipeline { get { throw null; } } - public virtual Azure.ResourceManager.Resources.FeatureOperations GetFeatureOperations(string id) { throw null; } - public virtual System.Collections.Generic.IReadOnlyList GetGenericResourceOperations(System.Collections.Generic.IEnumerable ids) { throw null; } - public virtual Azure.ResourceManager.Resources.GenericResourceOperations GetGenericResourceOperations(string id) { throw null; } - public virtual System.Collections.Generic.IReadOnlyList GetGenericResourceOperations(params string[] ids) { throw null; } - public virtual Azure.ResourceManager.Management.ManagementGroupOperations GetManagementGroupOperations(string id) { throw null; } + public virtual Azure.ResourceManager.Resources.Feature GetFeature(Azure.ResourceManager.ResourceIdentifier id) { throw null; } + public virtual Azure.ResourceManager.Resources.GenericResource GetGenericResource(Azure.ResourceManager.ResourceIdentifier id) { throw null; } + public virtual System.Collections.Generic.IReadOnlyList GetGenericResources(params Azure.ResourceManager.ResourceIdentifier[] ids) { throw null; } + public virtual System.Collections.Generic.IReadOnlyList GetGenericResources(System.Collections.Generic.IEnumerable ids) { throw null; } + public virtual System.Collections.Generic.IReadOnlyList GetGenericResources(System.Collections.Generic.IEnumerable ids) { throw null; } + public virtual System.Collections.Generic.IReadOnlyList GetGenericResources(params string[] ids) { throw null; } + public virtual Azure.ResourceManager.Management.ManagementGroup GetManagementGroup(Azure.ResourceManager.ResourceIdentifier id) { throw null; } public virtual Azure.ResourceManager.Management.ManagementGroupContainer GetManagementGroups() { throw null; } - public virtual Azure.Response GetProvider(string resourceProviderNamespace, string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> GetProviderAsync(string resourceProviderNamespace, string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.ResourceManager.Resources.ProviderOperations GetProviderOperations(string id) { throw null; } - public virtual Azure.Pageable GetProviders(int? top = default(int?), string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.AsyncPageable GetProvidersAsync(int? top = default(int?), string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.ResourceManager.Resources.ResourceGroupOperations GetResourceGroupOperations(string id) { throw null; } + public virtual Azure.ResourceManager.Resources.PredefinedTag GetPreDefinedTag(Azure.ResourceManager.ResourceIdentifier id) { throw null; } + public virtual Azure.ResourceManager.Resources.Provider GetProvider(Azure.ResourceManager.ResourceIdentifier id) { throw null; } + public virtual Azure.ResourceManager.Resources.ResourceGroup GetResourceGroup(Azure.ResourceManager.ResourceIdentifier id) { throw null; } public virtual Azure.ResourceManager.Resources.RestApiContainer GetRestApis(string azureNamespace) { throw null; } - public virtual Azure.ResourceManager.Resources.SubscriptionOperations GetSubscriptionOperations(string id) { throw null; } + public virtual Azure.ResourceManager.Resources.Subscription GetSubscription(Azure.ResourceManager.ResourceIdentifier id) { throw null; } public virtual Azure.ResourceManager.Resources.SubscriptionContainer GetSubscriptions() { throw null; } + public virtual Azure.Response GetTenantProvider(string resourceProviderNamespace, string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetTenantProviderAsync(string resourceProviderNamespace, string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Pageable GetTenantProviders(int? top = default(int?), string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AsyncPageable GetTenantProvidersAsync(int? top = default(int?), string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.ResourceManager.Resources.TenantContainer GetTenants() { throw null; } [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public virtual T UseClientContext(System.Func func) { throw null; } @@ -160,23 +163,39 @@ public ResourceTypeFilter(Azure.ResourceManager.ResourceType resourceType) { } } namespace Azure.ResourceManager.Core { - public abstract partial class ResourceContainer : Azure.ResourceManager.Core.ResourceOperations + public abstract partial class ArmContainer : Azure.ResourceManager.Core.ArmResource { - protected ResourceContainer() { } - protected ResourceContainer(Azure.ResourceManager.ArmClientOptions options, Azure.Core.TokenCredential credential, System.Uri baseUri, Azure.Core.Pipeline.HttpPipeline pipeline) { } - protected ResourceContainer(Azure.ResourceManager.Core.ResourceOperations parent) { } - protected Azure.ResourceManager.Core.ResourceOperations Parent { get { throw null; } } + protected ArmContainer() { } + protected ArmContainer(Azure.ResourceManager.ArmClientOptions options, Azure.Core.TokenCredential credential, System.Uri baseUri, Azure.Core.Pipeline.HttpPipeline pipeline) { } + protected ArmContainer(Azure.ResourceManager.Core.ArmResource parent) { } + protected Azure.ResourceManager.Core.ArmResource Parent { get { throw null; } } + } + public abstract partial class ArmResource + { + protected ArmResource() { } + protected ArmResource(Azure.ResourceManager.Core.ArmResource parentOperations, Azure.ResourceManager.ResourceIdentifier id) { } + protected internal virtual System.Uri BaseUri { get { throw null; } } + protected internal virtual Azure.ResourceManager.ArmClientOptions ClientOptions { get { throw null; } } + protected internal virtual Azure.Core.TokenCredential Credential { get { throw null; } } + public virtual Azure.ResourceManager.ResourceIdentifier Id { get { throw null; } } + protected internal virtual Azure.Core.Pipeline.HttpPipeline Pipeline { get { throw null; } } + protected internal Azure.ResourceManager.Resources.TagResourceContainer TagContainer { get { throw null; } } + protected internal Azure.ResourceManager.Resources.TagResource TagResource { get { throw null; } } + protected abstract Azure.ResourceManager.ResourceType ValidResourceType { get; } + protected System.Collections.Generic.IEnumerable ListAvailableLocations(Azure.ResourceManager.ResourceType resourceType, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + protected System.Threading.Tasks.Task> ListAvailableLocationsAsync(Azure.ResourceManager.ResourceType resourceType, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + protected virtual void ValidateResourceType(Azure.ResourceManager.ResourceIdentifier identifier) { } } public static partial class ResourceListOperations { [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public static Azure.Pageable GetAtContext(Azure.ResourceManager.Resources.ResourceGroupOperations resourceGroup, Azure.ResourceManager.ResourceFilterCollection resourceFilters = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public static Azure.Pageable GetAtContext(Azure.ResourceManager.Resources.ResourceGroup resourceGroup, Azure.ResourceManager.ResourceFilterCollection resourceFilters = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public static Azure.Pageable GetAtContext(Azure.ResourceManager.Resources.SubscriptionOperations subscription, Azure.ResourceManager.ResourceFilterCollection resourceFilters = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public static Azure.Pageable GetAtContext(Azure.ResourceManager.Resources.Subscription subscription, Azure.ResourceManager.ResourceFilterCollection resourceFilters = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public static Azure.AsyncPageable GetAtContextAsync(Azure.ResourceManager.Resources.ResourceGroupOperations resourceGroup, Azure.ResourceManager.ResourceFilterCollection resourceFilters = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public static Azure.AsyncPageable GetAtContextAsync(Azure.ResourceManager.Resources.ResourceGroup resourceGroup, Azure.ResourceManager.ResourceFilterCollection resourceFilters = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public static Azure.AsyncPageable GetAtContextAsync(Azure.ResourceManager.Resources.SubscriptionOperations subscription, Azure.ResourceManager.ResourceFilterCollection resourceFilters = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public static Azure.AsyncPageable GetAtContextAsync(Azure.ResourceManager.Resources.Subscription subscription, Azure.ResourceManager.ResourceFilterCollection resourceFilters = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } public static partial class ResourceManagerExtensions { @@ -190,40 +209,32 @@ public static partial class ResourceManagerExtensions public static Azure.Response WaitForCompletion(this Azure.Operation operation, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public static Azure.Response WaitForCompletion(this Azure.Operation operation, System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } - public abstract partial class ResourceOperations - { - protected ResourceOperations() { } - protected ResourceOperations(Azure.ResourceManager.Core.ResourceOperations parentOperations, Azure.ResourceManager.ResourceIdentifier id) { } - protected internal virtual System.Uri BaseUri { get { throw null; } } - protected internal virtual Azure.ResourceManager.ArmClientOptions ClientOptions { get { throw null; } } - protected internal virtual Azure.Core.TokenCredential Credential { get { throw null; } } - public virtual Azure.ResourceManager.ResourceIdentifier Id { get { throw null; } } - protected internal virtual Azure.Core.Pipeline.HttpPipeline Pipeline { get { throw null; } } - protected internal Azure.ResourceManager.Resources.TagResourceContainer TagContainer { get { throw null; } } - protected internal Azure.ResourceManager.Resources.TagResourceOperations TagResourceOperations { get { throw null; } } - protected abstract Azure.ResourceManager.ResourceType ValidResourceType { get; } - protected System.Collections.Generic.IEnumerable ListAvailableLocations(Azure.ResourceManager.ResourceType resourceType, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - protected System.Threading.Tasks.Task> ListAvailableLocationsAsync(Azure.ResourceManager.ResourceType resourceType, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - protected virtual void ValidateResourceType(Azure.ResourceManager.ResourceIdentifier identifier) { } - } - public abstract partial class SingletonOperations : Azure.ResourceManager.Core.ResourceOperations - { - protected SingletonOperations() { } - protected SingletonOperations(Azure.ResourceManager.Core.ResourceOperations parent) { } - protected Azure.ResourceManager.Core.ResourceOperations Parent { get { throw null; } } - } } namespace Azure.ResourceManager.Management { - public partial class ManagementGroup : Azure.ResourceManager.Management.ManagementGroupOperations + public partial class ManagementGroup : Azure.ResourceManager.Core.ArmResource { + public static readonly Azure.ResourceManager.ResourceType ResourceType; protected ManagementGroup() { } + protected internal ManagementGroup(Azure.ResourceManager.Core.ArmResource options, Azure.ResourceManager.ResourceIdentifier id) { } public virtual Azure.ResourceManager.Management.ManagementGroupData Data { get { throw null; } } + public bool HasData { get { throw null; } } + protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } + public virtual Azure.Response Delete(string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task DeleteAsync(string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Get(Azure.ResourceManager.Management.Models.ManagementGroupExpandType? expand = default(Azure.ResourceManager.Management.Models.ManagementGroupExpandType?), bool? recurse = default(bool?), string filter = null, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetAsync(Azure.ResourceManager.Management.Models.ManagementGroupExpandType? expand = default(Azure.ResourceManager.Management.Models.ManagementGroupExpandType?), bool? recurse = default(bool?), string filter = null, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Pageable GetDescendants(string skiptoken = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AsyncPageable GetDescendantsAsync(string skiptoken = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.ResourceManager.Management.Models.ManagementGroupDeleteOperation StartDelete(string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartDeleteAsync(string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Update(Azure.ResourceManager.Management.Models.PatchManagementGroupOptions patchGroupOptions, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> UpdateAsync(Azure.ResourceManager.Management.Models.PatchManagementGroupOptions patchGroupOptions, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } - public partial class ManagementGroupContainer : Azure.ResourceManager.Core.ResourceContainer + public partial class ManagementGroupContainer : Azure.ResourceManager.Core.ArmContainer { protected ManagementGroupContainer() { } - protected new Azure.ResourceManager.Resources.TenantOperations Parent { get { throw null; } } + protected new Azure.ResourceManager.Resources.Tenant Parent { get { throw null; } } protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } public virtual Azure.Response CheckIfExists(string groupId, Azure.ResourceManager.Management.Models.ManagementGroupExpandType? expand = default(Azure.ResourceManager.Management.Models.ManagementGroupExpandType?), bool? recurse = default(bool?), string filter = null, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> CheckIfExistsAsync(string groupId, Azure.ResourceManager.Management.Models.ManagementGroupExpandType? expand = default(Azure.ResourceManager.Management.Models.ManagementGroupExpandType?), bool? recurse = default(bool?), string filter = null, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } @@ -232,8 +243,8 @@ protected ManagementGroupContainer() { } public virtual Azure.Response CreateOrUpdate(string groupId, Azure.ResourceManager.Management.Models.CreateManagementGroupOptions createManagementGroupOptions, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> CreateOrUpdateAsync(string groupId, Azure.ResourceManager.Management.Models.CreateManagementGroupOptions createManagementGroupOptions, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response Get(string groupId, Azure.ResourceManager.Management.Models.ManagementGroupExpandType? expand = default(Azure.ResourceManager.Management.Models.ManagementGroupExpandType?), bool? recurse = default(bool?), string filter = null, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Pageable GetAll(string cacheControl = null, string skiptoken = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.AsyncPageable GetAllAsync(string cacheControl = null, string skiptoken = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Pageable GetAll(string cacheControl = null, string skiptoken = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AsyncPageable GetAllAsync(string cacheControl = null, string skiptoken = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> GetAsync(string groupId, Azure.ResourceManager.Management.Models.ManagementGroupExpandType? expand = default(Azure.ResourceManager.Management.Models.ManagementGroupExpandType?), bool? recurse = default(bool?), string filter = null, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response GetIfExists(string groupId, Azure.ResourceManager.Management.Models.ManagementGroupExpandType? expand = default(Azure.ResourceManager.Management.Models.ManagementGroupExpandType?), bool? recurse = default(bool?), string filter = null, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> GetIfExistsAsync(string groupId, Azure.ResourceManager.Management.Models.ManagementGroupExpandType? expand = default(Azure.ResourceManager.Management.Models.ManagementGroupExpandType?), bool? recurse = default(bool?), string filter = null, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } @@ -248,34 +259,6 @@ internal ManagementGroupData() { } public string DisplayName { get { throw null; } } public string TenantId { get { throw null; } } } - public partial class ManagementGroupInfo : Azure.ResourceManager.Management.ManagementGroupOperations - { - protected ManagementGroupInfo() { } - public virtual Azure.ResourceManager.Management.ManagementGroupInfoData Data { get { throw null; } } - } - public partial class ManagementGroupInfoData : Azure.ResourceManager.Resources.Models.Resource - { - internal ManagementGroupInfoData() { } - public string DisplayName { get { throw null; } } - public string TenantId { get { throw null; } } - } - public partial class ManagementGroupOperations : Azure.ResourceManager.Core.ResourceOperations - { - public static readonly Azure.ResourceManager.ResourceType ResourceType; - protected ManagementGroupOperations() { } - protected internal ManagementGroupOperations(Azure.ResourceManager.Core.ResourceOperations options, Azure.ResourceManager.ResourceIdentifier id) { } - protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } - public virtual Azure.Response Delete(string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task DeleteAsync(string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response Get(Azure.ResourceManager.Management.Models.ManagementGroupExpandType? expand = default(Azure.ResourceManager.Management.Models.ManagementGroupExpandType?), bool? recurse = default(bool?), string filter = null, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> GetAsync(Azure.ResourceManager.Management.Models.ManagementGroupExpandType? expand = default(Azure.ResourceManager.Management.Models.ManagementGroupExpandType?), bool? recurse = default(bool?), string filter = null, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Pageable GetDescendants(string skiptoken = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.AsyncPageable GetDescendantsAsync(string skiptoken = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.ResourceManager.Management.Models.ManagementGroupDeleteOperation StartDelete(string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task StartDeleteAsync(string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response Update(Azure.ResourceManager.Management.Models.PatchManagementGroupOptions patchGroupOptions, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> UpdateAsync(Azure.ResourceManager.Management.Models.PatchManagementGroupOptions patchGroupOptions, string cacheControl = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - } } namespace Azure.ResourceManager.Management.Models { @@ -449,15 +432,25 @@ public enum Reason } namespace Azure.ResourceManager.Resources { - public partial class Feature : Azure.ResourceManager.Resources.FeatureOperations + public partial class Feature : Azure.ResourceManager.Core.ArmResource { + public static readonly Azure.ResourceManager.ResourceType ResourceType; protected Feature() { } public virtual Azure.ResourceManager.Resources.FeatureData Data { get { throw null; } } + public bool HasData { get { throw null; } } + protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } + public virtual Azure.Response Get(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Register(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> RegisterAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Unregister(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> UnregisterAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + protected override void ValidateResourceType(Azure.ResourceManager.ResourceIdentifier identifier) { } } - public partial class FeatureContainer : Azure.ResourceManager.Core.ResourceContainer + public partial class FeatureContainer : Azure.ResourceManager.Core.ArmContainer { protected FeatureContainer() { } - protected new Azure.ResourceManager.Resources.ProviderOperations Parent { get { throw null; } } + protected new Azure.ResourceManager.Resources.Provider Parent { get { throw null; } } protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } public virtual Azure.Response CheckIfExists(string featureName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> CheckIfExistsAsync(string featureName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } @@ -473,26 +466,31 @@ public partial class FeatureData : Azure.ResourceManager.Resources.Models.Resour internal FeatureData() { } public Azure.ResourceManager.Resources.Models.FeatureProperties Properties { get { throw null; } } } - public partial class FeatureOperations : Azure.ResourceManager.Core.ResourceOperations - { - public static readonly Azure.ResourceManager.ResourceType ResourceType; - protected FeatureOperations() { } - protected FeatureOperations(Azure.ResourceManager.Core.ResourceOperations options, Azure.ResourceManager.ResourceIdentifier id) { } - protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } - public virtual Azure.Response Get(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> GetAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response Register(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> RegisterAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response Unregister(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> UnregisterAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - protected override void ValidateResourceType(Azure.ResourceManager.ResourceIdentifier identifier) { } - } - public partial class GenericResource : Azure.ResourceManager.Resources.GenericResourceOperations + public partial class GenericResource : Azure.ResourceManager.Core.ArmResource { protected GenericResource() { } public virtual Azure.ResourceManager.Resources.GenericResourceData Data { get { throw null; } } + public bool HasData { get { throw null; } } + protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } + public virtual Azure.Response AddTag(string key, string value, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> AddTagAsync(string key, string value, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Delete(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task DeleteAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Get(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response RemoveTag(string key, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> RemoveTagAsync(string key, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response SetTags(System.Collections.Generic.IDictionary tags, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> SetTagsAsync(System.Collections.Generic.IDictionary tags, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.ResourceManager.Resources.Models.ResourceDeleteByIdOperation StartDelete(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartDeleteAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.ResourceManager.Resources.Models.ResourceUpdateByIdOperation StartUpdate(Azure.ResourceManager.Resources.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartUpdateAsync(Azure.ResourceManager.Resources.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Update(Azure.ResourceManager.Resources.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> UpdateAsync(Azure.ResourceManager.Resources.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + protected override void ValidateResourceType(Azure.ResourceManager.ResourceIdentifier identifier) { } } - public partial class GenericResourceContainer : Azure.ResourceManager.Core.ResourceContainer + public partial class GenericResourceContainer : Azure.ResourceManager.Core.ArmContainer { protected GenericResourceContainer() { } protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } @@ -501,11 +499,11 @@ protected GenericResourceContainer() { } public virtual Azure.Response CreateOrUpdate(string resourceId, Azure.ResourceManager.Resources.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> CreateOrUpdateAsync(string resourceId, Azure.ResourceManager.Resources.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public Azure.Response Get(string resourceId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Pageable GetAll(string filter = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.AsyncPageable GetAllAsync(string filter = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Pageable GetAll(string filter = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AsyncPageable GetAllAsync(string filter = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> GetAsync(string resourceId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Pageable GetByResourceGroup(string resourceGroupName, string filter = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.AsyncPageable GetByResourceGroupAsync(string resourceGroupName, string filter = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Pageable GetByResourceGroup(string resourceGroupName, string filter = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AsyncPageable GetByResourceGroupAsync(string resourceGroupName, string filter = null, string expand = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response GetIfExists(string resourceId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> GetIfExistsAsync(string resourceId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.ResourceManager.Resources.Models.ResourceCreateOrUpdateByIdOperation StartCreateOrUpdate(string resourceId, Azure.ResourceManager.Resources.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } @@ -515,53 +513,34 @@ protected override void ValidateResourceType(Azure.ResourceManager.ResourceIdent public partial class GenericResourceData : Azure.ResourceManager.Resources.Models.TrackedResource { public GenericResourceData() { } + public System.DateTimeOffset? ChangedTime { get { throw null; } } + public System.DateTimeOffset? CreatedTime { get { throw null; } } public Azure.ResourceManager.Resources.Models.ResourceIdentity Identity { get { throw null; } set { } } public string Kind { get { throw null; } set { } } public string ManagedBy { get { throw null; } set { } } public Azure.ResourceManager.Resources.Models.Plan Plan { get { throw null; } set { } } public object Properties { get { throw null; } set { } } - public Azure.ResourceManager.Resources.Models.Sku Sku { get { throw null; } set { } } - } - public partial class GenericResourceExpanded : Azure.ResourceManager.Resources.GenericResourceOperations - { - protected GenericResourceExpanded() { } - public virtual Azure.ResourceManager.Resources.GenericResourceExpandedData Data { get { throw null; } } - } - public partial class GenericResourceExpandedData : Azure.ResourceManager.Resources.GenericResourceData - { - public GenericResourceExpandedData() { } - public System.DateTimeOffset? ChangedTime { get { throw null; } } - public System.DateTimeOffset? CreatedTime { get { throw null; } } public string ProvisioningState { get { throw null; } } + public Azure.ResourceManager.Resources.Models.Sku Sku { get { throw null; } set { } } } - public partial class GenericResourceOperations : Azure.ResourceManager.Core.ResourceOperations - { - protected GenericResourceOperations() { } - protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } - public virtual Azure.Response AddTag(string key, string value, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> AddTagAsync(string key, string value, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response Delete(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task DeleteAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response Get(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> GetAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response RemoveTag(string key, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> RemoveTagAsync(string key, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response SetTags(System.Collections.Generic.IDictionary tags, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> SetTagsAsync(System.Collections.Generic.IDictionary tags, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.ResourceManager.Resources.Models.ResourceDeleteByIdOperation StartDelete(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task StartDeleteAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.ResourceManager.Resources.Models.ResourceUpdateByIdOperation StartUpdate(Azure.ResourceManager.Resources.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task StartUpdateAsync(Azure.ResourceManager.Resources.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response Update(Azure.ResourceManager.Resources.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> UpdateAsync(Azure.ResourceManager.Resources.GenericResourceData parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - protected override void ValidateResourceType(Azure.ResourceManager.ResourceIdentifier identifier) { } - } - public partial class PredefinedTag : Azure.ResourceManager.Resources.PredefinedTagOperations + public partial class PredefinedTag : Azure.ResourceManager.Core.ArmResource { + public static readonly Azure.ResourceManager.ResourceType ResourceType; protected PredefinedTag() { } public virtual Azure.ResourceManager.Resources.PredefinedTagData Data { get { throw null; } } + public bool HasData { get { throw null; } } + protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } + public virtual Azure.Response CreateOrUpdateValue(string tagName, string tagValue, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> CreateOrUpdateValueAsync(string tagName, string tagValue, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Delete(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task DeleteAsync(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response DeleteValue(string tagName, string tagValue, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task DeleteValueAsync(string tagName, string tagValue, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.ResourceManager.Resources.Models.PredefinedTagDeleteOperation StartDelete(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartDeleteAsync(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + protected override void ValidateResourceType(Azure.ResourceManager.ResourceIdentifier identifier) { } } - public partial class PredefinedTagContainer : Azure.ResourceManager.Core.ResourceContainer + public partial class PredefinedTagContainer : Azure.ResourceManager.Core.ArmContainer { protected PredefinedTagContainer() { } protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } @@ -579,27 +558,22 @@ internal PredefinedTagData() { } public string TagName { get { throw null; } } public System.Collections.Generic.IReadOnlyList Values { get { throw null; } } } - public partial class PredefinedTagOperations : Azure.ResourceManager.Core.ResourceOperations + public partial class Provider : Azure.ResourceManager.Core.ArmResource { public static readonly Azure.ResourceManager.ResourceType ResourceType; - protected PredefinedTagOperations() { } - protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } - public virtual Azure.Response CreateOrUpdateValue(string tagName, string tagValue, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> CreateOrUpdateValueAsync(string tagName, string tagValue, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response Delete(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task DeleteAsync(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response DeleteValue(string tagName, string tagValue, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task DeleteValueAsync(string tagName, string tagValue, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.ResourceManager.Resources.Models.PredefinedTagDeleteOperation StartDelete(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task StartDeleteAsync(string tagName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - protected override void ValidateResourceType(Azure.ResourceManager.ResourceIdentifier identifier) { } - } - public partial class Provider : Azure.ResourceManager.Resources.ProviderOperations - { protected Provider() { } public virtual Azure.ResourceManager.Resources.ProviderData Data { get { throw null; } } + public bool HasData { get { throw null; } } + protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } + public virtual Azure.Response Get(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.ResourceManager.Resources.FeatureContainer GetFeatures() { throw null; } + public virtual Azure.Response Register(string resourceProviderNamespace, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> RegisterAsync(string resourceProviderNamespace, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Unregister(string resourceProviderNamespace, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> UnregisterAsync(string resourceProviderNamespace, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } - public partial class ProviderContainer : Azure.ResourceManager.Core.ResourceContainer + public partial class ProviderContainer : Azure.ResourceManager.Core.ArmContainer { protected ProviderContainer() { } protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } @@ -620,54 +594,12 @@ internal ProviderData() { } public string RegistrationState { get { throw null; } } public System.Collections.Generic.IReadOnlyList ResourceTypes { get { throw null; } } } - public partial class ProviderOperations : Azure.ResourceManager.Core.ResourceOperations + public partial class ResourceGroup : Azure.ResourceManager.Core.ArmResource { public static readonly Azure.ResourceManager.ResourceType ResourceType; - protected ProviderOperations() { } - protected ProviderOperations(Azure.ResourceManager.Core.ResourceOperations operations, Azure.ResourceManager.ResourceIdentifier id) { } - protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } - public virtual Azure.Response Get(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> GetAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.ResourceManager.Resources.FeatureContainer GetFeatures() { throw null; } - public virtual Azure.Response Register(string resourceProviderNamespace, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> RegisterAsync(string resourceProviderNamespace, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response Unregister(string resourceProviderNamespace, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> UnregisterAsync(string resourceProviderNamespace, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - } - public partial class ResourceGroup : Azure.ResourceManager.Resources.ResourceGroupOperations - { protected ResourceGroup() { } public virtual Azure.ResourceManager.Resources.ResourceGroupData Data { get { throw null; } } - } - public partial class ResourceGroupContainer : Azure.ResourceManager.Core.ResourceContainer - { - protected ResourceGroupContainer() { } - protected new Azure.ResourceManager.Resources.SubscriptionOperations Parent { get { throw null; } } - protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } - public virtual Azure.Response CheckIfExists(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> CheckIfExistsAsync(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public Azure.Response CreateOrUpdate(string name, Azure.ResourceManager.Resources.ResourceGroupData resourceDetails, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> CreateOrUpdateAsync(string name, Azure.ResourceManager.Resources.ResourceGroupData resourceDetails, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public Azure.Response Get(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Pageable GetAll(string filter = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.AsyncPageable GetAllAsync(string filter = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> GetAsync(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response GetIfExists(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> GetIfExistsAsync(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public Azure.ResourceManager.Resources.Models.ResourceGroupCreateOrUpdateOperation StartCreateOrUpdate(string name, Azure.ResourceManager.Resources.ResourceGroupData resourceDetails, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task StartCreateOrUpdateAsync(string name, Azure.ResourceManager.Resources.ResourceGroupData resourceDetails, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - } - public partial class ResourceGroupData : Azure.ResourceManager.Resources.Models.TrackedResource - { - public ResourceGroupData(string location) { } - public string ManagedBy { get { throw null; } set { } } - public Azure.ResourceManager.Resources.Models.ResourceGroupProperties Properties { get { throw null; } set { } } - } - public partial class ResourceGroupOperations : Azure.ResourceManager.Core.ResourceOperations - { - public static readonly Azure.ResourceManager.ResourceType ResourceType; - protected ResourceGroupOperations() { } - protected ResourceGroupOperations(Azure.ResourceManager.Core.ResourceOperations options, Azure.ResourceManager.ResourceIdentifier id) { } + public bool HasData { get { throw null; } } protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } public virtual Azure.Response AddTag(string key, string value, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> AddTagAsync(string key, string value, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } @@ -698,22 +630,61 @@ protected ResourceGroupOperations(Azure.ResourceManager.Core.ResourceOperations public virtual Azure.Response ValidateMoveResources(Azure.ResourceManager.Resources.Models.ResourcesMoveInfo parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task ValidateMoveResourcesAsync(Azure.ResourceManager.Resources.Models.ResourcesMoveInfo parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } - public partial class RestApiContainer : Azure.ResourceManager.Core.ResourceContainer + public partial class ResourceGroupContainer : Azure.ResourceManager.Core.ArmContainer + { + protected ResourceGroupContainer() { } + protected new Azure.ResourceManager.Resources.Subscription Parent { get { throw null; } } + protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } + public virtual Azure.Response CheckIfExists(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> CheckIfExistsAsync(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public Azure.Response CreateOrUpdate(string name, Azure.ResourceManager.Resources.ResourceGroupData resourceDetails, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> CreateOrUpdateAsync(string name, Azure.ResourceManager.Resources.ResourceGroupData resourceDetails, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public Azure.Response Get(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Pageable GetAll(string filter = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AsyncPageable GetAllAsync(string filter = null, int? top = default(int?), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetAsync(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response GetIfExists(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetIfExistsAsync(string resourceGroupName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public Azure.ResourceManager.Resources.Models.ResourceGroupCreateOrUpdateOperation StartCreateOrUpdate(string name, Azure.ResourceManager.Resources.ResourceGroupData resourceDetails, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartCreateOrUpdateAsync(string name, Azure.ResourceManager.Resources.ResourceGroupData resourceDetails, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class ResourceGroupData : Azure.ResourceManager.Resources.Models.TrackedResource + { + public ResourceGroupData(string location) { } + public string ManagedBy { get { throw null; } set { } } + public Azure.ResourceManager.Resources.Models.ResourceGroupProperties Properties { get { throw null; } set { } } + } + public partial class RestApiContainer : Azure.ResourceManager.Core.ArmContainer { protected RestApiContainer() { } protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } public virtual Azure.Pageable GetAll(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.AsyncPageable GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } - public partial class Subscription : Azure.ResourceManager.Resources.SubscriptionOperations + public partial class Subscription : Azure.ResourceManager.Core.ArmResource { + public static readonly Azure.ResourceManager.ResourceType ResourceType; protected Subscription() { } public virtual Azure.ResourceManager.Resources.SubscriptionData Data { get { throw null; } } + public bool HasData { get { throw null; } } + protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } + public virtual Azure.Response Get(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Pageable GetFeatures(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AsyncPageable GetFeaturesAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.ResourceManager.Resources.GenericResourceContainer GetGenericResources() { throw null; } + public virtual Azure.Pageable GetLocations(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AsyncPageable GetLocationsAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.ResourceManager.Resources.PredefinedTagContainer GetPredefinedTags() { throw null; } + public virtual Azure.ResourceManager.Resources.ProviderContainer GetProviders() { throw null; } + public virtual Azure.ResourceManager.Resources.ResourceGroupContainer GetResourceGroups() { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public virtual T UseClientContext(System.Func func) { throw null; } } - public partial class SubscriptionContainer : Azure.ResourceManager.Core.ResourceContainer + public partial class SubscriptionContainer : Azure.ResourceManager.Core.ArmContainer { protected SubscriptionContainer() { } - protected new Azure.ResourceManager.Resources.TenantOperations Parent { get { throw null; } } + protected new Azure.ResourceManager.Resources.Tenant Parent { get { throw null; } } protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } public virtual Azure.Response CheckIfExists(string subscriptionGuid, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> CheckIfExistsAsync(string subscriptionGuid, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } @@ -736,32 +707,24 @@ internal SubscriptionData() { } public Azure.ResourceManager.Resources.Models.SubscriptionPolicies SubscriptionPolicies { get { throw null; } } public string TenantId { get { throw null; } } } - public partial class SubscriptionOperations : Azure.ResourceManager.Core.ResourceOperations + public partial class TagResource : Azure.ResourceManager.Core.ArmResource { - public static readonly Azure.ResourceManager.ResourceType ResourceType; - protected SubscriptionOperations() { } - protected SubscriptionOperations(Azure.ResourceManager.Core.ResourceOperations operations, Azure.ResourceManager.ResourceIdentifier id) { } + protected TagResource() { } + public virtual Azure.ResourceManager.Resources.TagResourceData Data { get { throw null; } } + public bool HasData { get { throw null; } } protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } - public virtual Azure.Response Get(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> GetAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Pageable GetFeatures(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.AsyncPageable GetFeaturesAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.ResourceManager.Resources.GenericResourceContainer GetGenericResources() { throw null; } - public virtual Azure.Pageable GetLocations(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.AsyncPageable GetLocationsAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.ResourceManager.Resources.PredefinedTagOperations GetPreDefinedTagOperations() { throw null; } - public virtual Azure.ResourceManager.Resources.PredefinedTagContainer GetPredefinedTags() { throw null; } - public virtual Azure.ResourceManager.Resources.ProviderContainer GetProviders() { throw null; } - public virtual Azure.ResourceManager.Resources.ResourceGroupContainer GetResourceGroups() { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public virtual T UseClientContext(System.Func func) { throw null; } - } - public partial class TagResource : Azure.ResourceManager.Resources.TagResourceOperations - { - internal TagResource() { } - public Azure.ResourceManager.Resources.TagResourceData Data { get { throw null; } } + public virtual Azure.Response Delete(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task DeleteAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Get(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response StartDelete(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartDeleteAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.ResourceManager.Resources.Models.TagCreateOrUpdateOperation StartUpdate(Azure.ResourceManager.Resources.Models.TagPatchResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartUpdateAsync(Azure.ResourceManager.Resources.Models.TagPatchResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Update(Azure.ResourceManager.Resources.Models.TagPatchResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> UpdateAsync(Azure.ResourceManager.Resources.Models.TagPatchResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } - public partial class TagResourceContainer : Azure.ResourceManager.Core.ResourceContainer + public partial class TagResourceContainer : Azure.ResourceManager.Core.ArmContainer { protected TagResourceContainer() { } public new Azure.ResourceManager.ResourceIdentifier Id { get { throw null; } } @@ -776,28 +739,23 @@ public partial class TagResourceData : Azure.ResourceManager.Resources.Models.Re public TagResourceData(Azure.ResourceManager.Resources.Models.Tag properties) { } public Azure.ResourceManager.Resources.Models.Tag Properties { get { throw null; } set { } } } - public partial class TagResourceOperations : Azure.ResourceManager.Core.ResourceOperations - { - protected TagResourceOperations() { } - public new Azure.ResourceManager.ResourceIdentifier Id { get { throw null; } } - protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } - public virtual Azure.Response Delete(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task DeleteAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response Get(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> GetAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response StartDelete(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task StartDeleteAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.ResourceManager.Resources.Models.TagCreateOrUpdateOperation StartUpdate(Azure.ResourceManager.Resources.Models.TagPatchResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task StartUpdateAsync(Azure.ResourceManager.Resources.Models.TagPatchResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response Update(Azure.ResourceManager.Resources.Models.TagPatchResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> UpdateAsync(Azure.ResourceManager.Resources.Models.TagPatchResource parameters, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - } - public partial class Tenant : Azure.ResourceManager.Resources.TenantOperations + public partial class Tenant : Azure.ResourceManager.Core.ArmResource { + public static readonly Azure.ResourceManager.ResourceType ResourceType; protected Tenant() { } public virtual Azure.ResourceManager.Resources.TenantData Data { get { throw null; } } + public bool HasData { get { throw null; } } + protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } + public virtual Azure.ResourceManager.Management.ManagementGroupContainer GetManagementGroups() { throw null; } + public virtual Azure.ResourceManager.Resources.SubscriptionContainer GetSubscriptions() { throw null; } + public virtual Azure.Response GetTenantProvider(string resourceProviderNamespace, string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetTenantProviderAsync(string resourceProviderNamespace, string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Pageable GetTenantProviders(int? top = default(int?), string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AsyncPageable GetTenantProvidersAsync(int? top = default(int?), string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public virtual T UseClientContext(System.Func func) { throw null; } } - public partial class TenantContainer : Azure.ResourceManager.Core.ResourceContainer + public partial class TenantContainer : Azure.ResourceManager.Core.ArmContainer { protected TenantContainer() { } protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } @@ -815,20 +773,6 @@ internal TenantData() { } public Azure.ResourceManager.Resources.Models.TenantCategory? TenantCategory { get { throw null; } } public string TenantId { get { throw null; } } } - public partial class TenantOperations : Azure.ResourceManager.Core.ResourceOperations - { - public static readonly Azure.ResourceManager.ResourceType ResourceType; - protected TenantOperations() { } - protected override Azure.ResourceManager.ResourceType ValidResourceType { get { throw null; } } - public virtual Azure.ResourceManager.Management.ManagementGroupContainer GetManagementGroups() { throw null; } - public virtual Azure.Response GetProvider(string resourceProviderNamespace, string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> GetProviderAsync(string resourceProviderNamespace, string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Pageable GetProviders(int? top = default(int?), string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.AsyncPageable GetProvidersAsync(int? top = default(int?), string expand = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.ResourceManager.Resources.SubscriptionContainer GetSubscriptions() { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public virtual T UseClientContext(System.Func func) { throw null; } - } } namespace Azure.ResourceManager.Resources.Models { diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/ArmClient.cs b/sdk/resourcemanager/Azure.ResourceManager/src/ArmClient.cs index ad0928e309063..f0376e1e41193 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/ArmClient.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/ArmClient.cs @@ -25,7 +25,7 @@ public class ArmClient /// The base URI of the service. /// internal const string DefaultUri = "https://management.azure.com"; - private TenantOperations _tenant; + private Tenant _tenant; /// /// Initializes a new instance of the class for mocking. @@ -104,12 +104,12 @@ public ArmClient( Credential = credential; BaseUri = baseUri ?? new Uri(DefaultUri); ClientOptions = options?.Clone() ?? new ArmClientOptions(); - Pipeline = ManagementPipelineBuilder.Build(Credential, options.Scope, options ?? ClientOptions); + Pipeline = ManagementPipelineBuilder.Build(Credential, ClientOptions.Scope, options ?? ClientOptions); - _tenant = new TenantOperations(ClientOptions, Credential, BaseUri, Pipeline); + _tenant = new Tenant(ClientOptions, Credential, BaseUri, Pipeline); DefaultSubscription = string.IsNullOrWhiteSpace(defaultSubscriptionId) ? GetDefaultSubscription() - : GetSubscriptions().GetIfExists(defaultSubscriptionId); + : GetSubscriptions().Get(defaultSubscriptionId); ClientOptions.ApiVersions.SetProviderClient(this); } @@ -157,10 +157,10 @@ public virtual TenantContainer GetTenants() /// Gets a resource group operations object. /// /// The id of the resourcegroup. - /// Resource operations of the resource. - public virtual ResourceGroupOperations GetResourceGroupOperations(string id) + /// Resource operations of the resourcegroup. + public virtual ResourceGroup GetResourceGroup(ResourceIdentifier id) { - return new ResourceGroupOperations(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), id); + return new ResourceGroup(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), id); } /// @@ -168,9 +168,9 @@ public virtual ResourceGroupOperations GetResourceGroupOperations(string id) /// /// The id of the subscription. /// Resource operations of the subscription. - public virtual SubscriptionOperations GetSubscriptionOperations(string id) + public virtual Subscription GetSubscription(ResourceIdentifier id) { - return new SubscriptionOperations(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), id); + return new Subscription(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), id); } /// @@ -178,19 +178,29 @@ public virtual SubscriptionOperations GetSubscriptionOperations(string id) /// /// The id of the feature. /// Resource operations of the feature. - public virtual FeatureOperations GetFeatureOperations(string id) + public virtual Feature GetFeature(ResourceIdentifier id) { - return new FeatureOperations(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), id); + return new Feature(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), id); } /// - /// Gets a feature operations object. + /// Gets a Provider operations object. /// - /// The id of the feature. - /// Resource operations of the feature. - public virtual ProviderOperations GetProviderOperations(string id) + /// The id of the Provider. + /// Resource operations of the Provider. + public virtual Provider GetProvider(ResourceIdentifier id) + { + return new Provider(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), id); + } + + /// + /// Gets a PredefinedTag operations object. + /// + /// The id of the PredefinedTag. + /// Resource operations of the PredefinedTag. + public virtual PredefinedTag GetPreDefinedTag(ResourceIdentifier id) { - return new ProviderOperations(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), id); + return new PredefinedTag(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), id); } private Subscription GetDefaultSubscription() @@ -219,7 +229,7 @@ public virtual T UseClientContext(Func /// A list of the IDs of the resources to retrieve. /// The list of operations that can be performed over the GenericResources. - public virtual IReadOnlyList GetGenericResourceOperations(params string[] ids) + public virtual IReadOnlyList GetGenericResources(params ResourceIdentifier[] ids) { return GetGenericResourceOperationsInternal(ids); } @@ -229,22 +239,42 @@ public virtual IReadOnlyList GetGenericResourceOperat /// /// A list of the IDs of the resources to retrieve. /// The list of operations that can be performed over the GenericResources. - public virtual IReadOnlyList GetGenericResourceOperations(IEnumerable ids) + public virtual IReadOnlyList GetGenericResources(IEnumerable ids) { return GetGenericResourceOperationsInternal(ids); } - private IReadOnlyList GetGenericResourceOperationsInternal(IEnumerable ids) + /// + /// Get the operations for a list of specific resources. + /// + /// A list of the IDs of the resources to retrieve. + /// The list of operations that can be performed over the GenericResources. + public virtual IReadOnlyList GetGenericResources(params string[] ids) + { + return GetGenericResourceOperationsInternal(ids.Select(id => new ResourceIdentifier(id))); + } + + /// + /// Get the operations for a list of specific resources. + /// + /// A list of the IDs of the resources to retrieve. + /// The list of operations that can be performed over the GenericResources. + public virtual IReadOnlyList GetGenericResources(IEnumerable ids) + { + return GetGenericResourceOperationsInternal(ids.Select(id => new ResourceIdentifier(id))); + } + + private IReadOnlyList GetGenericResourceOperationsInternal(IEnumerable ids) { if (ids == null) { throw new ArgumentNullException(nameof(ids)); } - var genericRespirceOperations = new ChangeTrackingList(); + var genericRespirceOperations = new ChangeTrackingList(); foreach (string id in ids) { - genericRespirceOperations.Add(new GenericResourceOperations(DefaultSubscription, id)); + genericRespirceOperations.Add(new GenericResource(DefaultSubscription, id)); } return genericRespirceOperations; } @@ -254,14 +284,14 @@ private IReadOnlyList GetGenericResourceOperationsInt /// /// The id of the resource to retrieve. /// The operations that can be performed over a specific GenericResource. - public virtual GenericResourceOperations GetGenericResourceOperations(string id) + public virtual GenericResource GetGenericResource(ResourceIdentifier id) { if (id == null) { throw new ArgumentNullException(nameof(id)); } - return new GenericResourceOperations(DefaultSubscription, id); + return new GenericResource(DefaultSubscription, id); } /// @@ -279,14 +309,14 @@ public virtual RestApiContainer GetRestApis(string azureNamespace) /// The properties to include in the results. For example, use &$expand=metadata in the query string to retrieve resource provider metadata. To include property aliases in response, use $expand=resourceTypes/aliases. /// The cancellation token to use. [ForwardsClientCalls] - public virtual Pageable GetProviders(int? top = null, string expand = null, CancellationToken cancellationToken = default) => _tenant.GetProviders(top, expand, cancellationToken); + public virtual Pageable GetTenantProviders(int? top = null, string expand = null, CancellationToken cancellationToken = default) => _tenant.GetTenantProviders(top, expand, cancellationToken); /// Gets all resource providers for a subscription. /// The number of results to return. If null is passed returns all deployments. /// The properties to include in the results. For example, use &$expand=metadata in the query string to retrieve resource provider metadata. To include property aliases in response, use $expand=resourceTypes/aliases. /// The cancellation token to use. [ForwardsClientCalls] - public virtual AsyncPageable GetProvidersAsync(int? top = null, string expand = null, CancellationToken cancellationToken = default) => _tenant.GetProvidersAsync(top, expand, cancellationToken); + public virtual AsyncPageable GetTenantProvidersAsync(int? top = null, string expand = null, CancellationToken cancellationToken = default) => _tenant.GetTenantProvidersAsync(top, expand, cancellationToken); /// Gets the specified resource provider at the tenant level. /// The namespace of the resource provider. @@ -294,7 +324,7 @@ public virtual RestApiContainer GetRestApis(string azureNamespace) /// The cancellation token to use. /// is null. [ForwardsClientCalls] - public virtual Response GetProvider(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default) => _tenant.GetProvider(resourceProviderNamespace, expand, cancellationToken); + public virtual Response GetTenantProvider(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default) => _tenant.GetTenantProvider(resourceProviderNamespace, expand, cancellationToken); /// Gets the specified resource provider at the tenant level. /// The namespace of the resource provider. @@ -302,7 +332,7 @@ public virtual RestApiContainer GetRestApis(string azureNamespace) /// The cancellation token to use. /// is null. [ForwardsClientCalls] - public virtual async Task> GetProviderAsync(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default) => await _tenant.GetProviderAsync(resourceProviderNamespace, expand, cancellationToken).ConfigureAwait(false); + public virtual async Task> GetTenantProviderAsync(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default) => await _tenant.GetTenantProviderAsync(resourceProviderNamespace, expand, cancellationToken).ConfigureAwait(false); /// /// Gets the management group container for this tenant. @@ -315,6 +345,6 @@ public virtual RestApiContainer GetRestApis(string azureNamespace) /// /// The id of the management group operations. /// A client to perform operations on the management group. - public virtual ManagementGroupOperations GetManagementGroupOperations(string id) => _tenant.GetManagementGroupOperations(id); + public virtual ManagementGroup GetManagementGroup(ResourceIdentifier id) => _tenant.GetManagementGroup(id); } } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/ResourceContainer.cs b/sdk/resourcemanager/Azure.ResourceManager/src/ArmContainer.cs similarity index 63% rename from sdk/resourcemanager/Azure.ResourceManager/src/ResourceContainer.cs rename to sdk/resourcemanager/Azure.ResourceManager/src/ArmContainer.cs index a3f8e5911143b..fc55e7d76565b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/ResourceContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/ArmContainer.cs @@ -10,51 +10,51 @@ namespace Azure.ResourceManager.Core /// /// Base class representing collection of resources. /// - public abstract class ResourceContainer : ResourceOperations + public abstract class ArmContainer : ArmResource { /// - /// Initializes a new instance of the class for mocking. + /// Initializes a new instance of the class for mocking. /// - protected ResourceContainer() + protected ArmContainer() { } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// - internal ResourceContainer(ClientContext clientContext) + internal ArmContainer(ClientContext clientContext) : base(clientContext, ResourceIdentifier.RootResourceIdentifier) { } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// /// The identifier of the resource that is the target of operations. - internal ResourceContainer(ClientContext clientContext, ResourceIdentifier id) + internal ArmContainer(ClientContext clientContext, ResourceIdentifier id) : base(clientContext, id) { } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// The options to use. /// The credential to use. /// The base uri to use. /// The http pipeline policy to use. - protected ResourceContainer(ArmClientOptions options, TokenCredential credential, Uri baseUri, HttpPipeline pipeline) + protected ArmContainer(ArmClientOptions options, TokenCredential credential, Uri baseUri, HttpPipeline pipeline) : this(new ClientContext(options, credential, baseUri, pipeline)) { } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// The resource representing the parent resource. - protected ResourceContainer(ResourceOperations parent) + protected ArmContainer(ArmResource parent) : base(new ClientContext(parent.ClientOptions, parent.Credential, parent.BaseUri, parent.Pipeline), parent.Id) { Parent = parent; @@ -63,6 +63,6 @@ protected ResourceContainer(ResourceOperations parent) /// /// Gets the parent resource of this resource. /// - protected ResourceOperations Parent { get; } + protected ArmResource Parent { get; } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/ResourceOperations.cs b/sdk/resourcemanager/Azure.ResourceManager/src/ArmResource.cs similarity index 82% rename from sdk/resourcemanager/Azure.ResourceManager/src/ResourceOperations.cs rename to sdk/resourcemanager/Azure.ResourceManager/src/ArmResource.cs index 924fb9e22a232..c24ae28ad15ef 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/ResourceOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/ArmResource.cs @@ -16,48 +16,45 @@ namespace Azure.ResourceManager.Core /// /// A class representing the operations that can be performed over a specific resource. /// - public abstract class ResourceOperations + public abstract class ArmResource { private TagResourceContainer _tagContainer; - private TagResourceOperations _tagResourceOperations; - private TenantOperations _tenant; + private TagResource _tagResource; + private Tenant _tenant; /// - /// Initializes a new instance of the class for mocking. + /// Initializes a new instance of the class for mocking. /// - protected ResourceOperations() + protected ArmResource() { } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// The resource representing the parent resource. /// The identifier of the resource that is the target of operations. - protected ResourceOperations(ResourceOperations parentOperations, ResourceIdentifier id) + protected ArmResource(ArmResource parentOperations, ResourceIdentifier id) : this(new ClientContext(parentOperations.ClientOptions, parentOperations.Credential, parentOperations.BaseUri, parentOperations.Pipeline), id) { } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// /// The identifier of the resource that is the target of operations. - internal ResourceOperations(ClientContext clientContext, ResourceIdentifier id) + internal ArmResource(ClientContext clientContext, ResourceIdentifier id) { ClientOptions = clientContext.ClientOptions; Id = id; Credential = clientContext.Credential; BaseUri = clientContext.BaseUri; Pipeline = clientContext.Pipeline; - Diagnostics = new ClientDiagnostics(ClientOptions); ValidateResourceType(id); } - internal ClientDiagnostics Diagnostics { get; } - - private TenantOperations Tenant => _tenant ??= new TenantOperations(ClientOptions, Credential, BaseUri, Pipeline); + private Tenant Tenant => _tenant ??= new Tenant(ClientOptions, Credential, BaseUri, Pipeline); /// /// Gets the resource identifier. @@ -94,7 +91,7 @@ internal ResourceOperations(ClientContext clientContext, ResourceIdentifier id) /// Gets the TagResourceOperations. /// /// A TagResourceOperations. - protected internal TagResourceOperations TagResourceOperations => _tagResourceOperations ??= new TagResourceOperations(this, Id); + protected internal TagResource TagResource => _tagResource ??= new TagResource(this, Id); /// /// Gets the TagsOperations. @@ -119,7 +116,7 @@ protected virtual void ValidateResourceType(ResourceIdentifier identifier) /// A collection of location that may take multiple service requests to iterate over. protected IEnumerable ListAvailableLocations(ResourceType resourceType, CancellationToken cancellationToken = default) { - ProviderInfo resourcePageableProvider = Tenant.GetProvider(resourceType.Namespace, null, cancellationToken); + ProviderInfo resourcePageableProvider = Tenant.GetTenantProvider(resourceType.Namespace, null, cancellationToken); if (resourcePageableProvider is null) throw new InvalidOperationException($"{resourceType.Type} not found for {resourceType.Namespace}"); var theResource = resourcePageableProvider.ResourceTypes.FirstOrDefault(r => resourceType.Type.Equals(r.ResourceType)); @@ -136,7 +133,7 @@ protected IEnumerable ListAvailableLocations(ResourceType resourceType /// A collection of location that may take multiple service requests to iterate over. protected async Task> ListAvailableLocationsAsync(ResourceType resourceType, CancellationToken cancellationToken = default) { - ProviderInfo resourcePageableProvider = await Tenant.GetProviderAsync(resourceType.Namespace, null, cancellationToken).ConfigureAwait(false); + ProviderInfo resourcePageableProvider = await Tenant.GetTenantProviderAsync(resourceType.Namespace, null, cancellationToken).ConfigureAwait(false); if (resourcePageableProvider is null) throw new InvalidOperationException($"{resourceType.Type} not found for {resourceType.Namespace}"); var theResource = resourcePageableProvider.ResourceTypes.FirstOrDefault(r => resourceType.Type.Equals(r.ResourceType)); diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Custom/Resources/LongRunningOperation/PredefinedTagCreateOrUpdateOperation.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Custom/Resources/LongRunningOperation/PredefinedTagCreateOrUpdateOperation.cs index dcda274c94b04..9cc54dcee99ff 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Custom/Resources/LongRunningOperation/PredefinedTagCreateOrUpdateOperation.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Custom/Resources/LongRunningOperation/PredefinedTagCreateOrUpdateOperation.cs @@ -23,7 +23,7 @@ protected PredefinedTagCreateOrUpdateOperation() { } - internal PredefinedTagCreateOrUpdateOperation(ResourceOperations parentOperation, Response response) + internal PredefinedTagCreateOrUpdateOperation(ArmResource parentOperation, Response response) { _operation = new OperationOrResponseInternals(Response.FromValue(new PredefinedTag(parentOperation, response.Value), response.GetRawResponse())); } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Custom/Resources/PredefinedTag.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Custom/Resources/PredefinedTag.cs index eb5316cfb7363..1d93dfbb8017c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Custom/Resources/PredefinedTag.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Custom/Resources/PredefinedTag.cs @@ -1,16 +1,27 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure.Core.Pipeline; using Azure.ResourceManager.Core; using Azure.ResourceManager.Resources.Models; namespace Azure.ResourceManager.Resources { - /// - /// A class representing a Tags along with the instance operations that can be performed on it. - /// - public class PredefinedTag : PredefinedTagOperations + /// The predefined tag client. + public class PredefinedTag : ArmResource { + private readonly ClientDiagnostics _clientDiagnostics; + private readonly TagRestOperations _restClient; + private readonly PredefinedTagData _data; + + /// + /// The resource type for predefined tag. + /// + public static readonly ResourceType ResourceType = "Microsoft.Resources/tagNames"; + /// /// Initializes a new instance of the class for mocking. /// @@ -18,20 +29,213 @@ protected PredefinedTag() { } + /// + /// Initializes a new instance of the class. + /// + /// + /// The id of the subscription. + internal PredefinedTag(ClientContext clientContext, ResourceIdentifier id) + : base(clientContext, id) + { + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _restClient = new TagRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); + } + /// /// Initializes a new instance of the class. /// /// The operations object to copy the client parameters from. /// The data model representing the generic azure resource. - internal PredefinedTag(ResourceOperations operations, PredefinedTagData data) - : base(new ClientContext(operations.ClientOptions,operations.Credential, operations.BaseUri, operations.Pipeline), operations.Id) + internal PredefinedTag(ArmResource operations, PredefinedTagData data) + : base(operations, data.Id) { - Data = data; + _data = data; + HasData = true; + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _restClient = new TagRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); } + /// + /// Gets the valid resource type for this operation class. + /// + protected override ResourceType ValidResourceType => ResourceType; + + /// + /// Gets whether or not the current instance has data. + /// + public bool HasData { get; } + /// /// Gets the Tags data model. /// - public virtual PredefinedTagData Data { get; } + /// Throws if there is no data loaded in the current instance. + public virtual PredefinedTagData Data + { + get + { + if (!HasData) + throw new InvalidOperationException("The current instance does not have data you must call Get first"); + return _data; + } + } + + /// This operation allows deleting a value from the list of predefined values for an existing predefined tag name. The value being deleted must not be in use as a tag value for the given tag name for any resource. + /// The name of the tag. + /// The value of the tag to delete. + /// The cancellation token to use. + public virtual async Task DeleteValueAsync(string tagName, string tagValue, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("PredefinedTag.DeleteValue"); + scope.Start(); + try + { + return await _restClient.DeleteValueAsync(tagName, tagValue, cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// This operation allows deleting a value from the list of predefined values for an existing predefined tag name. The value being deleted must not be in use as a tag value for the given tag name for any resource. + /// The name of the tag. + /// The value of the tag to delete. + /// The cancellation token to use. + public virtual Response DeleteValue(string tagName, string tagValue, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("PredefinedTag.DeleteValue"); + scope.Start(); + try + { + return _restClient.DeleteValue(tagName, tagValue, cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// This operation allows adding a value to the list of predefined values for an existing predefined tag name. A tag value can have a maximum of 256 characters. + /// The name of the tag. + /// The value of the tag to create. + /// The cancellation token to use. + public virtual async Task> CreateOrUpdateValueAsync(string tagName, string tagValue, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("PredefinedTag.CreateOrUpdateValue"); + scope.Start(); + try + { + return await _restClient.CreateOrUpdateValueAsync(tagName, tagValue, cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// This operation allows adding a value to the list of predefined values for an existing predefined tag name. A tag value can have a maximum of 256 characters. + /// The name of the tag. + /// The value of the tag to create. + /// The cancellation token to use. + public virtual Response CreateOrUpdateValue(string tagName, string tagValue, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("PredefinedTag.CreateOrUpdateValue"); + scope.Start(); + try + { + return _restClient.CreateOrUpdateValue(tagName, tagValue, cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// This operation allows deleting a name from the list of predefined tag names for the given subscription. The name being deleted must not be in use as a tag name for any resource. All predefined values for the given name must have already been deleted. + /// The name of the tag. + /// The cancellation token to use. + public virtual async Task DeleteAsync(string tagName, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("PredefinedTag.Delete"); + scope.Start(); + try + { + var operation = await StartDeleteAsync(tagName, cancellationToken).ConfigureAwait(false); + return await operation.WaitForCompletionResponseAsync(cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// This operation allows deleting a name from the list of predefined tag names for the given subscription. The name being deleted must not be in use as a tag name for any resource. All predefined values for the given name must have already been deleted. + /// The name of the tag. + /// The cancellation token to use. + public virtual Response Delete(string tagName, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("PredefinedTag.Delete"); + scope.Start(); + try + { + var operation = StartDelete(tagName, cancellationToken); + return operation.WaitForCompletion(cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// This operation allows deleting a name from the list of predefined tag names for the given subscription. The name being deleted must not be in use as a tag name for any resource. All predefined values for the given name must have already been deleted. + /// The name of the tag. + /// The cancellation token to use. + public virtual async Task StartDeleteAsync(string tagName, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("PredefinedTag.StartDelete"); + scope.Start(); + try + { + var response = await _restClient.DeleteAsync(tagName, cancellationToken).ConfigureAwait(false); + return new PredefinedTagDeleteOperation(_clientDiagnostics, Pipeline, _restClient.CreateDeleteRequest(Id.Name).Request, response); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// This operation allows deleting a name from the list of predefined tag names for the given subscription. The name being deleted must not be in use as a tag name for any resource. All predefined values for the given name must have already been deleted. + /// The name of the tag. + /// The cancellation token to use. + public virtual PredefinedTagDeleteOperation StartDelete(string tagName, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("PredefinedTag.StartDelete"); + scope.Start(); + try + { + var response = _restClient.Delete(tagName, cancellationToken); + return new PredefinedTagDeleteOperation(_clientDiagnostics, Pipeline, _restClient.CreateDeleteRequest(Id.Name).Request, response); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + protected override void ValidateResourceType(ResourceIdentifier identifier) + { + if (identifier is null) + throw new ArgumentException("Invalid resource type for TagsOperation", nameof(identifier)); + } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Custom/Resources/PredefinedTagContainer.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Custom/Resources/PredefinedTagContainer.cs index 0c1cebaa224e7..d40ce5dd7e748 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Custom/Resources/PredefinedTagContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Custom/Resources/PredefinedTagContainer.cs @@ -6,6 +6,7 @@ using System.Threading; using System.Threading.Tasks; using Azure.Core; +using Azure.Core.Pipeline; using Azure.ResourceManager.Core; using Azure.ResourceManager.Resources.Models; @@ -14,8 +15,11 @@ namespace Azure.ResourceManager.Resources /// /// A class representing collection of Tag and its operations. /// - public class PredefinedTagContainer : ResourceContainer + public class PredefinedTagContainer : ArmContainer { + private ClientDiagnostics _clientDiagnostics; + private TagRestOperations _restClient; + /// /// Initializes a new instance of the class for mocking. /// @@ -31,18 +35,19 @@ protected PredefinedTagContainer() internal PredefinedTagContainer(ClientContext clientContext, ResourceIdentifier parentId) : base(clientContext, parentId) { - RestClient = new TagRestOperations(Diagnostics, Pipeline, parentId.SubscriptionId, BaseUri); } /// /// Gets the valid resource type associated with the container. /// - protected override ResourceType ValidResourceType => SubscriptionOperations.ResourceType; + protected override ResourceType ValidResourceType => Subscription.ResourceType; /// /// Gets the operations that can be performed on the container. /// - private TagRestOperations RestClient; + private TagRestOperations RestClient => _restClient ??= new TagRestOperations(Diagnostics, Pipeline, Id.SubscriptionId, BaseUri); + + private ClientDiagnostics Diagnostics => _clientDiagnostics ??= new ClientDiagnostics(ClientOptions); /// This operation allows adding a name to the list of predefined tag names for the given subscription. A tag name can have a maximum of 512 characters and is case-insensitive. Tag names cannot have the following prefixes which are reserved for Azure use: 'microsoft', 'azure', 'windows'. /// The name of the tag to create. diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Custom/Resources/PredefinedTagOperations.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Custom/Resources/PredefinedTagOperations.cs deleted file mode 100644 index 88b92b749cb3b..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Custom/Resources/PredefinedTagOperations.cs +++ /dev/null @@ -1,204 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; -using System.Threading; -using System.Threading.Tasks; -using Azure.Core; -using Azure.ResourceManager.Core; -using Azure.ResourceManager.Resources.Models; - -namespace Azure.ResourceManager.Resources -{ - /// The predefined tag client. - public class PredefinedTagOperations : ResourceOperations - { - /// - /// The resource type for predefined tag. - /// - public static readonly ResourceType ResourceType = "Microsoft.Resources/tagNames"; - - /// - /// Initializes a new instance of the class for mocking. - /// - protected PredefinedTagOperations() - { - } - - /// - /// Initializes a new instance of the class. - /// - /// - /// The id of the subscription. - internal PredefinedTagOperations(ClientContext clientContext, ResourceIdentifier id) - : base(clientContext, id) - { - } - - /// - /// Gets the valid resource type for this operation class. - /// - protected override ResourceType ValidResourceType => ResourceType; - - private TagRestOperations RestClient => new TagRestOperations(Diagnostics, Pipeline, Id.SubscriptionId, BaseUri); - - /// This operation allows deleting a value from the list of predefined values for an existing predefined tag name. The value being deleted must not be in use as a tag value for the given tag name for any resource. - /// The name of the tag. - /// The value of the tag to delete. - /// The cancellation token to use. - public virtual async Task DeleteValueAsync(string tagName, string tagValue, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("PredefinedTagOperations.DeleteValue"); - scope.Start(); - try - { - return await RestClient.DeleteValueAsync(tagName, tagValue, cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// This operation allows deleting a value from the list of predefined values for an existing predefined tag name. The value being deleted must not be in use as a tag value for the given tag name for any resource. - /// The name of the tag. - /// The value of the tag to delete. - /// The cancellation token to use. - public virtual Response DeleteValue(string tagName, string tagValue, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("PredefinedTagOperations.DeleteValue"); - scope.Start(); - try - { - return RestClient.DeleteValue(tagName, tagValue, cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// This operation allows adding a value to the list of predefined values for an existing predefined tag name. A tag value can have a maximum of 256 characters. - /// The name of the tag. - /// The value of the tag to create. - /// The cancellation token to use. - public virtual async Task> CreateOrUpdateValueAsync(string tagName, string tagValue, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("PredefinedTagOperations.CreateOrUpdateValue"); - scope.Start(); - try - { - return await RestClient.CreateOrUpdateValueAsync(tagName, tagValue, cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// This operation allows adding a value to the list of predefined values for an existing predefined tag name. A tag value can have a maximum of 256 characters. - /// The name of the tag. - /// The value of the tag to create. - /// The cancellation token to use. - public virtual Response CreateOrUpdateValue(string tagName, string tagValue, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("PredefinedTagOperations.CreateOrUpdateValue"); - scope.Start(); - try - { - return RestClient.CreateOrUpdateValue(tagName, tagValue, cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// This operation allows deleting a name from the list of predefined tag names for the given subscription. The name being deleted must not be in use as a tag name for any resource. All predefined values for the given name must have already been deleted. - /// The name of the tag. - /// The cancellation token to use. - public virtual async Task DeleteAsync(string tagName, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("PredefinedTagOperations.Delete"); - scope.Start(); - try - { - var operation = await StartDeleteAsync(tagName, cancellationToken).ConfigureAwait(false); - return await operation.WaitForCompletionResponseAsync(cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// This operation allows deleting a name from the list of predefined tag names for the given subscription. The name being deleted must not be in use as a tag name for any resource. All predefined values for the given name must have already been deleted. - /// The name of the tag. - /// The cancellation token to use. - public virtual Response Delete(string tagName, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("PredefinedTagOperations.Delete"); - scope.Start(); - try - { - var operation = StartDelete(tagName, cancellationToken); - return operation.WaitForCompletion(cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// This operation allows deleting a name from the list of predefined tag names for the given subscription. The name being deleted must not be in use as a tag name for any resource. All predefined values for the given name must have already been deleted. - /// The name of the tag. - /// The cancellation token to use. - public virtual async Task StartDeleteAsync(string tagName, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("PredefinedTagOperations.StartDelete"); - scope.Start(); - try - { - var response = await RestClient.DeleteAsync(tagName, cancellationToken).ConfigureAwait(false); - return new PredefinedTagDeleteOperation(Diagnostics, Pipeline, RestClient.CreateDeleteRequest(Id.Name).Request, response); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// This operation allows deleting a name from the list of predefined tag names for the given subscription. The name being deleted must not be in use as a tag name for any resource. All predefined values for the given name must have already been deleted. - /// The name of the tag. - /// The cancellation token to use. - public virtual PredefinedTagDeleteOperation StartDelete(string tagName, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("PredefinedTagOperations.StartDelete"); - scope.Start(); - try - { - var response = RestClient.Delete(tagName, cancellationToken); - return new PredefinedTagDeleteOperation(Diagnostics, Pipeline, RestClient.CreateDeleteRequest(Id.Name).Request, response); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - protected override void ValidateResourceType(ResourceIdentifier identifier) - { - if (identifier is null) - throw new ArgumentException("Invalid resource type for TagsOperation", nameof(identifier)); - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/LongRunningOperation/ManagementGroupCreateOrUpdateOperation.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/LongRunningOperation/ManagementGroupCreateOrUpdateOperation.cs index 66b292b8ba308..daae77532d988 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/LongRunningOperation/ManagementGroupCreateOrUpdateOperation.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/LongRunningOperation/ManagementGroupCreateOrUpdateOperation.cs @@ -24,14 +24,14 @@ public partial class ManagementGroupCreateOrUpdateOperation : Operation _operation; - private readonly ResourceOperations _operationBase; + private readonly ArmResource _operationBase; /// Initializes a new instance of ManagementGroupCreateOrUpdateOperation for mocking. protected ManagementGroupCreateOrUpdateOperation() { } - internal ManagementGroupCreateOrUpdateOperation(ResourceOperations operationsBase, ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + internal ManagementGroupCreateOrUpdateOperation(ArmResource operationsBase, ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) { _operation = new OperationOrResponseInternals(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.AzureAsyncOperation, "ManagementGroupCreateOrUpdateOperation"); _operationBase = operationsBase; diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroup.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroup.cs index cfa08a43bb5a6..d5eaad7dae8a8 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroup.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroup.cs @@ -1,37 +1,370 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure.Core; +using Azure.Core.Pipeline; using Azure.ResourceManager.Core; using Azure.ResourceManager.Management.Models; +using Azure.ResourceManager.Resources; namespace Azure.ResourceManager.Management { /// - /// A class representing a ManagementGroup along with the instance operations that can be performed on it. + /// A class representing the operations that can be performed over a specific ManagementGroup. /// - public class ManagementGroup : ManagementGroupOperations + public class ManagementGroup : ArmResource { + private readonly ClientDiagnostics _clientDiagnostics; + private readonly ManagementGroupsRestOperations _restClient; + private readonly ManagementGroupData _data; + /// - /// Initializes a new instance of the class for mocking. + /// Initializes a new instance of the class for mocking. /// protected ManagementGroup() { } + /// + /// Initializes a new instance of the class. + /// + /// The client parameters to use in these operations. + /// The identifier of the resource that is the target of operations. + protected internal ManagementGroup(ArmResource options, ResourceIdentifier id) + : base(options, id) + { + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _restClient = new ManagementGroupsRestOperations(_clientDiagnostics, Pipeline, BaseUri); + } + /// /// Initializes a new instance of the class. /// /// The operations to copy the client options from. /// The ManagementGroupData to use in these operations. - internal ManagementGroup(ResourceOperations operations, ManagementGroupData resource) + internal ManagementGroup(ArmResource operations, ManagementGroupData resource) : base(operations, resource.Id) { - Data = resource; + _data = resource; + HasData = true; + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _restClient = new ManagementGroupsRestOperations(_clientDiagnostics, Pipeline, BaseUri); } + /// + /// Gets the resource type definition for a ResourceType. + /// + public static readonly ResourceType ResourceType = "Microsoft.Management/managementGroups"; + + /// + protected override ResourceType ValidResourceType => ResourceType; + + /// + /// Gets whether or not the current instance has data. + /// + public bool HasData { get; } + /// /// Gets the data representing this ManagementGroup. /// - public virtual ManagementGroupData Data { get; } + /// Throws if there is no data loaded in the current instance. + public virtual ManagementGroupData Data + { + get + { + if (!HasData) + throw new InvalidOperationException("The current instance does not have data you must call Get first"); + return _data; + } + } + + /// + /// Get the details of the management group. + /// . + /// + /// The $expand=children query string parameter allows clients to request inclusion of children in the response payload. $expand=path includes the path from the root group to the current group. $expand=ancestors includes the ancestor Ids of the current group. + /// The $recurse=true query string parameter allows clients to request inclusion of entire hierarchy in the response payload. Note that $expand=children must be passed up if $recurse is set to true. + /// A filter which allows the exclusion of subscriptions from results (i.e. '$filter=children.childType ne Subscription'). + /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. + /// The cancellation token to use. + public virtual Response Get(ManagementGroupExpandType? expand = null, bool? recurse = null, string filter = null, string cacheControl = null, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ManagementGroup.Get"); + scope.Start(); + try + { + var response = _restClient.Get(Id.Name, expand, recurse, filter, cacheControl, cancellationToken); + if (response.Value == null) + throw _clientDiagnostics.CreateRequestFailedException(response.GetRawResponse()); + + return Response.FromValue(new ManagementGroup(this, response.Value), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Get the details of the management group. + /// . + /// + /// The $expand=children query string parameter allows clients to request inclusion of children in the response payload. $expand=path includes the path from the root group to the current group. $expand=ancestors includes the ancestor Ids of the current group. + /// The $recurse=true query string parameter allows clients to request inclusion of entire hierarchy in the response payload. Note that $expand=children must be passed up if $recurse is set to true. + /// A filter which allows the exclusion of subscriptions from results (i.e. '$filter=children.childType ne Subscription'). + /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. + /// The cancellation token to use. + public async virtual Task> GetAsync(ManagementGroupExpandType? expand = null, bool? recurse = null, string filter = null, string cacheControl = null, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ManagementGroup.Get"); + scope.Start(); + try + { + var response = await _restClient.GetAsync(Id.Name, expand, recurse, filter, cacheControl, cancellationToken).ConfigureAwait(false); + if (response.Value == null) + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); + + return Response.FromValue(new ManagementGroup(this, response.Value), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Delete management group. + /// If a management group contains child resources, the request will fail. + /// . + /// + /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. + /// The cancellation token to use. + public virtual Response Delete(string cacheControl = null, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ManagementGroup.Delete"); + scope.Start(); + try + { + var operation = StartDelete(cacheControl, cancellationToken); + return operation.WaitForCompletion(cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Delete management group. + /// If a management group contains child resources, the request will fail. + /// . + /// + /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. + /// The cancellation token to use. + public async virtual Task DeleteAsync(string cacheControl = null, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ManagementGroup.Delete"); + scope.Start(); + try + { + var operation = await StartDeleteAsync(cacheControl, cancellationToken).ConfigureAwait(false); + return await operation.WaitForCompletionResponseAsync(cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Delete management group. + /// If a management group contains child resources, the request will fail. + /// . + /// + /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. + /// The cancellation token to use. + public virtual ManagementGroupDeleteOperation StartDelete(string cacheControl = null, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ManagementGroup.StartDelete"); + scope.Start(); + try + { + var originalResponse = _restClient.Delete(Id.Name, cacheControl, cancellationToken); + return new ManagementGroupDeleteOperation(_clientDiagnostics, Pipeline, _restClient.CreateDeleteRequest(Id.Name, cacheControl).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Delete management group. + /// If a management group contains child resources, the request will fail. + /// . + /// + /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. + /// The cancellation token to use. + public async virtual Task StartDeleteAsync(string cacheControl = null, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ManagementGroup.StartDelete"); + scope.Start(); + try + { + var originalResponse = await _restClient.DeleteAsync(Id.Name, cacheControl, cancellationToken).ConfigureAwait(false); + return new ManagementGroupDeleteOperation(_clientDiagnostics, Pipeline, _restClient.CreateDeleteRequest(Id.Name, cacheControl).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// List all entities that descend from a management group. + /// . + /// + /// + /// Page continuation token is only used if a previous operation returned a partial result. + /// If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls. + /// . + /// + /// Number of elements to return when retrieving results. Passing this in will override $skipToken. + /// The cancellation token to use. + public virtual Pageable GetDescendants(string skiptoken = null, int? top = null, CancellationToken cancellationToken = default) + { + Page FirstPageFunc(int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("ManagementGroup.GetDescendants"); + scope.Start(); + try + { + var response = _restClient.GetDescendants(Id.Name, skiptoken, top, cancellationToken); + return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + Page NextPageFunc(string nextLink, int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("ManagementGroup.GetDescendants"); + scope.Start(); + try + { + var response = _restClient.GetDescendantsNextPage(nextLink, Id.Name, skiptoken, top, cancellationToken); + return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc); + } + + /// + /// List all entities that descend from a management group. + /// . + /// + /// + /// Page continuation token is only used if a previous operation returned a partial result. + /// If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls. + /// . + /// + /// Number of elements to return when retrieving results. Passing this in will override $skipToken. + /// The cancellation token to use. + public virtual AsyncPageable GetDescendantsAsync(string skiptoken = null, int? top = null, CancellationToken cancellationToken = default) + { + async Task> FirstPageFunc(int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("ManagementGroup.GetDescendants"); + scope.Start(); + try + { + var response = await _restClient.GetDescendantsAsync(Id.Name, skiptoken, top, cancellationToken).ConfigureAwait(false); + return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + async Task> NextPageFunc(string nextLink, int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("ManagementGroup.GetDescendants"); + scope.Start(); + try + { + var response = await _restClient.GetDescendantsNextPageAsync(nextLink, Id.Name, skiptoken, top, cancellationToken).ConfigureAwait(false); + return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc); + } + + /// + /// Update a management group. + /// . + /// + /// Management group patch parameters. + /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. + /// The cancellation token to use. + public virtual Response Update(PatchManagementGroupOptions patchGroupOptions, string cacheControl = null, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ManagementGroup.Update"); + scope.Start(); + try + { + var response = _restClient.Update(Id.Name, patchGroupOptions, cacheControl, cancellationToken); + return Response.FromValue(new ManagementGroup(this, response.Value), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Update a management group. + /// . + /// + /// Management group patch parameters. + /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. + /// The cancellation token to use. + public async virtual Task> UpdateAsync(PatchManagementGroupOptions patchGroupOptions, string cacheControl = null, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ManagementGroup.Update"); + scope.Start(); + try + { + var response = await _restClient.UpdateAsync(Id.Name, patchGroupOptions, cacheControl, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new ManagementGroup(this, response.Value), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroupContainer.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroupContainer.cs index 8e8d4418a307a..44b2bfcde4c5d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroupContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroupContainer.cs @@ -16,9 +16,9 @@ namespace Azure.ResourceManager.Management /// /// A class representing collection of ManagementGroupContainer and their operations over a ManagementGroup. /// - public class ManagementGroupContainer : ResourceContainer + public class ManagementGroupContainer : ArmContainer { - private readonly ClientDiagnostics _clientDiagnostics; + private ClientDiagnostics _clientDiagnostics; private ManagementGroupsRestOperations _restClient; /// @@ -32,20 +32,22 @@ protected ManagementGroupContainer() /// Initializes a new instance of the class. /// /// The parent tenant. - internal ManagementGroupContainer(TenantOperations tenant) + internal ManagementGroupContainer(Tenant tenant) : base(tenant) { - _clientDiagnostics = new ClientDiagnostics(ClientOptions); - _restClient = new ManagementGroupsRestOperations(_clientDiagnostics, Pipeline, BaseUri); } /// /// Gets the parent resource of this resource. /// - protected new TenantOperations Parent { get {return base.Parent as TenantOperations;} } + protected new Tenant Parent { get {return base.Parent as Tenant;} } /// - protected override ResourceType ValidResourceType => TenantOperations.ResourceType; + protected override ResourceType ValidResourceType => Tenant.ResourceType; + + private ManagementGroupsRestOperations RestClient => _restClient ??= new ManagementGroupsRestOperations(_clientDiagnostics, Pipeline, BaseUri); + + private ClientDiagnostics Diagnostics => _clientDiagnostics ??= new ClientDiagnostics(ClientOptions); /// /// List management groups for the authenticated user. @@ -58,16 +60,16 @@ internal ManagementGroupContainer(TenantOperations tenant) /// . /// /// The cancellation token to use. - public virtual Pageable GetAll(string cacheControl = null, string skiptoken = null, CancellationToken cancellationToken = default) + public virtual Pageable GetAll(string cacheControl = null, string skiptoken = null, CancellationToken cancellationToken = default) { - Page FirstPageFunc(int? pageSizeHint) + Page FirstPageFunc(int? pageSizeHint) { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.GetAll"); + using var scope = Diagnostics.CreateScope("ManagementGroupContainer.GetAll"); scope.Start(); try { - var response = _restClient.List(cacheControl, skiptoken, cancellationToken); - return Page.FromValues(response.Value.Value.Select(d => new ManagementGroupInfo(this, d)), response.Value.NextLink, response.GetRawResponse()); + var response = RestClient.List(cacheControl, skiptoken, cancellationToken); + return Page.FromValues(response.Value.Value.Select(d => new ManagementGroup(this, d)), response.Value.NextLink, response.GetRawResponse()); } catch (Exception e) { @@ -75,14 +77,14 @@ Page FirstPageFunc(int? pageSizeHint) throw; } } - Page NextPageFunc(string nextLink, int? pageSizeHint) + Page NextPageFunc(string nextLink, int? pageSizeHint) { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.GetAll"); + using var scope = Diagnostics.CreateScope("ManagementGroupContainer.GetAll"); scope.Start(); try { - var response = _restClient.ListNextPage(nextLink, cacheControl, skiptoken, cancellationToken); - return Page.FromValues(response.Value.Value.Select(d => new ManagementGroupInfo(this, d)), response.Value.NextLink, response.GetRawResponse()); + var response = RestClient.ListNextPage(nextLink, cacheControl, skiptoken, cancellationToken); + return Page.FromValues(response.Value.Value.Select(d => new ManagementGroup(this, d)), response.Value.NextLink, response.GetRawResponse()); } catch (Exception e) { @@ -104,16 +106,16 @@ Page NextPageFunc(string nextLink, int? pageSizeHint) /// . /// /// The cancellation token to use. - public virtual AsyncPageable GetAllAsync(string cacheControl = null, string skiptoken = null, CancellationToken cancellationToken = default) + public virtual AsyncPageable GetAllAsync(string cacheControl = null, string skiptoken = null, CancellationToken cancellationToken = default) { - async Task> FirstPageFunc(int? pageSizeHint) + async Task> FirstPageFunc(int? pageSizeHint) { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.GetAll"); + using var scope = Diagnostics.CreateScope("ManagementGroupContainer.GetAll"); scope.Start(); try { - var response = await _restClient.ListAsync(cacheControl, skiptoken, cancellationToken).ConfigureAwait(false); - return Page.FromValues(response.Value.Value.Select(d => new ManagementGroupInfo(this, d)), response.Value.NextLink, response.GetRawResponse()); + var response = await RestClient.ListAsync(cacheControl, skiptoken, cancellationToken).ConfigureAwait(false); + return Page.FromValues(response.Value.Value.Select(d => new ManagementGroup(this, d)), response.Value.NextLink, response.GetRawResponse()); } catch (Exception e) { @@ -121,14 +123,14 @@ async Task> FirstPageFunc(int? pageSizeHint) throw; } } - async Task> NextPageFunc(string nextLink, int? pageSizeHint) + async Task> NextPageFunc(string nextLink, int? pageSizeHint) { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.GetAll"); + using var scope = Diagnostics.CreateScope("ManagementGroupContainer.GetAll"); scope.Start(); try { - var response = await _restClient.ListNextPageAsync(nextLink, cacheControl, skiptoken, cancellationToken).ConfigureAwait(false); - return Page.FromValues(response.Value.Value.Select(d => new ManagementGroupInfo(this, d)), response.Value.NextLink, response.GetRawResponse()); + var response = await RestClient.ListNextPageAsync(nextLink, cacheControl, skiptoken, cancellationToken).ConfigureAwait(false); + return Page.FromValues(response.Value.Value.Select(d => new ManagementGroup(this, d)), response.Value.NextLink, response.GetRawResponse()); } catch (Exception e) { @@ -151,11 +153,11 @@ async Task> NextPageFunc(string nextLink, int? pageSiz /// The cancellation token to use. public virtual Response Get(string groupId, ManagementGroupExpandType? expand = null, bool? recurse = null, string filter = null, string cacheControl = null, CancellationToken cancellationToken = default) { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.Get"); + using var scope = Diagnostics.CreateScope("ManagementGroupContainer.Get"); scope.Start(); try { - var response = _restClient.Get(groupId, expand, recurse, filter, cacheControl, cancellationToken); + var response = RestClient.Get(groupId, expand, recurse, filter, cacheControl, cancellationToken); if (response.Value == null) throw Diagnostics.CreateRequestFailedException(response.GetRawResponse()); @@ -180,11 +182,11 @@ public virtual Response Get(string groupId, ManagementGroupExpa /// The cancellation token to use. public async virtual Task> GetAsync(string groupId, ManagementGroupExpandType? expand = null, bool? recurse = null, string filter = null, string cacheControl = null, CancellationToken cancellationToken = default) { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.Get"); + using var scope = Diagnostics.CreateScope("ManagementGroupContainer.Get"); scope.Start(); try { - var response = await _restClient.GetAsync(groupId, expand, recurse, filter, cacheControl, cancellationToken).ConfigureAwait(false); + var response = await RestClient.GetAsync(groupId, expand, recurse, filter, cacheControl, cancellationToken).ConfigureAwait(false); if (response.Value == null) throw await Diagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); @@ -209,11 +211,11 @@ public async virtual Task> GetAsync(string groupId, Ma /// The cancellation token to use. public virtual Response GetIfExists(string groupId, ManagementGroupExpandType? expand = null, bool? recurse = null, string filter = null, string cacheControl = null, CancellationToken cancellationToken = default) { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.GetIfExists"); + using var scope = Diagnostics.CreateScope("ManagementGroupContainer.GetIfExists"); scope.Start(); try { - var response = _restClient.Get(groupId, expand, recurse, filter, cacheControl, cancellationToken); + var response = RestClient.Get(groupId, expand, recurse, filter, cacheControl, cancellationToken); return response.Value == null ? Response.FromValue(null, response.GetRawResponse()) : Response.FromValue(new ManagementGroup(this, response.Value), response.GetRawResponse()); @@ -237,11 +239,11 @@ public virtual Response GetIfExists(string groupId, ManagementG /// The cancellation token to use. public async virtual Task> GetIfExistsAsync(string groupId, ManagementGroupExpandType? expand = null, bool? recurse = null, string filter = null, string cacheControl = null, CancellationToken cancellationToken = default) { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.GetIfExists"); + using var scope = Diagnostics.CreateScope("ManagementGroupContainer.GetIfExists"); scope.Start(); try { - var response = await _restClient.GetAsync(groupId, expand, recurse, filter, cacheControl, cancellationToken).ConfigureAwait(false); + var response = await RestClient.GetAsync(groupId, expand, recurse, filter, cacheControl, cancellationToken).ConfigureAwait(false); return response.Value == null ? Response.FromValue(null, response.GetRawResponse()) : Response.FromValue(new ManagementGroup(this, response.Value), response.GetRawResponse()); @@ -265,7 +267,7 @@ public async virtual Task> GetIfExistsAsync(string gro /// The cancellation token to use. public virtual Response CheckIfExists(string groupId, ManagementGroupExpandType? expand = null, bool? recurse = null, string filter = null, string cacheControl = null, CancellationToken cancellationToken = default) { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.CheckIfExists"); + using var scope = Diagnostics.CreateScope("ManagementGroupContainer.CheckIfExists"); scope.Start(); try { @@ -291,7 +293,7 @@ public virtual Response CheckIfExists(string groupId, ManagementGroupExpan /// The cancellation token to use. public async virtual Task> CheckIfExistsAsync(string groupId, ManagementGroupExpandType? expand = null, bool? recurse = null, string filter = null, string cacheControl = null, CancellationToken cancellationToken = default) { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.CheckIfExists"); + using var scope = Diagnostics.CreateScope("ManagementGroupContainer.CheckIfExists"); scope.Start(); try { @@ -326,7 +328,7 @@ public virtual Response CreateOrUpdate(string groupId, CreateMa throw new ArgumentNullException(nameof(createManagementGroupOptions)); } - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.CreateOrUpdate"); + using var scope = Diagnostics.CreateScope("ManagementGroupContainer.CreateOrUpdate"); scope.Start(); try { @@ -361,7 +363,7 @@ public async virtual Task> CreateOrUpdateAsync(string throw new ArgumentNullException(nameof(createManagementGroupOptions)); } - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.CreateOrUpdate"); + using var scope = Diagnostics.CreateScope("ManagementGroupContainer.CreateOrUpdate"); scope.Start(); try { @@ -396,11 +398,11 @@ public virtual ManagementGroupCreateOrUpdateOperation StartCreateOrUpdate(string throw new ArgumentNullException(nameof(createManagementGroupOptions)); } - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.StartCreateOrUpdate"); + using var scope = Diagnostics.CreateScope("ManagementGroupContainer.StartCreateOrUpdate"); scope.Start(); try { - var originalResponse = _restClient.CreateOrUpdate(groupId, createManagementGroupOptions, cacheControl, cancellationToken); + var originalResponse = RestClient.CreateOrUpdate(groupId, createManagementGroupOptions, cacheControl, cancellationToken); return new ManagementGroupCreateOrUpdateOperation(this, _clientDiagnostics, Pipeline, _restClient.CreateCreateOrUpdateRequest(groupId, createManagementGroupOptions, cacheControl).Request, originalResponse); } catch (Exception e) @@ -431,11 +433,11 @@ public async virtual Task StartCreateOrU throw new ArgumentNullException(nameof(createManagementGroupOptions)); } - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.StartCreateOrUpdate"); + using var scope = Diagnostics.CreateScope("ManagementGroupContainer.StartCreateOrUpdate"); scope.Start(); try { - var originalResponse = await _restClient.CreateOrUpdateAsync(groupId, createManagementGroupOptions, cacheControl, cancellationToken).ConfigureAwait(false); + var originalResponse = await RestClient.CreateOrUpdateAsync(groupId, createManagementGroupOptions, cacheControl, cancellationToken).ConfigureAwait(false); return new ManagementGroupCreateOrUpdateOperation(this, _clientDiagnostics, Pipeline, _restClient.CreateCreateOrUpdateRequest(groupId, createManagementGroupOptions, cacheControl).Request, originalResponse); } catch (Exception e) @@ -450,11 +452,11 @@ public async virtual Task StartCreateOrU /// The cancellation token to use. public virtual Response CheckNameAvailability(CheckNameAvailabilityOptions checkNameAvailabilityOptions, CancellationToken cancellationToken = default) { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.CheckNameAvailability"); + using var scope = Diagnostics.CreateScope("ManagementGroupContainer.CheckNameAvailability"); scope.Start(); try { - return _restClient.CheckNameAvailability(checkNameAvailabilityOptions, cancellationToken); + return RestClient.CheckNameAvailability(checkNameAvailabilityOptions, cancellationToken); } catch (Exception e) { @@ -468,11 +470,11 @@ public virtual Response CheckNameAvailability(Check /// The cancellation token to use. public async virtual Task> CheckNameAvailabilityAsync(CheckNameAvailabilityOptions checkNameAvailabilityOptions, CancellationToken cancellationToken = default) { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupContainer.CheckNameAvailability"); + using var scope = Diagnostics.CreateScope("ManagementGroupContainer.CheckNameAvailability"); scope.Start(); try { - return await _restClient.CheckNameAvailabilityAsync(checkNameAvailabilityOptions, cancellationToken).ConfigureAwait(false); + return await RestClient.CheckNameAvailabilityAsync(checkNameAvailabilityOptions, cancellationToken).ConfigureAwait(false); } catch (Exception e) { diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroupInfo.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroupInfo.cs deleted file mode 100644 index 7ff62710e9e7d..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroupInfo.cs +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using Azure.ResourceManager.Core; -using Azure.ResourceManager.Management.Models; - -namespace Azure.ResourceManager.Management -{ - /// - /// A class representing a ManagementGroup along with the instance operations that can be performed on it. - /// - public class ManagementGroupInfo : ManagementGroupOperations - { - /// - /// Initializes a new instance of the class for mocking. - /// - protected ManagementGroupInfo() - { - } - - /// - /// Initializes a new instance of the class. - /// - /// The operations to copy the client options from. - /// The ManagementGroupData to use in these operations. - internal ManagementGroupInfo(ResourceOperations operations, ManagementGroupInfoData resource) - : base(operations, resource.Id) - { - Data = resource; - } - - /// - /// Gets the data representing this ManagementGroup. - /// - public virtual ManagementGroupInfoData Data { get; } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroupInfoData.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroupInfoData.cs deleted file mode 100644 index d364b70e28b53..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroupInfoData.cs +++ /dev/null @@ -1,38 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -// - -#nullable disable - -using Azure.ResourceManager.Resources.Models; - -namespace Azure.ResourceManager.Management -{ - /// The management group resource. - public partial class ManagementGroupInfoData : Resource - { - /// Initializes a new instance of ManagementGroupInfo. - internal ManagementGroupInfoData() - { - } - - /// Initializes a new instance of ManagementGroupInfo. - /// The fully qualified ID for the management group. For example, /providers/Microsoft.Management/managementGroups/0000000-0000-0000-0000-000000000000. - /// The type of the resource. For example, Microsoft.Management/managementGroups. - /// The name of the management group. For example, 00000000-0000-0000-0000-000000000000. - /// The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000. - /// The friendly name of the management group. - internal ManagementGroupInfoData(string id, string type, string name, string tenantId, string displayName) - : base(id, type, name) - { - TenantId = tenantId; - DisplayName = displayName; - } - - /// The AAD Tenant ID associated with the management group. For example, 00000000-0000-0000-0000-000000000000. - public string TenantId { get; } - /// The friendly name of the management group. - public string DisplayName { get; } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroupOperations.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroupOperations.cs deleted file mode 100644 index 387318891cbea..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/ManagementGroupOperations.cs +++ /dev/null @@ -1,336 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; -using System.Threading; -using System.Threading.Tasks; -using Azure.Core; -using Azure.Core.Pipeline; -using Azure.ResourceManager.Core; -using Azure.ResourceManager.Management.Models; -using Azure.ResourceManager.Resources; - -namespace Azure.ResourceManager.Management -{ - /// - /// A class representing the operations that can be performed over a specific ManagementGroup. - /// - public class ManagementGroupOperations : ResourceOperations - { - private readonly ClientDiagnostics _clientDiagnostics; - private ManagementGroupsRestOperations _restClient; - - /// - /// Initializes a new instance of the class for mocking. - /// - protected ManagementGroupOperations() - { - } - - /// - /// Initializes a new instance of the class. - /// - /// The client parameters to use in these operations. - /// The identifier of the resource that is the target of operations. - protected internal ManagementGroupOperations(ResourceOperations options, ResourceIdentifier id) - : base(options, id) - { - _clientDiagnostics = new ClientDiagnostics(ClientOptions); - _restClient = new ManagementGroupsRestOperations(_clientDiagnostics, Pipeline, BaseUri); - } - - /// - /// Gets the resource type definition for a ResourceType. - /// - public static readonly ResourceType ResourceType = "Microsoft.Management/managementGroups"; - - /// - protected override ResourceType ValidResourceType => ResourceType; - - /// - /// Get the details of the management group. - /// . - /// - /// The $expand=children query string parameter allows clients to request inclusion of children in the response payload. $expand=path includes the path from the root group to the current group. $expand=ancestors includes the ancestor Ids of the current group. - /// The $recurse=true query string parameter allows clients to request inclusion of entire hierarchy in the response payload. Note that $expand=children must be passed up if $recurse is set to true. - /// A filter which allows the exclusion of subscriptions from results (i.e. '$filter=children.childType ne Subscription'). - /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. - /// The cancellation token to use. - public virtual Response Get(ManagementGroupExpandType? expand = null, bool? recurse = null, string filter = null, string cacheControl = null, CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupOperations.Get"); - scope.Start(); - try - { - var response = _restClient.Get(Id.Name, expand, recurse, filter, cacheControl, cancellationToken); - if (response.Value == null) - throw Diagnostics.CreateRequestFailedException(response.GetRawResponse()); - - return Response.FromValue(new ManagementGroup(this, response.Value), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Get the details of the management group. - /// . - /// - /// The $expand=children query string parameter allows clients to request inclusion of children in the response payload. $expand=path includes the path from the root group to the current group. $expand=ancestors includes the ancestor Ids of the current group. - /// The $recurse=true query string parameter allows clients to request inclusion of entire hierarchy in the response payload. Note that $expand=children must be passed up if $recurse is set to true. - /// A filter which allows the exclusion of subscriptions from results (i.e. '$filter=children.childType ne Subscription'). - /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. - /// The cancellation token to use. - public async virtual Task> GetAsync(ManagementGroupExpandType? expand = null, bool? recurse = null, string filter = null, string cacheControl = null, CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupOperations.Get"); - scope.Start(); - try - { - var response = await _restClient.GetAsync(Id.Name, expand, recurse, filter, cacheControl, cancellationToken).ConfigureAwait(false); - if (response.Value == null) - throw await Diagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); - - return Response.FromValue(new ManagementGroup(this, response.Value), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Delete management group. - /// If a management group contains child resources, the request will fail. - /// . - /// - /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. - /// The cancellation token to use. - public virtual Response Delete(string cacheControl = null, CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupOperations.Delete"); - scope.Start(); - try - { - var operation = StartDelete(cacheControl, cancellationToken); - return operation.WaitForCompletion(cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Delete management group. - /// If a management group contains child resources, the request will fail. - /// . - /// - /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. - /// The cancellation token to use. - public async virtual Task DeleteAsync(string cacheControl = null, CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupOperations.Delete"); - scope.Start(); - try - { - var operation = await StartDeleteAsync(cacheControl, cancellationToken).ConfigureAwait(false); - return await operation.WaitForCompletionResponseAsync(cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Delete management group. - /// If a management group contains child resources, the request will fail. - /// . - /// - /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. - /// The cancellation token to use. - public virtual ManagementGroupDeleteOperation StartDelete(string cacheControl = null, CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupOperations.StartDelete"); - scope.Start(); - try - { - var originalResponse = _restClient.Delete(Id.Name, cacheControl, cancellationToken); - return new ManagementGroupDeleteOperation(_clientDiagnostics, Pipeline, _restClient.CreateDeleteRequest(Id.Name, cacheControl).Request, originalResponse); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Delete management group. - /// If a management group contains child resources, the request will fail. - /// . - /// - /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. - /// The cancellation token to use. - public async virtual Task StartDeleteAsync(string cacheControl = null, CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupOperations.StartDelete"); - scope.Start(); - try - { - var originalResponse = await _restClient.DeleteAsync(Id.Name, cacheControl, cancellationToken).ConfigureAwait(false); - return new ManagementGroupDeleteOperation(_clientDiagnostics, Pipeline, _restClient.CreateDeleteRequest(Id.Name, cacheControl).Request, originalResponse); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// List all entities that descend from a management group. - /// . - /// - /// - /// Page continuation token is only used if a previous operation returned a partial result. - /// If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls. - /// . - /// - /// Number of elements to return when retrieving results. Passing this in will override $skipToken. - /// The cancellation token to use. - public virtual Pageable GetDescendants(string skiptoken = null, int? top = null, CancellationToken cancellationToken = default) - { - Page FirstPageFunc(int? pageSizeHint) - { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupOperations.GetDescendants"); - scope.Start(); - try - { - var response = _restClient.GetDescendants(Id.Name, skiptoken, top, cancellationToken); - return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - Page NextPageFunc(string nextLink, int? pageSizeHint) - { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupOperations.GetDescendants"); - scope.Start(); - try - { - var response = _restClient.GetDescendantsNextPage(nextLink, Id.Name, skiptoken, top, cancellationToken); - return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc); - } - - /// - /// List all entities that descend from a management group. - /// . - /// - /// - /// Page continuation token is only used if a previous operation returned a partial result. - /// If a previous response contains a nextLink element, the value of the nextLink element will include a token parameter that specifies a starting point to use for subsequent calls. - /// . - /// - /// Number of elements to return when retrieving results. Passing this in will override $skipToken. - /// The cancellation token to use. - public virtual AsyncPageable GetDescendantsAsync(string skiptoken = null, int? top = null, CancellationToken cancellationToken = default) - { - async Task> FirstPageFunc(int? pageSizeHint) - { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupOperations.GetDescendants"); - scope.Start(); - try - { - var response = await _restClient.GetDescendantsAsync(Id.Name, skiptoken, top, cancellationToken).ConfigureAwait(false); - return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - async Task> NextPageFunc(string nextLink, int? pageSizeHint) - { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupOperations.GetDescendants"); - scope.Start(); - try - { - var response = await _restClient.GetDescendantsNextPageAsync(nextLink, Id.Name, skiptoken, top, cancellationToken).ConfigureAwait(false); - return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc); - } - - /// - /// Update a management group. - /// . - /// - /// Management group patch parameters. - /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. - /// The cancellation token to use. - public virtual Response Update(PatchManagementGroupOptions patchGroupOptions, string cacheControl = null, CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupOperations.Update"); - scope.Start(); - try - { - var response = _restClient.Update(Id.Name, patchGroupOptions, cacheControl, cancellationToken); - return Response.FromValue(new ManagementGroup(this, response.Value), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Update a management group. - /// . - /// - /// Management group patch parameters. - /// Indicates whether the request should utilize any caches. Populate the header with 'no-cache' value to bypass existing caches. - /// The cancellation token to use. - public async virtual Task> UpdateAsync(PatchManagementGroupOptions patchGroupOptions, string cacheControl = null, CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("ManagementGroupOperations.Update"); - scope.Start(); - try - { - var response = await _restClient.UpdateAsync(Id.Name, patchGroupOptions, cacheControl, cancellationToken).ConfigureAwait(false); - return Response.FromValue(new ManagementGroup(this, response.Value), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/Models/ManagementGroupInfoData.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/Models/ManagementGroupInfoData.Serialization.cs deleted file mode 100644 index c8177637b5316..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/Models/ManagementGroupInfoData.Serialization.cs +++ /dev/null @@ -1,65 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -// - -#nullable disable - -using System.Text.Json; -using Azure.Core; - -namespace Azure.ResourceManager.Management -{ - public partial class ManagementGroupInfoData - { - internal static ManagementGroupInfoData DeserializeManagementGroupInfo(JsonElement element) - { - Optional id = default; - Optional type = default; - Optional name = default; - Optional tenantId = default; - Optional displayName = default; - foreach (var property in element.EnumerateObject()) - { - if (property.NameEquals("id")) - { - id = property.Value.GetString(); - continue; - } - if (property.NameEquals("type")) - { - type = property.Value.GetString(); - continue; - } - if (property.NameEquals("name")) - { - name = property.Value.GetString(); - continue; - } - if (property.NameEquals("properties")) - { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } - foreach (var property0 in property.Value.EnumerateObject()) - { - if (property0.NameEquals("tenantId")) - { - tenantId = property0.Value.GetString(); - continue; - } - if (property0.NameEquals("displayName")) - { - displayName = property0.Value.GetString(); - continue; - } - } - continue; - } - } - return new ManagementGroupInfoData(id.Value, type.Value, name.Value, tenantId.Value, displayName.Value); - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/Models/ManagementGroupListResult.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/Models/ManagementGroupListResult.Serialization.cs index 5ebcbe8dcb528..7498f64d74287 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/Models/ManagementGroupListResult.Serialization.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/Models/ManagementGroupListResult.Serialization.cs @@ -15,7 +15,7 @@ internal partial class ManagementGroupListResult { internal static ManagementGroupListResult DeserializeManagementGroupListResult(JsonElement element) { - Optional> value = default; + Optional> value = default; Optional nextLink = default; foreach (var property in element.EnumerateObject()) { @@ -26,10 +26,10 @@ internal static ManagementGroupListResult DeserializeManagementGroupListResult(J property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); + List array = new List(); foreach (var item in property.Value.EnumerateArray()) { - array.Add(ManagementGroupInfoData.DeserializeManagementGroupInfo(item)); + array.Add(ManagementGroupData.DeserializeManagementGroup(item)); } value = array; continue; diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/Models/ManagementGroupListResult.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/Models/ManagementGroupListResult.cs index 117353f478534..e99cc04c1391e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/Models/ManagementGroupListResult.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/ManagementGroup/Models/ManagementGroupListResult.cs @@ -16,20 +16,20 @@ internal partial class ManagementGroupListResult /// Initializes a new instance of ManagementGroupListResult. internal ManagementGroupListResult() { - Value = new ChangeTrackingList(); + Value = new ChangeTrackingList(); } /// Initializes a new instance of ManagementGroupListResult. /// The list of management groups. /// The URL to use for getting the next set of results. - internal ManagementGroupListResult(IReadOnlyList value, string nextLink) + internal ManagementGroupListResult(IReadOnlyList value, string nextLink) { Value = value; NextLink = nextLink; } /// The list of management groups. - public IReadOnlyList Value { get; } + public IReadOnlyList Value { get; } /// The URL to use for getting the next set of results. public string NextLink { get; } } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Feature.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Feature.cs index 329012367c807..5f01d27d363b2 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Feature.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Feature.cs @@ -1,16 +1,23 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; +using System.Threading; +using System.Threading.Tasks; +using Azure.Core.Pipeline; using Azure.ResourceManager.Core; -using Azure.ResourceManager.Resources.Models; namespace Azure.ResourceManager.Resources { /// - /// A class representing a Feature along with the instance operations that can be performed on it. + /// A class representing the operations that can be performed over a specific Feature. /// - public class Feature : FeatureOperations + public class Feature : ArmResource { + private readonly ClientDiagnostics _clientDiagnostics; + private readonly FeaturesRestOperations _restClient; + private readonly FeatureData _data; + /// /// Initializes a new instance of the class for mocking. /// @@ -23,15 +30,175 @@ protected Feature() /// /// The operations to copy the client options from. /// The FeatureData to use in these operations. - internal Feature(ResourceOperations operations, FeatureData resource) + internal Feature(ArmResource operations, FeatureData resource) : base(operations, resource.Id) { - Data = resource; + _data = resource; + HasData = true; + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _restClient = new FeaturesRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); + } + + /// + /// Initializes a new instance of the class. + /// + /// The client parameters to use in these operations. + /// The id of the resource group to use. + internal Feature(ClientContext options, ResourceIdentifier id) + : base(options, id) + { + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _restClient = new FeaturesRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); } + /// + /// Gets the resource type definition for a ResourceType. + /// + public static readonly ResourceType ResourceType = "Microsoft.Resources/features"; + + /// + protected override ResourceType ValidResourceType => ResourceType; + + /// + /// Gets whether or not the current instance has data. + /// + public bool HasData { get; } + /// /// Gets the data representing this Feature. /// - public virtual FeatureData Data { get; } + /// Throws if there is no data loaded in the current instance. + public virtual FeatureData Data + { + get + { + if (!HasData) + throw new InvalidOperationException("The current instance does not have data you must call Get first"); + return _data; + } + } + + /// + protected override void ValidateResourceType(ResourceIdentifier identifier) + { + if (identifier.ResourceType != $"{Id.ResourceType.Namespace}/features") + { + throw new InvalidOperationException($"Invalid resourcetype found when intializing FeatureOperations: {identifier.ResourceType}"); + } + } + + /// Gets the current Feature from Azure. + /// The cancellation token to use. + public virtual Response Get(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("Feature.Get"); + scope.Start(); + try + { + var response = _restClient.Get(Id.ResourceType.Namespace, Id.Name, cancellationToken); + if (response.Value == null) + throw _clientDiagnostics.CreateRequestFailedException(response.GetRawResponse()); + + return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Gets the current Feature from Azure. + /// The cancellation token to use. + public virtual async Task> GetAsync(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("Feature.Get"); + scope.Start(); + try + { + var response = await _restClient.GetAsync(Id.ResourceType.Namespace, Id.Name, cancellationToken).ConfigureAwait(false); + if (response.Value == null) + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); + + return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Registers the preview feature for the subscription. + /// The cancellation token to use. + public virtual Response Register(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("Feature.Register"); + scope.Start(); + try + { + var response = _restClient.Register(Id.ResourceType.Namespace, Id.Name, cancellationToken); + return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Registers the preview feature for the subscription. + /// The cancellation token to use. + public virtual async Task> RegisterAsync(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("Feature.Register"); + scope.Start(); + try + { + var response = await _restClient.RegisterAsync(Id.ResourceType.Namespace, Id.Name, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Unregisters the preview feature for the subscription. + /// The cancellation token to use. + public virtual Response Unregister(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("Feature.Unregister"); + scope.Start(); + try + { + var response = _restClient.Unregister(Id.ResourceType.Namespace, Id.Name, cancellationToken); + return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Unregisters the preview feature for the subscription. + /// The cancellation token to use. + public virtual async Task> UnregisterAsync(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("Feature.Unregister"); + scope.Start(); + try + { + var response = await _restClient.UnregisterAsync(Id.ResourceType.Namespace, Id.Name, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/FeatureContainer.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/FeatureContainer.cs index 78dc52a4e9777..4080ca3445ebe 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/FeatureContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/FeatureContainer.cs @@ -16,7 +16,7 @@ namespace Azure.ResourceManager.Resources /// /// A class representing collection of FeatureContainer and their operations over a Feature. /// - public class FeatureContainer : ResourceContainer + public class FeatureContainer : ArmContainer { private readonly ClientDiagnostics _clientDiagnostics; private FeaturesRestOperations _restClient { get; } @@ -32,7 +32,7 @@ protected FeatureContainer() /// Initializes a new instance of the class. /// /// The resource representing the parent resource. - internal FeatureContainer(ProviderOperations parent) + internal FeatureContainer(Provider parent) : base(parent) { _clientDiagnostics = new ClientDiagnostics(ClientOptions); @@ -42,10 +42,10 @@ internal FeatureContainer(ProviderOperations parent) /// /// Gets the parent resource of this resource. /// - protected new ProviderOperations Parent { get {return base.Parent as ProviderOperations;} } + protected new Provider Parent { get {return base.Parent as Provider;} } /// - protected override ResourceType ValidResourceType => ProviderOperations.ResourceType; + protected override ResourceType ValidResourceType => Provider.ResourceType; /// Gets all the preview features in a provider namespace that are available through AFEC for the subscription. /// The cancellation token to use. @@ -132,7 +132,7 @@ public virtual Response Get(string featureName, CancellationToken cance { var response = _restClient.Get(Id.Provider, featureName, cancellationToken); if (response.Value == null) - throw Diagnostics.CreateRequestFailedException(response.GetRawResponse()); + throw _clientDiagnostics.CreateRequestFailedException(response.GetRawResponse()); return Response.FromValue(new Feature(Parent, response.Value), response.GetRawResponse()); } @@ -154,7 +154,7 @@ public virtual async Task> GetAsync(string featureName, Cancel { var response = await _restClient.GetAsync(Id.Provider, featureName, cancellationToken).ConfigureAwait(false); if (response.Value == null) - throw await Diagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); return Response.FromValue(new Feature(Parent, response.Value), response.GetRawResponse()); } @@ -174,7 +174,7 @@ public virtual async Task> GetAsync(string featureName, Cancel /// Whether or not the resource existed. public virtual Response GetIfExists(string featureName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("FeatureContainer.GetIfExists"); + using var scope = _clientDiagnostics.CreateScope("FeatureContainer.GetIfExists"); scope.Start(); try @@ -200,7 +200,7 @@ public virtual Response GetIfExists(string featureName, CancellationTok /// Whether or not the resource existed. public virtual async Task> GetIfExistsAsync(string featureName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("FeatureContainer.GetIfExists"); + using var scope = _clientDiagnostics.CreateScope("FeatureContainer.GetIfExists"); scope.Start(); try @@ -226,7 +226,7 @@ public virtual async Task> GetIfExistsAsync(string featureName /// Whether or not the resource existed. public virtual Response CheckIfExists(string featureName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("FeatureContainer.CheckIfExists"); + using var scope = _clientDiagnostics.CreateScope("FeatureContainer.CheckIfExists"); scope.Start(); try @@ -250,7 +250,7 @@ public virtual Response CheckIfExists(string featureName, CancellationToke /// Whether or not the resource existed. public virtual async Task> CheckIfExistsAsync(string featureName, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("FeatureContainer.CheckIfExists"); + using var scope = _clientDiagnostics.CreateScope("FeatureContainer.CheckIfExists"); scope.Start(); try diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/FeatureOperations.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/FeatureOperations.cs deleted file mode 100644 index be734386bff21..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/FeatureOperations.cs +++ /dev/null @@ -1,182 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; -using System.Threading; -using System.Threading.Tasks; -using Azure.Core.Pipeline; -using Azure.ResourceManager.Core; - -namespace Azure.ResourceManager.Resources -{ - /// - /// A class representing the operations that can be performed over a specific Feature. - /// - public class FeatureOperations : ResourceOperations - { - private readonly ClientDiagnostics _clientDiagnostics; - private FeaturesRestOperations _restClient { get; } - - /// - /// Initializes a new instance of the class for mocking. - /// - protected FeatureOperations() - { - } - - /// - /// Initializes a new instance of the class. - /// - /// The client parameters to use in these operations. - /// The id of the feature to use. - protected FeatureOperations(ResourceOperations options, ResourceIdentifier id) - : base(options, id) - { - _clientDiagnostics = new ClientDiagnostics(ClientOptions); - _restClient = new FeaturesRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); - } - - /// - /// Initializes a new instance of the class. - /// - /// The client parameters to use in these operations. - /// The id of the resource group to use. - internal FeatureOperations(ClientContext options, ResourceIdentifier id) - : base(options, id) - { - _clientDiagnostics = new ClientDiagnostics(ClientOptions); - _restClient = new FeaturesRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); - } - - /// - /// Gets the resource type definition for a ResourceType. - /// - public static readonly ResourceType ResourceType = "Microsoft.Resources/features"; - - /// - protected override ResourceType ValidResourceType => ResourceType; - - /// - protected override void ValidateResourceType(ResourceIdentifier identifier) - { - if (identifier.ResourceType != $"{Id.ResourceType.Namespace}/features") - { - throw new InvalidOperationException($"Invalid resourcetype found when intializing FeatureOperations: {identifier.ResourceType}"); - } - } - - /// Gets the current Feature from Azure. - /// The cancellation token to use. - public virtual Response Get(CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("FeatureOperations.Get"); - scope.Start(); - try - { - var response = _restClient.Get(Id.ResourceType.Namespace, Id.Name, cancellationToken); - if (response.Value == null) - throw Diagnostics.CreateRequestFailedException(response.GetRawResponse()); - - return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Gets the current Feature from Azure. - /// The cancellation token to use. - public virtual async Task> GetAsync(CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("FeatureOperations.Get"); - scope.Start(); - try - { - var response = await _restClient.GetAsync(Id.ResourceType.Namespace, Id.Name, cancellationToken).ConfigureAwait(false); - if (response.Value == null) - throw await Diagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); - - return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Registers the preview feature for the subscription. - /// The cancellation token to use. - public virtual Response Register(CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("FeatureOperations.Register"); - scope.Start(); - try - { - var response = _restClient.Register(Id.ResourceType.Namespace, Id.Name, cancellationToken); - return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Registers the preview feature for the subscription. - /// The cancellation token to use. - public virtual async Task> RegisterAsync(CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("FeatureOperations.Register"); - scope.Start(); - try - { - var response = await _restClient.RegisterAsync(Id.ResourceType.Namespace, Id.Name, cancellationToken).ConfigureAwait(false); - return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Unregisters the preview feature for the subscription. - /// The cancellation token to use. - public virtual Response Unregister(CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("FeatureOperations.Unregister"); - scope.Start(); - try - { - var response = _restClient.Unregister(Id.ResourceType.Namespace, Id.Name, cancellationToken); - return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Unregisters the preview feature for the subscription. - /// The cancellation token to use. - public virtual async Task> UnregisterAsync(CancellationToken cancellationToken = default) - { - using var scope = _clientDiagnostics.CreateScope("FeatureOperations.Unregister"); - scope.Start(); - try - { - var response = await _restClient.UnregisterAsync(Id.ResourceType.Namespace, Id.Name, cancellationToken).ConfigureAwait(false); - return Response.FromValue(new Feature(this, response.Value), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResource.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResource.cs index 847e46663d14a..c002246371e04 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResource.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResource.cs @@ -2,17 +2,26 @@ // Licensed under the MIT License. using System; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; +using System.Xml.Linq; using Azure.Core; +using Azure.Core.Pipeline; using Azure.ResourceManager.Core; using Azure.ResourceManager.Resources.Models; namespace Azure.ResourceManager.Resources { /// - /// A class representing a generic azure resource along with the instance operations that can be performed on it. + /// A class representing the operations that can be performed over a specific ArmResource. /// - public class GenericResource : GenericResourceOperations + public class GenericResource : ArmResource { + private readonly ClientDiagnostics _clientDiagnostics; + private readonly ResourcesRestOperations _restClient; + private readonly GenericResourceData _data; + /// /// Initializes a new instance of the class for mocking. /// @@ -20,21 +29,482 @@ protected GenericResource() { } + /// + /// Initializes a new instance of the class. + /// + /// The operation to get the client properties from. + /// The id of the resource. + internal GenericResource(ArmResource operations, ResourceIdentifier id) + : base(operations, id) + { + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _restClient = new ResourcesRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); + } + /// /// Initializes a new instance of the class. /// /// The operations object to copy the client parameters from. /// The data model representing the generic azure resource. /// If or is null. - internal GenericResource(ResourceOperations operations, GenericResourceData resource) + internal GenericResource(ArmResource operations, GenericResourceData resource) : base(operations, resource.Id) { - Data = resource; + _data = resource; + HasData = true; + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _restClient = new ResourcesRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); } + /// + protected override ResourceType ValidResourceType => ResourceGroup.ResourceType; + + /// + /// Gets whether or not the current instance has data. + /// + public bool HasData { get; } + /// /// Gets the data representing this generic azure resource. /// - public virtual GenericResourceData Data { get; } + /// Throws if there is no data loaded in the current instance. + public virtual GenericResourceData Data + { + get + { + if (!HasData) + throw new InvalidOperationException("The current instance does not have data you must call Get first"); + return _data; + } + } + + /// + /// Delete the resource. + /// + /// A token allowing immediate cancellation of any blocking call performed during the deletion. + /// The status of the delete operation. + public virtual Response Delete(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("GenericResource.Delete"); + scope.Start(); + try + { + var operation = StartDelete(cancellationToken); + return operation.WaitForCompletion(cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Delete the resource. + /// + /// A token allowing immediate cancellation of any blocking call performed during the deletion. + /// A that on completion returns the status of the delete operation. + public virtual async Task DeleteAsync(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("GenericResource.Delete"); + scope.Start(); + try + { + var operation = await StartDeleteAsync(cancellationToken).ConfigureAwait(false); + return await operation.WaitForCompletionResponseAsync(cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Delete the resource. + /// + /// A token allowing immediate cancellation of any blocking call performed during the deletion. + /// A which allows the caller to control polling and waiting for resource deletion. + /// The operation yields the final http response to the delete request when complete. + /// + /// Details on long running operation object. + /// + public virtual ResourceDeleteByIdOperation StartDelete(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("GenericResource.StartDelete"); + scope.Start(); + try + { + var apiVersion = GetApiVersion(cancellationToken); + var originalResponse = _restClient.DeleteById(Id, apiVersion, cancellationToken); + return new ResourceDeleteByIdOperation(_clientDiagnostics, Pipeline, _restClient.CreateDeleteByIdRequest(Id, apiVersion).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Delete the resource. This call returns a Task that blocks until the delete operation is accepted on the service. + /// + /// A token to allow the caller to cancel the call to the service. + /// The default value is . + /// A that on completion returns a which + /// allows the caller to control polling and waiting for resource deletion. + /// The operation yields the final http response to the delete request when complete. + /// + /// Details on long running operation object. + /// + public virtual async Task StartDeleteAsync(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("GenericResource.StartDelete"); + scope.Start(); + try + { + var apiVersion = await GetApiVersionAsync(cancellationToken).ConfigureAwait(false); + var originalResponse = await _restClient.DeleteByIdAsync(Id, apiVersion, cancellationToken).ConfigureAwait(false); + return new ResourceDeleteByIdOperation(_clientDiagnostics, Pipeline, _restClient.CreateDeleteByIdRequest(Id, apiVersion).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Add a tag to the current resource. + /// + /// The key for the tag. + /// The value for the tag. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The updated resource with the tag added. + public virtual Response AddTag(string key, string value, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("GenericResource.AddTag"); + scope.Start(); + try + { + var apiVersion = GetApiVersion(cancellationToken); + var originalTags = TagResource.Get(cancellationToken).Value; + originalTags.Data.Properties.TagsValue[key] = value; + TagContainer.CreateOrUpdate(originalTags.Data, cancellationToken); + var originalResponse = _restClient.GetById(Id, apiVersion, cancellationToken); + return Response.FromValue(new GenericResource(this, originalResponse.Value), originalResponse.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Add a tag to the current resource. + /// + /// The key for the tag. + /// The value for the tag. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The updated resource with the tag added. + public virtual async Task> AddTagAsync(string key, string value, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("GenericResource.AddTag"); + scope.Start(); + try + { + var apiVersion = await GetApiVersionAsync(cancellationToken).ConfigureAwait(false); + var originalTags = (await TagResource.GetAsync(cancellationToken).ConfigureAwait(false)).Value; + originalTags.Data.Properties.TagsValue[key] = value; + await TagContainer.CreateOrUpdateAsync(originalTags.Data, cancellationToken).ConfigureAwait(false); + var originalResponse = await _restClient.GetByIdAsync(Id, apiVersion, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new GenericResource(this, originalResponse.Value), originalResponse.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Gets the current GenericResource from Azure. + /// The cancellation token to use. + public virtual Response Get(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("GenericResource.Get"); + scope.Start(); + try + { + var apiVersion = GetApiVersion(cancellationToken); + var result = _restClient.GetById(Id, apiVersion, cancellationToken); + if (result.Value == null) + throw _clientDiagnostics.CreateRequestFailedException(result.GetRawResponse()); + + return Response.FromValue(new GenericResource(this, result), result.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Gets the current GenericResource from Azure. + /// The cancellation token to use. + public virtual async Task> GetAsync(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("GenericResource.Get"); + scope.Start(); + try + { + var apiVersion = await GetApiVersionAsync(cancellationToken).ConfigureAwait(false); + var response = await _restClient.GetByIdAsync(Id, apiVersion, cancellationToken).ConfigureAwait(false); + if (response.Value == null) + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); + + return Response.FromValue(new GenericResource(this, response), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + protected override void ValidateResourceType(ResourceIdentifier identifier) + { + if (identifier is null) + throw new ArgumentNullException(nameof(identifier)); + } + + /// + /// Replace the tags on the resource with the given set. + /// + /// The set of tags to use as replacement. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The updated resource with the tag added. + public virtual Response SetTags(IDictionary tags, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("GenericResource.SetTags"); + scope.Start(); + try + { + var apiVersion = GetApiVersion(cancellationToken); + TagResource.Delete(cancellationToken); + var newTags = TagResource.Get(cancellationToken); + newTags.Value.Data.Properties.TagsValue.ReplaceWith(tags); + TagContainer.CreateOrUpdate(new TagResourceData(newTags.Value.Data.Properties), cancellationToken); + var originalResponse = _restClient.GetById(Id, apiVersion, cancellationToken); + return Response.FromValue(new GenericResource(this, originalResponse.Value), originalResponse.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Replace the tags on the resource with the given set. + /// + /// The set of tags to use as replacement. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The updated resource with the tag added. + public virtual async Task> SetTagsAsync(IDictionary tags, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("GenericResource.SetTags"); + scope.Start(); + try + { + var apiVersion = await GetApiVersionAsync(cancellationToken).ConfigureAwait(false); + await TagResource.DeleteAsync(cancellationToken).ConfigureAwait(false); + var newTags = await TagResource.GetAsync(cancellationToken).ConfigureAwait(false); + newTags.Value.Data.Properties.TagsValue.ReplaceWith(tags); + await TagContainer.CreateOrUpdateAsync(new TagResourceData(newTags.Value.Data.Properties), cancellationToken).ConfigureAwait(false); + var originalResponse = await _restClient.GetByIdAsync(Id, apiVersion, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new GenericResource(this, originalResponse.Value), originalResponse.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Removes a tag by key from the resource. + /// + /// The key of the tag to remove. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The updated resource with the tag added. + public virtual Response RemoveTag(string key, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("GenericResource.RemoveTag"); + scope.Start(); + try + { + var apiVersion = GetApiVersion(cancellationToken); + var originalTags = TagResource.Get(cancellationToken).Value; + originalTags.Data.Properties.TagsValue.Remove(key); + TagContainer.CreateOrUpdate(originalTags.Data, cancellationToken); + var originalResponse = _restClient.GetById(Id, apiVersion, cancellationToken); + return Response.FromValue(new GenericResource(this, originalResponse.Value), originalResponse.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Removes a tag by key from the resource. + /// + /// The key of the tag to remove. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The updated resource with the tag added. + public virtual async Task> RemoveTagAsync(string key, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("GenericResource.RemoveTag"); + scope.Start(); + try + { + var apiVersion = await GetApiVersionAsync(cancellationToken).ConfigureAwait(false); + var originalTags = (await TagResource.GetAsync(cancellationToken).ConfigureAwait(false)).Value; + originalTags.Data.Properties.TagsValue.Remove(key); + await TagContainer.CreateOrUpdateAsync(originalTags.Data, cancellationToken).ConfigureAwait(false); + var originalResponse = await _restClient.GetByIdAsync(Id, apiVersion, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new GenericResource(this, originalResponse.Value), originalResponse.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Updates a resource by ID. + /// Update resource parameters. + /// The cancellation token to use. + /// is null. + public virtual Response Update(GenericResourceData parameters, CancellationToken cancellationToken = default) + { + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var scope = _clientDiagnostics.CreateScope("GenericResource.Update"); + scope.Start(); + try + { + var operation = StartUpdate(parameters, cancellationToken); + return operation.WaitForCompletion(cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Updates a resource by ID. + /// Update resource parameters. + /// The cancellation token to use. + /// is null. + public virtual async Task> UpdateAsync(GenericResourceData parameters, CancellationToken cancellationToken = default) + { + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var scope = _clientDiagnostics.CreateScope("GenericResource.Update"); + scope.Start(); + try + { + var operation = await StartUpdateAsync(parameters, cancellationToken).ConfigureAwait(false); + return await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Updates a resource by ID. + /// Update resource parameters. + /// The cancellation token to use. + /// is null. + public virtual ResourceUpdateByIdOperation StartUpdate(GenericResourceData parameters, CancellationToken cancellationToken = default) + { + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var scope = _clientDiagnostics.CreateScope("GenericResource.StartUpdate"); + scope.Start(); + try + { + var apiVersion = GetApiVersion(cancellationToken); + var originalResponse = _restClient.UpdateById(Id, apiVersion, parameters, cancellationToken); + return new ResourceUpdateByIdOperation(this, _clientDiagnostics, Pipeline, _restClient.CreateUpdateByIdRequest(Id, apiVersion, parameters).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Updates a resource by ID. + /// Update resource parameters. + /// The cancellation token to use. + /// is null. + public virtual async Task StartUpdateAsync(GenericResourceData parameters, CancellationToken cancellationToken = default) + { + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var scope = _clientDiagnostics.CreateScope("GenericResource.StartUpdate"); + scope.Start(); + try + { + var apiVersion = await GetApiVersionAsync(cancellationToken).ConfigureAwait(false); + var originalResponse = await _restClient.UpdateByIdAsync(Id, apiVersion, parameters, cancellationToken).ConfigureAwait(false); + return new ResourceUpdateByIdOperation(this, _clientDiagnostics, Pipeline, _restClient.CreateUpdateByIdRequest(Id, apiVersion, parameters).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + private string GetApiVersion(CancellationToken cancellationToken) + { + string version = ClientOptions.ApiVersions.TryGetApiVersion(Id.ResourceType, cancellationToken); + if (version is null) + { + throw new InvalidOperationException($"An invalid resouce id was given {Id}"); + } + return version; + } + + private async Task GetApiVersionAsync(CancellationToken cancellationToken) + { + string version = await ClientOptions.ApiVersions.TryGetApiVersionAsync(Id.ResourceType, cancellationToken).ConfigureAwait(false); + if (version is null) + { + throw new InvalidOperationException($"An invalid resouce id was given {Id}"); + } + return version; + } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceContainer.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceContainer.cs index a68c752c0d9fd..bcc5dd61c5dc6 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceContainer.cs @@ -6,6 +6,7 @@ using System.Threading; using System.Threading.Tasks; using Azure.Core; +using Azure.Core.Pipeline; using Azure.ResourceManager.Core; using Azure.ResourceManager.Resources.Models; @@ -14,8 +15,10 @@ namespace Azure.ResourceManager.Resources /// /// A class representing collection of resources and their operations over their parent. /// - public class GenericResourceContainer : ResourceContainer + public class GenericResourceContainer : ArmContainer { + private ClientDiagnostics _clientDiagnostics; + /// /// Initializes a new instance of the class for mocking. /// @@ -59,6 +62,8 @@ private ResourcesRestOperations RestClient } } + private ClientDiagnostics Diagnostics => _clientDiagnostics ??= new ClientDiagnostics(ClientOptions); + /// /// Gets details for this resource from the service. /// @@ -118,16 +123,16 @@ public virtual async Task> GetAsync(string resourceId, /// Comma-separated list of additional properties to be included in the response. Valid values include `createdTime`, `changedTime` and `provisioningState`. For example, `$expand=createdTime,changedTime`. /// The number of results to return. If null is passed, returns all resource groups. /// The cancellation token to use. - public virtual Pageable GetAll(string filter = null, string expand = null, int ? top = null, CancellationToken cancellationToken = default) + public virtual Pageable GetAll(string filter = null, string expand = null, int ? top = null, CancellationToken cancellationToken = default) { - Page FirstPageFunc(int? pageSizeHint) + Page FirstPageFunc(int? pageSizeHint) { using var scope = Diagnostics.CreateScope("GenericResourceContainer.GetAll"); scope.Start(); try { var response = RestClient.List(filter, expand, top, cancellationToken); - return Page.FromValues(response.Value.Value.Select(data => new GenericResourceExpanded(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); + return Page.FromValues(response.Value.Value.Select(data => new GenericResource(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); } catch (Exception e) { @@ -135,14 +140,14 @@ Page FirstPageFunc(int? pageSizeHint) throw; } } - Page NextPageFunc(string nextLink, int? pageSizeHint) + Page NextPageFunc(string nextLink, int? pageSizeHint) { using var scope = Diagnostics.CreateScope("GenericResourceContainer.GetAll"); scope.Start(); try { var response = RestClient.ListNextPage(nextLink, filter, expand, top, cancellationToken); - return Page.FromValues(response.Value.Value.Select(data => new GenericResourceExpanded(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); + return Page.FromValues(response.Value.Value.Select(data => new GenericResource(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); } catch (Exception e) { @@ -158,16 +163,16 @@ Page NextPageFunc(string nextLink, int? pageSizeHint) /// Comma-separated list of additional properties to be included in the response. Valid values include `createdTime`, `changedTime` and `provisioningState`. For example, `$expand=createdTime,changedTime`. /// The number of results to return. If null is passed, returns all resource groups. /// The cancellation token to use. - public virtual AsyncPageable GetAllAsync(string filter = null, string expand = null, int ? top = null, CancellationToken cancellationToken = default) + public virtual AsyncPageable GetAllAsync(string filter = null, string expand = null, int ? top = null, CancellationToken cancellationToken = default) { - async Task> FirstPageFunc(int? pageSizeHint) + async Task> FirstPageFunc(int? pageSizeHint) { using var scope = Diagnostics.CreateScope("GenericResourceContainer.GetAll"); scope.Start(); try { var response = await RestClient.ListAsync(filter, expand, top, cancellationToken).ConfigureAwait(false); - return Page.FromValues(response.Value.Value.Select(data => new GenericResourceExpanded(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); + return Page.FromValues(response.Value.Value.Select(data => new GenericResource(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); } catch (Exception e) { @@ -175,14 +180,14 @@ async Task> FirstPageFunc(int? pageSizeHint) throw; } } - async Task> NextPageFunc(string nextLink, int? pageSizeHint) + async Task> NextPageFunc(string nextLink, int? pageSizeHint) { using var scope = Diagnostics.CreateScope("GenericResourceContainer.GetAll"); scope.Start(); try { var response = await RestClient.ListNextPageAsync(nextLink, filter, expand, top, cancellationToken).ConfigureAwait(false); - return Page.FromValues(response.Value.Value.Select(data => new GenericResourceExpanded(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); + return Page.FromValues(response.Value.Value.Select(data => new GenericResource(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); } catch (Exception e) { @@ -200,21 +205,21 @@ async Task> NextPageFunc(string nextLink, int? pag /// The number of results to return. If null is passed, returns all resources. /// The cancellation token to use. /// is null. - public virtual Pageable GetByResourceGroup(string resourceGroupName, string filter = null, string expand = null, int? top = null, CancellationToken cancellationToken = default) + public virtual Pageable GetByResourceGroup(string resourceGroupName, string filter = null, string expand = null, int? top = null, CancellationToken cancellationToken = default) { if (resourceGroupName == null) { throw new ArgumentNullException(nameof(resourceGroupName)); } - Page FirstPageFunc(int? pageSizeHint) + Page FirstPageFunc(int? pageSizeHint) { using var scope = Diagnostics.CreateScope("GenericResourceContainer.GetByResourceGroup"); scope.Start(); try { var response = RestClient.ListByResourceGroup(resourceGroupName, filter, expand, top, cancellationToken); - return Page.FromValues(response.Value.Value.Select(data => new GenericResourceExpanded(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); + return Page.FromValues(response.Value.Value.Select(data => new GenericResource(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); } catch (Exception e) { @@ -222,14 +227,14 @@ Page FirstPageFunc(int? pageSizeHint) throw; } } - Page NextPageFunc(string nextLink, int? pageSizeHint) + Page NextPageFunc(string nextLink, int? pageSizeHint) { using var scope = Diagnostics.CreateScope("GenericResourceContainer.GetByResourceGroup"); scope.Start(); try { var response = RestClient.ListByResourceGroupNextPage(nextLink, resourceGroupName, filter, expand, top, cancellationToken); - return Page.FromValues(response.Value.Value.Select(data => new GenericResourceExpanded(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); + return Page.FromValues(response.Value.Value.Select(data => new GenericResource(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); } catch (Exception e) { @@ -247,21 +252,21 @@ Page NextPageFunc(string nextLink, int? pageSizeHint) /// The number of results to return. If null is passed, returns all resources. /// The cancellation token to use. /// is null. - public virtual AsyncPageable GetByResourceGroupAsync(string resourceGroupName, string filter = null, string expand = null, int ? top = null, CancellationToken cancellationToken = default) + public virtual AsyncPageable GetByResourceGroupAsync(string resourceGroupName, string filter = null, string expand = null, int ? top = null, CancellationToken cancellationToken = default) { if (resourceGroupName == null) { throw new ArgumentNullException(nameof(resourceGroupName)); } - async Task> FirstPageFunc(int? pageSizeHint) + async Task> FirstPageFunc(int? pageSizeHint) { using var scope = Diagnostics.CreateScope("GenericResourceContainer.GetByResourceGroup"); scope.Start(); try { var response = await RestClient.ListByResourceGroupAsync(resourceGroupName, filter, expand, top, cancellationToken).ConfigureAwait(false); - return Page.FromValues(response.Value.Value.Select(data => new GenericResourceExpanded(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); + return Page.FromValues(response.Value.Value.Select(data => new GenericResource(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); } catch (Exception e) { @@ -269,14 +274,14 @@ async Task> FirstPageFunc(int? pageSizeHint) throw; } } - async Task> NextPageFunc(string nextLink, int? pageSizeHint) + async Task> NextPageFunc(string nextLink, int? pageSizeHint) { using var scope = Diagnostics.CreateScope("GenericResourceContainer.GetByResourceGroup"); scope.Start(); try { var response = await RestClient.ListByResourceGroupNextPageAsync(nextLink, resourceGroupName, filter, expand, top, cancellationToken).ConfigureAwait(false); - return Page.FromValues(response.Value.Value.Select(data => new GenericResourceExpanded(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); + return Page.FromValues(response.Value.Value.Select(data => new GenericResource(this, data)).ToList(), response.Value.NextLink, response.GetRawResponse()); } catch (Exception e) { diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceData.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceData.cs index c70a53632e5da..b657e41d29eac 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceData.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceData.cs @@ -5,6 +5,7 @@ #nullable disable +using System; using System.Collections.Generic; using Azure.ResourceManager.Resources.Models; @@ -30,7 +31,10 @@ public GenericResourceData() /// ID of the resource that manages this resource. /// The SKU of the resource. /// The identity of the resource. - internal GenericResourceData(string id, string name, string type, string location, IDictionary tags, Plan plan, object properties, string kind, string managedBy, Sku sku, ResourceIdentity identity) : base(id, name, type, location, tags) + /// The created time of the resource. This is only present if requested via the $expand query parameter. + /// The changed time of the resource. This is only present if requested via the $expand query parameter. + /// The provisioning state of the resource. This is only present if requested via the $expand query parameter. + internal GenericResourceData(string id, string name, string type, string location, IDictionary tags, Plan plan, object properties, string kind, string managedBy, Sku sku, ResourceIdentity identity, DateTimeOffset? createdTime, DateTimeOffset? changedTime, string provisioningState) : base(id, name, type, location, tags) { Plan = plan; Properties = properties; @@ -38,6 +42,9 @@ internal GenericResourceData(string id, string name, string type, string locatio ManagedBy = managedBy; Sku = sku; Identity = identity; + CreatedTime = createdTime; + ChangedTime = changedTime; + ProvisioningState = provisioningState; } /// The plan of the resource. @@ -52,5 +59,11 @@ internal GenericResourceData(string id, string name, string type, string locatio public Sku Sku { get; set; } /// The identity of the resource. public ResourceIdentity Identity { get; set; } + /// The created time of the resource. This is only present if requested via the $expand query parameter. + public DateTimeOffset? CreatedTime { get; } + /// The changed time of the resource. This is only present if requested via the $expand query parameter. + public DateTimeOffset? ChangedTime { get; } + /// The provisioning state of the resource. This is only present if requested via the $expand query parameter. + public string ProvisioningState { get; } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceExpanded.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceExpanded.cs deleted file mode 100644 index 16c4e19b18538..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceExpanded.cs +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using Azure.ResourceManager.Core; -using Azure.ResourceManager.Resources.Models; - -namespace Azure.ResourceManager.Resources -{ - /// - /// A class representing an expanded generic azure resource along with the instance operations that can be performed on it. - /// - public class GenericResourceExpanded : GenericResourceOperations - { - /// - /// Initializes a new instance of the class for mocking. - /// - protected GenericResourceExpanded() - { - } - - /// - /// Initializes a new instance of the class. - /// - /// The operations object to copy the client parameters from. - /// The data model representing the generic azure resource. - internal GenericResourceExpanded(ResourceOperations operations, GenericResourceExpandedData resource) - : base(operations, resource.Id) - { - Data = resource; - } - - /// - /// Gets the data representing this generic azure resource. - /// - public virtual GenericResourceExpandedData Data { get; } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceExpandedData.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceExpandedData.cs deleted file mode 100644 index 99777a43ecf78..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceExpandedData.cs +++ /dev/null @@ -1,51 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -// - -#nullable disable - -using System; -using System.Collections.Generic; -using Azure.ResourceManager.Resources.Models; - -namespace Azure.ResourceManager.Resources -{ - /// Resource information. - public partial class GenericResourceExpandedData : GenericResourceData - { - /// Initializes a new instance of GenericResourceExpanded. - public GenericResourceExpandedData() - { - } - - /// Initializes a new instance of GenericResourceExpanded. - /// Resource ID. - /// Resource name. - /// Resource type. - /// Resource location. - /// Resource tags. - /// The plan of the resource. - /// The resource properties. - /// The kind of the resource. - /// ID of the resource that manages this resource. - /// The SKU of the resource. - /// The identity of the resource. - /// The created time of the resource. This is only present if requested via the $expand query parameter. - /// The changed time of the resource. This is only present if requested via the $expand query parameter. - /// The provisioning state of the resource. This is only present if requested via the $expand query parameter. - internal GenericResourceExpandedData(string id, string name, string type, string location, IDictionary tags, Plan plan, object properties, string kind, string managedBy, Sku sku, ResourceIdentity identity, DateTimeOffset? createdTime, DateTimeOffset? changedTime, string provisioningState) : base(id, name, type, location, tags, plan, properties, kind, managedBy, sku, identity) - { - CreatedTime = createdTime; - ChangedTime = changedTime; - ProvisioningState = provisioningState; - } - - /// The created time of the resource. This is only present if requested via the $expand query parameter. - public DateTimeOffset? CreatedTime { get; } - /// The changed time of the resource. This is only present if requested via the $expand query parameter. - public DateTimeOffset? ChangedTime { get; } - /// The provisioning state of the resource. This is only present if requested via the $expand query parameter. - public string ProvisioningState { get; } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceOperations.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceOperations.cs deleted file mode 100644 index a5a88c45d13ea..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/GenericResourceOperations.cs +++ /dev/null @@ -1,486 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; -using System.Collections.Generic; -using System.Threading; -using System.Threading.Tasks; -using Azure.Core; -using Azure.ResourceManager.Core; -using Azure.ResourceManager.Resources.Models; - -namespace Azure.ResourceManager.Resources -{ - /// - /// A class representing the operations that can be performed over a specific ArmResource. - /// - public class GenericResourceOperations : ResourceOperations - { - /// - /// Initializes a new instance of the class for mocking. - /// - protected GenericResourceOperations() - { - } - - /// - /// Initializes a new instance of the class. - /// - /// The operation to get the client properties from. - /// The id of the resource. - internal GenericResourceOperations(ResourceOperations operations, ResourceIdentifier id) - : base(operations, id) - { - } - - /// - protected override ResourceType ValidResourceType => ResourceGroupOperations.ResourceType; - - private ResourcesRestOperations RestClient - { - get - { - string subscription; - if (!Id.TryGetSubscriptionId(out subscription)) - { - subscription = Guid.Empty.ToString(); - } - - return new ResourcesRestOperations( - new Azure.Core.Pipeline.ClientDiagnostics(ClientOptions), - ManagementPipelineBuilder.Build(Credential, BaseUri, ClientOptions), - subscription, - BaseUri); - } - } - - /// - /// Delete the resource. - /// - /// A token allowing immediate cancellation of any blocking call performed during the deletion. - /// The status of the delete operation. - public virtual Response Delete(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("GenericResourceOperations.Delete"); - scope.Start(); - try - { - var operation = StartDelete(cancellationToken); - return operation.WaitForCompletion(cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Delete the resource. - /// - /// A token allowing immediate cancellation of any blocking call performed during the deletion. - /// A that on completion returns the status of the delete operation. - public virtual async Task DeleteAsync(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("GenericResourceOperations.Delete"); - scope.Start(); - try - { - var operation = await StartDeleteAsync(cancellationToken).ConfigureAwait(false); - return await operation.WaitForCompletionResponseAsync(cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Delete the resource. - /// - /// A token allowing immediate cancellation of any blocking call performed during the deletion. - /// A which allows the caller to control polling and waiting for resource deletion. - /// The operation yields the final http response to the delete request when complete. - /// - /// Details on long running operation object. - /// - public virtual ResourceDeleteByIdOperation StartDelete(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("GenericResourceOperations.StartDelete"); - scope.Start(); - try - { - var apiVersion = GetApiVersion(cancellationToken); - var originalResponse = RestClient.DeleteById(Id, apiVersion, cancellationToken); - return new ResourceDeleteByIdOperation(Diagnostics, Pipeline, RestClient.CreateDeleteByIdRequest(Id, apiVersion).Request, originalResponse); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Delete the resource. This call returns a Task that blocks until the delete operation is accepted on the service. - /// - /// A token to allow the caller to cancel the call to the service. - /// The default value is . - /// A that on completion returns a which - /// allows the caller to control polling and waiting for resource deletion. - /// The operation yields the final http response to the delete request when complete. - /// - /// Details on long running operation object. - /// - public virtual async Task StartDeleteAsync(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("GenericResourceOperations.StartDelete"); - scope.Start(); - try - { - var apiVersion = await GetApiVersionAsync(cancellationToken).ConfigureAwait(false); - var originalResponse = await RestClient.DeleteByIdAsync(Id, apiVersion, cancellationToken).ConfigureAwait(false); - return new ResourceDeleteByIdOperation(Diagnostics, Pipeline, RestClient.CreateDeleteByIdRequest(Id, apiVersion).Request, originalResponse); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Add a tag to the current resource. - /// - /// The key for the tag. - /// The value for the tag. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The updated resource with the tag added. - public virtual Response AddTag(string key, string value, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("GenericResourceOperations.AddTag"); - scope.Start(); - try - { - var apiVersion = GetApiVersion(cancellationToken); - var originalTags = TagResourceOperations.Get(cancellationToken).Value; - originalTags.Data.Properties.TagsValue[key] = value; - TagContainer.CreateOrUpdate(originalTags.Data, cancellationToken); - var originalResponse = RestClient.GetById(Id, apiVersion, cancellationToken); - return Response.FromValue(new GenericResource(this, originalResponse.Value), originalResponse.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Add a tag to the current resource. - /// - /// The key for the tag. - /// The value for the tag. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The updated resource with the tag added. - public virtual async Task> AddTagAsync(string key, string value, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("GenericResourceOperations.AddTag"); - scope.Start(); - try - { - var apiVersion = await GetApiVersionAsync(cancellationToken).ConfigureAwait(false); - var originalTags = (await TagResourceOperations.GetAsync(cancellationToken).ConfigureAwait(false)).Value; - originalTags.Data.Properties.TagsValue[key] = value; - await TagContainer.CreateOrUpdateAsync(originalTags.Data, cancellationToken).ConfigureAwait(false); - var originalResponse = await RestClient.GetByIdAsync(Id, apiVersion, cancellationToken).ConfigureAwait(false); - return Response.FromValue(new GenericResource(this, originalResponse.Value), originalResponse.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Gets the current GenericResource from Azure. - /// The cancellation token to use. - public virtual Response Get(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("GenericResourceOperations.Get"); - scope.Start(); - try - { - var apiVersion = GetApiVersion(cancellationToken); - var result = RestClient.GetById(Id, apiVersion, cancellationToken); - if (result.Value == null) - throw Diagnostics.CreateRequestFailedException(result.GetRawResponse()); - - return Response.FromValue(new GenericResource(this, result), result.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Gets the current GenericResource from Azure. - /// The cancellation token to use. - public virtual async Task> GetAsync(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("GenericResourceOperations.Get"); - scope.Start(); - try - { - var apiVersion = await GetApiVersionAsync(cancellationToken).ConfigureAwait(false); - var response = await RestClient.GetByIdAsync(Id, apiVersion, cancellationToken).ConfigureAwait(false); - if (response.Value == null) - throw await Diagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); - - return Response.FromValue(new GenericResource(this, response), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - protected override void ValidateResourceType(ResourceIdentifier identifier) - { - if (identifier is null) - throw new ArgumentNullException(nameof(identifier)); - } - - /// - /// Replace the tags on the resource with the given set. - /// - /// The set of tags to use as replacement. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The updated resource with the tag added. - public virtual Response SetTags(IDictionary tags, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("GenericResourceOperations.SetTags"); - scope.Start(); - try - { - var apiVersion = GetApiVersion(cancellationToken); - TagResourceOperations.Delete(cancellationToken); - var newTags = TagResourceOperations.Get(cancellationToken); - newTags.Value.Data.Properties.TagsValue.ReplaceWith(tags); - TagContainer.CreateOrUpdate(new TagResourceData(newTags.Value.Data.Properties), cancellationToken); - var originalResponse = RestClient.GetById(Id, apiVersion, cancellationToken); - return Response.FromValue(new GenericResource(this, originalResponse.Value), originalResponse.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Replace the tags on the resource with the given set. - /// - /// The set of tags to use as replacement. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The updated resource with the tag added. - public virtual async Task> SetTagsAsync(IDictionary tags, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("GenericResourceOperations.SetTags"); - scope.Start(); - try - { - var apiVersion = await GetApiVersionAsync(cancellationToken).ConfigureAwait(false); - await TagResourceOperations.DeleteAsync(cancellationToken).ConfigureAwait(false); - var newTags = await TagResourceOperations.GetAsync(cancellationToken).ConfigureAwait(false); - newTags.Value.Data.Properties.TagsValue.ReplaceWith(tags); - await TagContainer.CreateOrUpdateAsync(new TagResourceData(newTags.Value.Data.Properties), cancellationToken).ConfigureAwait(false); - var originalResponse = await RestClient.GetByIdAsync(Id, apiVersion, cancellationToken).ConfigureAwait(false); - return Response.FromValue(new GenericResource(this, originalResponse.Value), originalResponse.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Removes a tag by key from the resource. - /// - /// The key of the tag to remove. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The updated resource with the tag added. - public virtual Response RemoveTag(string key, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("GenericResourceOperations.RemoveTag"); - scope.Start(); - try - { - var apiVersion = GetApiVersion(cancellationToken); - var originalTags = TagResourceOperations.Get(cancellationToken).Value; - originalTags.Data.Properties.TagsValue.Remove(key); - TagContainer.CreateOrUpdate(originalTags.Data, cancellationToken); - var originalResponse = RestClient.GetById(Id, apiVersion, cancellationToken); - return Response.FromValue(new GenericResource(this, originalResponse.Value), originalResponse.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Removes a tag by key from the resource. - /// - /// The key of the tag to remove. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The updated resource with the tag added. - public virtual async Task> RemoveTagAsync(string key, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("GenericResourceOperations.RemoveTag"); - scope.Start(); - try - { - var apiVersion = await GetApiVersionAsync(cancellationToken).ConfigureAwait(false); - var originalTags = (await TagResourceOperations.GetAsync(cancellationToken).ConfigureAwait(false)).Value; - originalTags.Data.Properties.TagsValue.Remove(key); - await TagContainer.CreateOrUpdateAsync(originalTags.Data, cancellationToken).ConfigureAwait(false); - var originalResponse = await RestClient.GetByIdAsync(Id, apiVersion, cancellationToken).ConfigureAwait(false); - return Response.FromValue(new GenericResource(this, originalResponse.Value), originalResponse.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Updates a resource by ID. - /// Update resource parameters. - /// The cancellation token to use. - /// is null. - public virtual Response Update(GenericResourceData parameters, CancellationToken cancellationToken = default) - { - if (parameters == null) - { - throw new ArgumentNullException(nameof(parameters)); - } - - using var scope = Diagnostics.CreateScope("GenericResourceOperations.Update"); - scope.Start(); - try - { - var operation = StartUpdate(parameters, cancellationToken); - return operation.WaitForCompletion(cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Updates a resource by ID. - /// Update resource parameters. - /// The cancellation token to use. - /// is null. - public virtual async Task> UpdateAsync(GenericResourceData parameters, CancellationToken cancellationToken = default) - { - if (parameters == null) - { - throw new ArgumentNullException(nameof(parameters)); - } - - using var scope = Diagnostics.CreateScope("GenericResourceOperations.Update"); - scope.Start(); - try - { - var operation = await StartUpdateAsync(parameters, cancellationToken).ConfigureAwait(false); - return await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Updates a resource by ID. - /// Update resource parameters. - /// The cancellation token to use. - /// is null. - public virtual ResourceUpdateByIdOperation StartUpdate(GenericResourceData parameters, CancellationToken cancellationToken = default) - { - if (parameters == null) - { - throw new ArgumentNullException(nameof(parameters)); - } - - using var scope = Diagnostics.CreateScope("GenericResourceOperations.StartUpdate"); - scope.Start(); - try - { - var apiVersion = GetApiVersion(cancellationToken); - var originalResponse = RestClient.UpdateById(Id, apiVersion, parameters, cancellationToken); - return new ResourceUpdateByIdOperation(this, Diagnostics, Pipeline, RestClient.CreateUpdateByIdRequest(Id, apiVersion, parameters).Request, originalResponse); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Updates a resource by ID. - /// Update resource parameters. - /// The cancellation token to use. - /// is null. - public virtual async Task StartUpdateAsync(GenericResourceData parameters, CancellationToken cancellationToken = default) - { - if (parameters == null) - { - throw new ArgumentNullException(nameof(parameters)); - } - - using var scope = Diagnostics.CreateScope("GenericResourceOperations.StartUpdate"); - scope.Start(); - try - { - var apiVersion = await GetApiVersionAsync(cancellationToken).ConfigureAwait(false); - var originalResponse = await RestClient.UpdateByIdAsync(Id, apiVersion, parameters, cancellationToken).ConfigureAwait(false); - return new ResourceUpdateByIdOperation(this, Diagnostics, Pipeline, RestClient.CreateUpdateByIdRequest(Id, apiVersion, parameters).Request, originalResponse); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - private string GetApiVersion(CancellationToken cancellationToken) - { - string version = ClientOptions.ApiVersions.TryGetApiVersion(Id.ResourceType, cancellationToken); - if (version is null) - { - throw new InvalidOperationException($"An invalid resouce id was given {Id}"); - } - return version; - } - - private async Task GetApiVersionAsync(CancellationToken cancellationToken) - { - string version = await ClientOptions.ApiVersions.TryGetApiVersionAsync(Id.ResourceType, cancellationToken).ConfigureAwait(false); - if (version is null) - { - throw new InvalidOperationException($"An invalid resouce id was given {Id}"); - } - return version; - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/LongRunningOperation/ResourceCreateOrUpdateByIdOperation.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/LongRunningOperation/ResourceCreateOrUpdateByIdOperation.cs index 11d36314d7c16..694d4c540d80a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/LongRunningOperation/ResourceCreateOrUpdateByIdOperation.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/LongRunningOperation/ResourceCreateOrUpdateByIdOperation.cs @@ -19,14 +19,14 @@ namespace Azure.ResourceManager.Resources.Models public partial class ResourceCreateOrUpdateByIdOperation : Operation, IOperationSource { private readonly OperationOrResponseInternals _operation; - private readonly ResourceOperations _parentOperation; + private readonly ArmResource _parentOperation; /// Initializes a new instance of ResourceCreateOrUpdateByIdOperation for mocking. protected ResourceCreateOrUpdateByIdOperation() { } - internal ResourceCreateOrUpdateByIdOperation(ResourceOperations parentOperation, ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + internal ResourceCreateOrUpdateByIdOperation(ArmResource parentOperation, ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) { _operation = new OperationOrResponseInternals(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "ResourceCreateOrUpdateByIdOperation"); _parentOperation = parentOperation; diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/LongRunningOperation/ResourceGroupCreateOrUpdateOperation.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/LongRunningOperation/ResourceGroupCreateOrUpdateOperation.cs index 32d3b0af52693..5b1d23805116e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/LongRunningOperation/ResourceGroupCreateOrUpdateOperation.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/LongRunningOperation/ResourceGroupCreateOrUpdateOperation.cs @@ -23,7 +23,7 @@ protected ResourceGroupCreateOrUpdateOperation() { } - internal ResourceGroupCreateOrUpdateOperation(ResourceOperations parentOperation, Response response) + internal ResourceGroupCreateOrUpdateOperation(ArmResource parentOperation, Response response) { _operation = new OperationOrResponseInternals(Response.FromValue(new ResourceGroup(parentOperation, response.Value), response.GetRawResponse())); } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/LongRunningOperation/ResourceUpdateByIdOperation.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/LongRunningOperation/ResourceUpdateByIdOperation.cs index 50453c2a870f0..8228cc219f931 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/LongRunningOperation/ResourceUpdateByIdOperation.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/LongRunningOperation/ResourceUpdateByIdOperation.cs @@ -19,14 +19,14 @@ namespace Azure.ResourceManager.Resources.Models public partial class ResourceUpdateByIdOperation : Operation, IOperationSource { private readonly OperationOrResponseInternals _operation; - private readonly ResourceOperations _parentOperation; + private readonly ArmResource _parentOperation; /// Initializes a new instance of ResourceUpdateByIdOperation for mocking. protected ResourceUpdateByIdOperation() { } - internal ResourceUpdateByIdOperation(ResourceOperations parentOperation, ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) + internal ResourceUpdateByIdOperation(ArmResource parentOperation, ClientDiagnostics clientDiagnostics, HttpPipeline pipeline, Request request, Response response) { _operation = new OperationOrResponseInternals(this, clientDiagnostics, pipeline, request, response, OperationFinalStateVia.Location, "ResourceUpdateByIdOperation"); _parentOperation = parentOperation; diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/LongRunningOperation/TagCreateOrUpdateOperation.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/LongRunningOperation/TagCreateOrUpdateOperation.cs index 37bba054806bc..f8d28008c6262 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/LongRunningOperation/TagCreateOrUpdateOperation.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/LongRunningOperation/TagCreateOrUpdateOperation.cs @@ -23,7 +23,7 @@ protected TagCreateOrUpdateOperation() { } - internal TagCreateOrUpdateOperation(ResourceOperations parentOperation, Response response) + internal TagCreateOrUpdateOperation(ArmResource parentOperation, Response response) { _operation = new OperationOrResponseInternals(Response.FromValue(new TagResource(parentOperation, response.Value), response.GetRawResponse())); } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Models/GenericResourceData.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Models/GenericResourceData.Serialization.cs index 0fb4e1c1fe3d1..8476a120f177b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Models/GenericResourceData.Serialization.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Models/GenericResourceData.Serialization.cs @@ -5,6 +5,7 @@ #nullable disable +using System; using System.Collections.Generic; using System.Text.Json; using Azure.Core; @@ -68,6 +69,9 @@ void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) internal static GenericResourceData DeserializeGenericResource(JsonElement element) { + Optional createdTime = default; + Optional changedTime = default; + Optional provisioningState = default; Optional plan = default; Optional properties = default; Optional kind = default; @@ -81,6 +85,31 @@ internal static GenericResourceData DeserializeGenericResource(JsonElement eleme Optional> tags = default; foreach (var property in element.EnumerateObject()) { + if (property.NameEquals("createdTime")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + createdTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("changedTime")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + changedTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("provisioningState")) + { + provisioningState = property.Value.GetString(); + continue; + } if (property.NameEquals("plan")) { if (property.Value.ValueKind == JsonValueKind.Null) @@ -167,7 +196,7 @@ internal static GenericResourceData DeserializeGenericResource(JsonElement eleme continue; } } - return new GenericResourceData(id.Value, name.Value, type.Value, location.Value, Optional.ToDictionary(tags), plan.Value, properties.Value, kind.Value, managedBy.Value, sku.Value, identity.Value); + return new GenericResourceData(id.Value, name.Value, type.Value, location.Value, Optional.ToDictionary(tags), plan.Value, properties.Value, kind.Value, managedBy.Value, sku.Value, identity.Value, Optional.ToNullable(createdTime), Optional.ToNullable(changedTime), provisioningState.Value); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Models/GenericResourceExpandedData.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Models/GenericResourceExpandedData.Serialization.cs deleted file mode 100644 index 5b1dbdd57d8c0..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Models/GenericResourceExpandedData.Serialization.cs +++ /dev/null @@ -1,202 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -// - -#nullable disable - -using System; -using System.Collections.Generic; -using System.Text.Json; -using Azure.Core; -using Azure.ResourceManager.Resources.Models; - -namespace Azure.ResourceManager.Resources -{ - public partial class GenericResourceExpandedData : IUtf8JsonSerializable - { - void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) - { - writer.WriteStartObject(); - if (Optional.IsDefined(Plan)) - { - writer.WritePropertyName("plan"); - writer.WriteObjectValue(Plan); - } - if (Optional.IsDefined(Properties)) - { - writer.WritePropertyName("properties"); - writer.WriteObjectValue(Properties); - } - if (Optional.IsDefined(Kind)) - { - writer.WritePropertyName("kind"); - writer.WriteStringValue(Kind); - } - if (Optional.IsDefined(ManagedBy)) - { - writer.WritePropertyName("managedBy"); - writer.WriteStringValue(ManagedBy); - } - if (Optional.IsDefined(Sku)) - { - writer.WritePropertyName("sku"); - writer.WriteObjectValue(Sku); - } - if (Optional.IsDefined(Identity)) - { - writer.WritePropertyName("identity"); - writer.WriteObjectValue(Identity); - } - if (Optional.IsDefined(Location)) - { - writer.WritePropertyName("location"); - writer.WriteStringValue(Location); - } - if (Optional.IsCollectionDefined(Tags)) - { - writer.WritePropertyName("tags"); - writer.WriteStartObject(); - foreach (var item in Tags) - { - writer.WritePropertyName(item.Key); - writer.WriteStringValue(item.Value); - } - writer.WriteEndObject(); - } - writer.WriteEndObject(); - } - - internal static GenericResourceExpandedData DeserializeGenericResourceExpanded(JsonElement element) - { - Optional createdTime = default; - Optional changedTime = default; - Optional provisioningState = default; - Optional plan = default; - Optional properties = default; - Optional kind = default; - Optional managedBy = default; - Optional sku = default; - Optional identity = default; - Optional id = default; - Optional name = default; - Optional type = default; - Optional location = default; - Optional> tags = default; - foreach (var property in element.EnumerateObject()) - { - if (property.NameEquals("createdTime")) - { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } - createdTime = property.Value.GetDateTimeOffset("O"); - continue; - } - if (property.NameEquals("changedTime")) - { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } - changedTime = property.Value.GetDateTimeOffset("O"); - continue; - } - if (property.NameEquals("provisioningState")) - { - provisioningState = property.Value.GetString(); - continue; - } - if (property.NameEquals("plan")) - { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } - plan = Plan.DeserializePlan(property.Value); - continue; - } - if (property.NameEquals("properties")) - { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } - properties = property.Value.GetObject(); - continue; - } - if (property.NameEquals("kind")) - { - kind = property.Value.GetString(); - continue; - } - if (property.NameEquals("managedBy")) - { - managedBy = property.Value.GetString(); - continue; - } - if (property.NameEquals("sku")) - { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } - sku = Sku.DeserializeSku(property.Value); - continue; - } - if (property.NameEquals("identity")) - { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } - identity = ResourceIdentity.DeserializeResourceIdentity(property.Value); - continue; - } - if (property.NameEquals("id")) - { - id = property.Value.GetString(); - continue; - } - if (property.NameEquals("name")) - { - name = property.Value.GetString(); - continue; - } - if (property.NameEquals("type")) - { - type = property.Value.GetString(); - continue; - } - if (property.NameEquals("location")) - { - location = property.Value.GetString(); - continue; - } - if (property.NameEquals("tags")) - { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } - Dictionary dictionary = new Dictionary(); - foreach (var property0 in property.Value.EnumerateObject()) - { - dictionary.Add(property0.Name, property0.Value.GetString()); - } - tags = dictionary; - continue; - } - } - return new GenericResourceExpandedData(id.Value, name.Value, type.Value, location.Value, Optional.ToDictionary(tags), plan.Value, properties.Value, kind.Value, managedBy.Value, sku.Value, identity.Value, Optional.ToNullable(createdTime), Optional.ToNullable(changedTime), provisioningState.Value); - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Models/ResourceListResult.Serialization.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Models/ResourceListResult.Serialization.cs index 49703ae27ca08..a0e5bb030d0a6 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Models/ResourceListResult.Serialization.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Models/ResourceListResult.Serialization.cs @@ -15,7 +15,7 @@ internal partial class ResourceListResult { internal static ResourceListResult DeserializeResourceListResult(JsonElement element) { - Optional> value = default; + Optional> value = default; Optional nextLink = default; foreach (var property in element.EnumerateObject()) { @@ -26,10 +26,10 @@ internal static ResourceListResult DeserializeResourceListResult(JsonElement ele property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); + List array = new List(); foreach (var item in property.Value.EnumerateArray()) { - array.Add(GenericResourceExpandedData.DeserializeGenericResourceExpanded(item)); + array.Add(GenericResourceData.DeserializeGenericResource(item)); } value = array; continue; diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Models/ResourceListResult.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Models/ResourceListResult.cs index b0504ef5c9a39..1143709a8494e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Models/ResourceListResult.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Models/ResourceListResult.cs @@ -16,20 +16,20 @@ internal partial class ResourceListResult /// Initializes a new instance of ResourceListResult. internal ResourceListResult() { - Value = new ChangeTrackingList(); + Value = new ChangeTrackingList(); } /// Initializes a new instance of ResourceListResult. /// An array of resources. /// The URL to use for getting the next set of results. - internal ResourceListResult(IReadOnlyList value, string nextLink) + internal ResourceListResult(IReadOnlyList value, string nextLink) { Value = value; NextLink = nextLink; } /// An array of resources. - public IReadOnlyList Value { get; } + public IReadOnlyList Value { get; } /// The URL to use for getting the next set of results. public string NextLink { get; } } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Provider.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Provider.cs index 0a6af930a2f8d..882d1229ee00d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Provider.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Provider.cs @@ -1,18 +1,26 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. +// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +// + +#nullable disable + using System; -using Azure.Core; +using System.Threading; +using System.Threading.Tasks; +using System.Xml.Linq; +using Azure.Core.Pipeline; using Azure.ResourceManager.Core; -using Azure.ResourceManager.Resources.Models; namespace Azure.ResourceManager.Resources { - /// - /// A class representing a generic azure resource along with the instance operations that can be performed on it. - /// - public class Provider : ProviderOperations + /// The Providers service client. + public partial class Provider : ArmResource { + private readonly ClientDiagnostics _clientDiagnostics; + private readonly ProviderRestOperations _restClient; + private readonly ProviderData _data; + /// /// Initializes a new instance of the class for mocking. /// @@ -20,23 +28,186 @@ protected Provider() { } + /// + /// Initializes a new instance of the class. + /// + /// + /// + internal Provider(ClientContext clientContext, ResourceIdentifier id) + : base(clientContext, id) + { + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _restClient = new ProviderRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); + } + /// /// Initializes a new instance of the class. /// /// The operations object to copy the client parameters from. /// - /// If or is null. - internal Provider(ResourceOperations operations, ProviderData providerData) + internal Provider(ArmResource operations, ProviderData providerData) : base(operations, providerData.Id) { - Data = providerData; + _data = providerData; + HasData = true; + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _restClient = new ProviderRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); + } + + /// + protected override ResourceType ValidResourceType => ResourceType; + + /// + /// Gets the resource type definition for a ResourceType. + /// + public static readonly ResourceType ResourceType = "Microsoft.Resources/providers"; + + /// + /// Gets whether or not the current instance has data. + /// + public bool HasData { get; } + + /// + /// Gets the data representing this provider. + /// + /// Throws if there is no data loaded in the current instance. + public virtual ProviderData Data + { + get + { + if (!HasData) + throw new InvalidOperationException("The current instance does not have data you must call Get first"); + return _data; + } + } + + /// Unregisters a subscription from a resource provider. + /// The namespace of the resource provider to unregister. + /// The cancellation token to use. + public virtual async Task> UnregisterAsync(string resourceProviderNamespace, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("Provider.Unregister"); + scope.Start(); + try + { + var result = await _restClient.UnregisterAsync(resourceProviderNamespace, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new Provider(this, result), result.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Unregisters a subscription from a resource provider. + /// The namespace of the resource provider to unregister. + /// The cancellation token to use. + public virtual Response Unregister(string resourceProviderNamespace, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("Provider.Unregister"); + scope.Start(); + try + { + var result = _restClient.Unregister(resourceProviderNamespace, cancellationToken); + return Response.FromValue(new Provider(this, result), result.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Registers a subscription with a resource provider. + /// The namespace of the resource provider to register. + /// The cancellation token to use. + public virtual async Task> RegisterAsync(string resourceProviderNamespace, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("Provider.Register"); + scope.Start(); + try + { + var result = await _restClient.RegisterAsync(resourceProviderNamespace, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new Provider(this, result), result.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Registers a subscription with a resource provider. + /// The namespace of the resource provider to register. + /// The cancellation token to use. + public virtual Response Register(string resourceProviderNamespace, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("Provider.Register"); + scope.Start(); + try + { + var result = _restClient.Register(resourceProviderNamespace, cancellationToken); + return Response.FromValue(new Provider(this, result), result.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } - internal Provider(ProviderData result) => Data = result; + /// Gets the current Provider from Azure. + /// The cancellation token to use. + public virtual Response Get(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("Provider.Get"); + scope.Start(); + + try + { + var result = _restClient.Get(Id.Name, null, cancellationToken); + if (result.Value == null) + throw _clientDiagnostics.CreateRequestFailedException(result.GetRawResponse()); + + return Response.FromValue(new Provider(this, result), result.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Gets the current Provider from Azure. + /// The cancellation token to use. + public virtual async Task> GetAsync(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("Provider.Get"); + scope.Start(); + + try + { + var response = await _restClient.GetAsync(Id.Name, null, cancellationToken).ConfigureAwait(false); + if (response.Value == null) + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); + + return Response.FromValue(new Provider(this, response), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } /// - /// Gets the data representing this generic azure resource. + /// Gets the features under this provider /// - public virtual ProviderData Data { get; } + /// + public virtual FeatureContainer GetFeatures() + { + return new FeatureContainer(this); + } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ProviderContainer.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ProviderContainer.cs index f61a8c5fd6524..eed9b304f91a8 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ProviderContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ProviderContainer.cs @@ -6,6 +6,7 @@ using System.Threading; using System.Threading.Tasks; using Azure.Core; +using Azure.Core.Pipeline; using Azure.ResourceManager.Core; using Azure.ResourceManager.Resources.Models; @@ -14,8 +15,11 @@ namespace Azure.ResourceManager.Resources /// /// A class representing collection of resources and their operations over their parent. /// - public class ProviderContainer : ResourceContainer + public class ProviderContainer : ArmContainer { + private ClientDiagnostics _clientDiagnostics; + private ProviderRestOperations _restClient; + /// /// Initializes a new instance of the class for mocking. /// @@ -27,31 +31,17 @@ protected ProviderContainer() /// Initializes a new instance of the class. /// /// The client context to use. - internal ProviderContainer(SubscriptionOperations parent) + internal ProviderContainer(Subscription parent) : base(parent) { } /// - protected override ResourceType ValidResourceType => SubscriptionOperations.ResourceType; + protected override ResourceType ValidResourceType => Subscription.ResourceType; - private ProviderRestOperations RestClient - { - get - { - string subscription; - if (Id is null || !Id.TryGetSubscriptionId(out subscription)) - { - subscription = Guid.Empty.ToString(); - } + private ProviderRestOperations RestClient => _restClient ??= new ProviderRestOperations(Diagnostics, Pipeline, Id.SubscriptionId, BaseUri); - return new ProviderRestOperations( - Diagnostics, - Pipeline, - subscription, - BaseUri); - } - } + private ClientDiagnostics Diagnostics => _clientDiagnostics ??= new ClientDiagnostics(ClientOptions); /// /// Gets the provider for a namespace. diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ProviderOperations.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ProviderOperations.cs deleted file mode 100644 index d565b392411ce..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ProviderOperations.cs +++ /dev/null @@ -1,193 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -// - -#nullable disable - -using System; -using System.Threading; -using System.Threading.Tasks; -using Azure.ResourceManager.Core; - -namespace Azure.ResourceManager.Resources -{ - /// The Providers service client. - public partial class ProviderOperations : ResourceOperations - { - /// - /// Initializes a new instance of the class for mocking. - /// - protected ProviderOperations() - { } - - /// - /// Initializes a new instance of the class. - /// - /// - /// - internal ProviderOperations(ClientContext clientContext, ResourceIdentifier id) - : base(clientContext, id) - { - } - - /// - /// Initializes a new instance of the class. - /// - /// The resource operations to copy the options from. - /// The identifier of the resource that is the target of operations. - protected ProviderOperations(ResourceOperations operations, ResourceIdentifier id) - : base(operations, id) - { - } - - /// - protected override ResourceType ValidResourceType => ResourceType; - - /// - /// Gets the resource type definition for a ResourceType. - /// - public static readonly ResourceType ResourceType = "Microsoft.Resources/providers"; - - private ProviderRestOperations RestClient - { - get - { - return new ProviderRestOperations( - Diagnostics, - Pipeline, - Id.SubscriptionId, - BaseUri); - } - } - - /// Unregisters a subscription from a resource provider. - /// The namespace of the resource provider to unregister. - /// The cancellation token to use. - public virtual async Task> UnregisterAsync(string resourceProviderNamespace, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ProviderOperations.Unregister"); - scope.Start(); - try - { - var result = await RestClient.UnregisterAsync(resourceProviderNamespace, cancellationToken).ConfigureAwait(false); - return Response.FromValue(new Provider(result), result.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Unregisters a subscription from a resource provider. - /// The namespace of the resource provider to unregister. - /// The cancellation token to use. - public virtual Response Unregister(string resourceProviderNamespace, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ProviderOperations.Unregister"); - scope.Start(); - try - { - var result = RestClient.Unregister(resourceProviderNamespace, cancellationToken); - return Response.FromValue(new Provider(result), result.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Registers a subscription with a resource provider. - /// The namespace of the resource provider to register. - /// The cancellation token to use. - public virtual async Task> RegisterAsync(string resourceProviderNamespace, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ProviderOperations.Register"); - scope.Start(); - try - { - var result = await RestClient.RegisterAsync(resourceProviderNamespace, cancellationToken).ConfigureAwait(false); - return Response.FromValue(new Provider(result), result.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Registers a subscription with a resource provider. - /// The namespace of the resource provider to register. - /// The cancellation token to use. - public virtual Response Register(string resourceProviderNamespace, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ProviderOperations.Register"); - scope.Start(); - try - { - var result = RestClient.Register(resourceProviderNamespace, cancellationToken); - return Response.FromValue(new Provider(result), result.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Gets the current Provider from Azure. - /// The cancellation token to use. - public virtual Response Get(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ProviderOperations.Get"); - scope.Start(); - - try - { - var result = RestClient.Get(Id.Name, null, cancellationToken); - if (result.Value == null) - throw Diagnostics.CreateRequestFailedException(result.GetRawResponse()); - - return Response.FromValue(new Provider(this, result), result.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Gets the current Provider from Azure. - /// The cancellation token to use. - public virtual async Task> GetAsync(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ProviderOperations.Get"); - scope.Start(); - - try - { - var response = await RestClient.GetAsync(Id.Name, null, cancellationToken).ConfigureAwait(false); - if (response.Value == null) - throw await Diagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); - - return Response.FromValue(new Provider(this, response), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Gets the features under this provider - /// - /// - public virtual FeatureContainer GetFeatures() - { - return new FeatureContainer(this); - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ResourceGroup.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ResourceGroup.cs index 9de124b698f4e..d1a863eaf00a5 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ResourceGroup.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ResourceGroup.cs @@ -1,16 +1,34 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Threading; +using System.Threading.Tasks; +using System.Xml.Linq; +using Azure.Core; +using Azure.Core.Pipeline; using Azure.ResourceManager.Core; using Azure.ResourceManager.Resources.Models; namespace Azure.ResourceManager.Resources { /// - /// A class representing a ResourceGroup along with the instance operations that can be performed on it. + /// A class representing the operations that can be performed over a specific ResourceGroup. /// - public class ResourceGroup : ResourceGroupOperations + public class ResourceGroup : ArmResource { + private readonly ClientDiagnostics _clientDiagnostics; + private readonly ResourceGroupsRestOperations _restClient; + private readonly ResourcesRestOperations _genericRestClient; + private readonly ResourceGroupData _data; + + /// + /// Gets the resource type definition for a ResourceType. + /// + public static readonly ResourceType ResourceType = "Microsoft.Resources/resourceGroups"; + /// /// Initializes a new instance of the class for mocking. /// @@ -18,20 +36,712 @@ protected ResourceGroup() { } + /// + /// Initializes a new instance of the class. + /// + /// The client parameters to use in these operations. + /// The id of the resource group to use. + internal ResourceGroup(ClientContext options, ResourceIdentifier id) + : base(options, id) + { + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _restClient = new ResourceGroupsRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); + _genericRestClient ??= new ResourcesRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); + } + /// /// Initializes a new instance of the class. /// /// The operations to copy the client options from. /// The ResourceGroupData to use in these operations. - internal ResourceGroup(ResourceOperations operations, ResourceGroupData resource) + internal ResourceGroup(ArmResource operations, ResourceGroupData resource) : base(operations, resource.Id) { - Data = resource; + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _restClient = new ResourceGroupsRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); + _genericRestClient ??= new ResourcesRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); + _data = resource; + HasData = true; } + /// + protected override ResourceType ValidResourceType => ResourceType; + + /// + /// Gets whether or not the current instance has data. + /// + public bool HasData { get; } + /// /// Gets the data representing this ResourceGroup. /// - public virtual ResourceGroupData Data { get; } + /// Throws if there is no data loaded in the current instance. + public virtual ResourceGroupData Data + { + get + { + if (!HasData) + throw new InvalidOperationException("The current instance does not have data you must call Get first"); + return _data; + } + } + + /// + /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. + /// + /// A token to allow the caller to cancel the call to the service. The default value is . + /// A response with the operation for this resource. + public virtual Response Delete(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.Delete"); + scope.Start(); + + try + { + var operation = StartDelete(cancellationToken); + return operation.WaitForCompletion(cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. + /// + /// A token to allow the caller to cancel the call to the service. The default value is . + /// A that on completion returns a response with the operation for this resource. + public virtual async Task DeleteAsync(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.Delete"); + scope.Start(); + + try + { + var operation = await StartDeleteAsync(cancellationToken).ConfigureAwait(false); + return await operation.WaitForCompletionResponseAsync(cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. + /// + /// A token to allow the caller to cancel the call to the service. The default value is . + /// A response with the operation for this resource. + /// + /// Details on long running operation object. + /// + public virtual ResourceGroupDeleteOperation StartDelete(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.StartDelete"); + scope.Start(); + + try + { + var originalResponse = _restClient.Delete(Id.Name, cancellationToken); + return new ResourceGroupDeleteOperation(_clientDiagnostics, Pipeline, _restClient.CreateDeleteRequest(Id.Name).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. + /// + /// A token to allow the caller to cancel the call to the service. The default value is . + /// A that on completion returns a response with the operation for this resource. + /// + /// Details on long running operation object. + /// + public virtual async Task StartDeleteAsync(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.StartDelete"); + scope.Start(); + + try + { + var originalResponse = await _restClient.DeleteAsync(Id.Name, cancellationToken).ConfigureAwait(false); + return new ResourceGroupDeleteOperation(_clientDiagnostics, Pipeline, _restClient.CreateDeleteRequest(Id.Name).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Captures the specified resource group as a template. + /// Parameters for exporting the template. + /// The cancellation token to use. + public virtual ResourceGroupExportTemplateOperation StartExportTemplate(ExportTemplateRequest parameters, CancellationToken cancellationToken = default) + { + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.StartExportTemplate"); + scope.Start(); + try + { + var originalResponse = _restClient.ExportTemplate(Id.Name, parameters, cancellationToken); + return new ResourceGroupExportTemplateOperation(_clientDiagnostics, Pipeline, _restClient.CreateExportTemplateRequest(Id.Name, parameters).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Captures the specified resource group as a template. + /// Parameters for exporting the template. + /// The cancellation token to use. + public virtual async Task StartExportTemplateAsync(ExportTemplateRequest parameters, CancellationToken cancellationToken = default) + { + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.StartExportTemplate"); + scope.Start(); + try + { + var originalResponse = await _restClient.ExportTemplateAsync(Id.Name, parameters, cancellationToken).ConfigureAwait(false); + return new ResourceGroupExportTemplateOperation(_clientDiagnostics, Pipeline, _restClient.CreateExportTemplateRequest(Id.Name, parameters).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Gets the current ResourceGroup from Azure. + /// The cancellation token to use. + public virtual Response Get(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.Get"); + scope.Start(); + + try + { + var result = _restClient.Get(Id.Name, cancellationToken); + if (result.Value == null) + throw _clientDiagnostics.CreateRequestFailedException(result.GetRawResponse()); + + return Response.FromValue(new ResourceGroup(this, result), result.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Gets the current ResourceGroup from Azure. + /// The cancellation token to use. + public virtual async Task> GetAsync(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.Get"); + scope.Start(); + + try + { + var response = await _restClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false); + if (response.Value == null) + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); + + return Response.FromValue(new ResourceGroup(this, response), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Resource groups can be updated through a simple PATCH operation to a group address. The format of the request is the same as that for creating a resource group. If a field is unspecified, the current value is retained. + /// Parameters supplied to update a resource group. + /// The cancellation token to use. + public virtual Response Update(ResourceGroupPatchable parameters, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.Update"); + scope.Start(); + try + { + var originalResponse = _restClient.Update(Id.Name, parameters, cancellationToken); + return Response.FromValue(new ResourceGroup(this, originalResponse), originalResponse.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Resource groups can be updated through a simple PATCH operation to a group address. The format of the request is the same as that for creating a resource group. If a field is unspecified, the current value is retained. + /// Parameters supplied to update a resource group. + /// The cancellation token to use. + public virtual async Task> UpdateAsync(ResourceGroupPatchable parameters, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.Update"); + scope.Start(); + try + { + var originalResponse = await _restClient.UpdateAsync(Id.Name, parameters, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new ResourceGroup(this, originalResponse), originalResponse.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Add a tag to the current resource. + /// + /// The key for the tag. + /// The value for the tag. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The updated resource with the tag added. + public virtual Response AddTag(string key, string value, CancellationToken cancellationToken = default) + { + if (string.IsNullOrWhiteSpace(key)) + throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); + + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.AddTag"); + scope.Start(); + + try + { + var originalTags = TagResource.Get(cancellationToken).Value; + originalTags.Data.Properties.TagsValue[key] = value; + TagContainer.CreateOrUpdate(originalTags.Data, cancellationToken); + var originalResponse = _restClient.Get(Id.Name, cancellationToken); + return Response.FromValue(new ResourceGroup(this, originalResponse.Value), originalResponse.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Add a tag to the current resource. + /// + /// The key for the tag. + /// The value for the tag. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The updated resource with the tag added. + public virtual async Task> AddTagAsync(string key, string value, CancellationToken cancellationToken = default) + { + if (string.IsNullOrWhiteSpace(key)) + throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); + + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.AddTag"); + scope.Start(); + + try + { + var originalTags = await TagResource.GetAsync(cancellationToken).ConfigureAwait(false); + originalTags.Value.Data.Properties.TagsValue[key] = value; + await TagContainer.CreateOrUpdateAsync(originalTags.Value.Data, cancellationToken).ConfigureAwait(false); + var originalResponse = await _restClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new ResourceGroup(this, originalResponse.Value), originalResponse.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Replace the tags on the resource with the given set. + /// + /// The set of tags to use as replacement. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The updated resource with the tag added. + public virtual Response SetTags(IDictionary tags, CancellationToken cancellationToken = default) + { + if (tags == null) + throw new ArgumentNullException(nameof(tags)); + + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.SetTags"); + scope.Start(); + + try + { + TagResource.Delete(cancellationToken); + var newTags = TagResource.Get(cancellationToken); + newTags.Value.Data.Properties.TagsValue.ReplaceWith(tags); + TagContainer.CreateOrUpdate(new TagResourceData(newTags.Value.Data.Properties), cancellationToken); + var originalResponse = _restClient.Get(Id.Name, cancellationToken); + return Response.FromValue(new ResourceGroup(this, originalResponse.Value), originalResponse.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Replace the tags on the resource with the given set. + /// + /// The set of tags to use as replacement. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The updated resource with the tag added. + public virtual async Task> SetTagsAsync(IDictionary tags, CancellationToken cancellationToken = default) + { + if (tags == null) + throw new ArgumentNullException(nameof(tags)); + + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.SetTags"); + scope.Start(); + + try + { + await TagResource.DeleteAsync(cancellationToken).ConfigureAwait(false); + var newTags = await TagResource.GetAsync(cancellationToken).ConfigureAwait(false); + newTags.Value.Data.Properties.TagsValue.ReplaceWith(tags); + await TagContainer.CreateOrUpdateAsync(new TagResourceData(newTags.Value.Data.Properties), cancellationToken).ConfigureAwait(false); + var originalResponse = await _restClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new ResourceGroup(this, originalResponse.Value), originalResponse.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Removes a tag by key from the resource. + /// + /// The key of the tag to remove. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The updated resource with the tag added. + public virtual Response RemoveTag(string key, CancellationToken cancellationToken = default) + { + if (string.IsNullOrWhiteSpace(key)) + throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); + + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.RemoveTag"); + scope.Start(); + + try + { + var originalTags = TagResource.Get(cancellationToken).Value; + originalTags.Data.Properties.TagsValue.Remove(key); + TagContainer.CreateOrUpdate(originalTags.Data, cancellationToken); + var originalResponse = _restClient.Get(Id.Name, cancellationToken); + return Response.FromValue(new ResourceGroup(this, originalResponse.Value), originalResponse.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Removes a tag by key from the resource. + /// + /// The key of the tag to remove. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The updated resource with the tag added. + public virtual async Task> RemoveTagAsync(string key, CancellationToken cancellationToken = default) + { + if (string.IsNullOrWhiteSpace(key)) + throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); + + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.RemoveTag"); + scope.Start(); + + try + { + var originalTags = await TagResource.GetAsync(cancellationToken).ConfigureAwait(false); + originalTags.Value.Data.Properties.TagsValue.Remove(key); + await TagContainer.CreateOrUpdateAsync(originalTags.Value.Data, cancellationToken).ConfigureAwait(false); + var originalResponse = await _restClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false); + return Response.FromValue(new ResourceGroup(this, originalResponse.Value), originalResponse.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Lists all available geo-locations. + /// + /// A token to allow the caller to cancel the call to the service. The default value is . + /// A collection of location that may take multiple service requests to iterate over. + public virtual IEnumerable GetAvailableLocations(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.GetAvailableLocations"); + scope.Start(); + + try + { + return ListAvailableLocations(ResourceType, cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Lists all available geo-locations. + /// + /// A token to allow the caller to cancel the call to the service. The default value is . + /// An async collection of location that may take multiple service requests to iterate over. + /// The default subscription id is null. + public virtual async Task> GetAvailableLocationsAsync(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.GetAvailableLocations"); + scope.Start(); + + try + { + return await ListAvailableLocationsAsync(ResourceType, cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// The resources to move must be in the same source resource group. The target resource group may be in a different subscription. When moving resources, both the source group and the target group are locked for the duration of the operation. Write and delete operations are blocked on the groups until the move completes. + /// Parameters for moving resources. + /// The cancellation token to use. + /// is null. + public virtual Response MoveResources(ResourcesMoveInfo parameters, CancellationToken cancellationToken = default) + { + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.MoveResources"); + scope.Start(); + try + { + var originalResponse = StartMoveResources(parameters, cancellationToken); + return originalResponse.WaitForCompletion(cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// The resources to move must be in the same source resource group. The target resource group may be in a different subscription. When moving resources, both the source group and the target group are locked for the duration of the operation. Write and delete operations are blocked on the groups until the move completes. + /// Parameters for moving resources. + /// The cancellation token to use. + /// is null. + public virtual async Task MoveResourcesAsync(ResourcesMoveInfo parameters, CancellationToken cancellationToken = default) + { + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.MoveResources"); + scope.Start(); + try + { + var originalResponse = await StartMoveResourcesAsync(parameters, cancellationToken).ConfigureAwait(false); + return await originalResponse.WaitForCompletionResponseAsync(cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// The resources to move must be in the same source resource group. The target resource group may be in a different subscription. When moving resources, both the source group and the target group are locked for the duration of the operation. Write and delete operations are blocked on the groups until the move completes. + /// Parameters for moving resources. + /// The cancellation token to use. + /// is null. + public virtual ResourceMoveResourcesOperation StartMoveResources(ResourcesMoveInfo parameters, CancellationToken cancellationToken = default) + { + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.StartMoveResources"); + scope.Start(); + try + { + var originalResponse = _genericRestClient.MoveResources(Id.Name, parameters, cancellationToken); + return new ResourceMoveResourcesOperation(_clientDiagnostics, Pipeline, _genericRestClient.CreateMoveResourcesRequest(Id.Name, parameters).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// The resources to move must be in the same source resource group. The target resource group may be in a different subscription. When moving resources, both the source group and the target group are locked for the duration of the operation. Write and delete operations are blocked on the groups until the move completes. + /// Parameters for moving resources. + /// The cancellation token to use. + /// is null. + public virtual async Task StartMoveResourcesAsync(ResourcesMoveInfo parameters, CancellationToken cancellationToken = default) + { + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.StartMoveResources"); + scope.Start(); + try + { + var originalResponse = await _genericRestClient.MoveResourcesAsync(Id.Name, parameters, cancellationToken).ConfigureAwait(false); + return new ResourceMoveResourcesOperation(_clientDiagnostics, Pipeline, _genericRestClient.CreateMoveResourcesRequest(Id.Name, parameters).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// This operation checks whether the specified resources can be moved to the target. The resources to move must be in the same source resource group. The target resource group may be in a different subscription. If validation succeeds, it returns HTTP response code 204 (no content). If validation fails, it returns HTTP response code 409 (Conflict) with an error message. Retrieve the URL in the Location header value to check the result of the long-running operation. + /// Parameters for moving resources. + /// The cancellation token to use. + /// is null. + public virtual Response ValidateMoveResources(ResourcesMoveInfo parameters, CancellationToken cancellationToken = default) + { + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.ValidateMoveResources"); + scope.Start(); + try + { + var operation = StartValidateMoveResources(parameters, cancellationToken); + return operation.WaitForCompletion(cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// This operation checks whether the specified resources can be moved to the target. The resources to move must be in the same source resource group. The target resource group may be in a different subscription. If validation succeeds, it returns HTTP response code 204 (no content). If validation fails, it returns HTTP response code 409 (Conflict) with an error message. Retrieve the URL in the Location header value to check the result of the long-running operation. + /// Parameters for moving resources. + /// The cancellation token to use. + /// is null. + public virtual async Task ValidateMoveResourcesAsync(ResourcesMoveInfo parameters, CancellationToken cancellationToken = default) + { + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.ValidateMoveResources"); + scope.Start(); + try + { + var operation = await StartValidateMoveResourcesAsync(parameters, cancellationToken).ConfigureAwait(false); + return await operation.WaitForCompletionResponseAsync(cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// This operation checks whether the specified resources can be moved to the target. The resources to move must be in the same source resource group. The target resource group may be in a different subscription. If validation succeeds, it returns HTTP response code 204 (no content). If validation fails, it returns HTTP response code 409 (Conflict) with an error message. Retrieve the URL in the Location header value to check the result of the long-running operation. + /// Parameters for moving resources. + /// The cancellation token to use. + /// is null. + public virtual ResourceValidateMoveResourcesOperation StartValidateMoveResources(ResourcesMoveInfo parameters, CancellationToken cancellationToken = default) + { + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.StartValidateMoveResources"); + scope.Start(); + try + { + var originalResponse = _genericRestClient.ValidateMoveResources(Id.Name, parameters, cancellationToken); + return new ResourceValidateMoveResourcesOperation(_clientDiagnostics, Pipeline, _genericRestClient.CreateValidateMoveResourcesRequest(Id.Name, parameters).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// This operation checks whether the specified resources can be moved to the target. The resources to move must be in the same source resource group. The target resource group may be in a different subscription. If validation succeeds, it returns HTTP response code 204 (no content). If validation fails, it returns HTTP response code 409 (Conflict) with an error message. Retrieve the URL in the Location header value to check the result of the long-running operation. + /// Parameters for moving resources. + /// The cancellation token to use. + /// is null. + public virtual async Task StartValidateMoveResourcesAsync(ResourcesMoveInfo parameters, CancellationToken cancellationToken = default) + { + if (parameters == null) + { + throw new ArgumentNullException(nameof(parameters)); + } + + using var scope = _clientDiagnostics.CreateScope("ResourceGroup.StartValidateMoveResources"); + scope.Start(); + try + { + var originalResponse = await _genericRestClient.ValidateMoveResourcesAsync(Id.Name, parameters, cancellationToken).ConfigureAwait(false); + return new ResourceValidateMoveResourcesOperation(_clientDiagnostics, Pipeline, _genericRestClient.CreateValidateMoveResourcesRequest(Id.Name, parameters).Request, originalResponse); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Provides a way to reuse the protected client context. + /// + /// The actual type returned by the delegate. + /// The method to pass the internal properties to. + /// Whatever the delegate returns. + [EditorBrowsable(EditorBrowsableState.Never)] + [ForwardsClientCalls] + public virtual T UseClientContext(Func func) + { + return func(BaseUri, Credential, ClientOptions, Pipeline); + } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ResourceGroupContainer.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ResourceGroupContainer.cs index 800988d381803..ccba49d397f27 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ResourceGroupContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ResourceGroupContainer.cs @@ -7,6 +7,7 @@ using System.Threading; using System.Threading.Tasks; using Azure.Core; +using Azure.Core.Pipeline; using Azure.ResourceManager.Core; using Azure.ResourceManager.Resources.Models; @@ -15,8 +16,11 @@ namespace Azure.ResourceManager.Resources /// /// A class representing collection of ResourceGroupContainer and their operations over a ResourceGroup. /// - public class ResourceGroupContainer : ResourceContainer + public class ResourceGroupContainer : ArmContainer { + private ClientDiagnostics _clientDiagnostics; + private ResourceGroupsRestOperations _restClient; + /// /// Initializes a new instance of the class for mocking. /// @@ -28,29 +32,22 @@ protected ResourceGroupContainer() /// Initializes a new instance of the class. /// /// The parent subscription. - internal ResourceGroupContainer(SubscriptionOperations subscription) + internal ResourceGroupContainer(Subscription subscription) : base(subscription) { } /// - protected override ResourceType ValidResourceType => SubscriptionOperations.ResourceType; + protected override ResourceType ValidResourceType => Subscription.ResourceType; /// /// Gets the parent resource of this resource. /// - protected new SubscriptionOperations Parent { get {return base.Parent as SubscriptionOperations;} } + protected new Subscription Parent { get {return base.Parent as Subscription;} } - private ResourceGroupsRestOperations RestClient - { - get - { - string subscriptionId; - if (Id is null || !Id.TryGetSubscriptionId(out subscriptionId)) - subscriptionId = Guid.NewGuid().ToString(); - return new ResourceGroupsRestOperations(Diagnostics, Pipeline, subscriptionId, BaseUri); - } - } + private ResourceGroupsRestOperations RestClient => _restClient ??= new ResourceGroupsRestOperations(Diagnostics, Pipeline, Id.SubscriptionId, BaseUri); + + private ClientDiagnostics Diagnostics => _clientDiagnostics ??= new ClientDiagnostics(ClientOptions); /// /// Returns the resource from Azure if it exists. diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ResourceGroupOperations.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ResourceGroupOperations.cs deleted file mode 100644 index d4c6b58ffa913..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/ResourceGroupOperations.cs +++ /dev/null @@ -1,722 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Threading; -using System.Threading.Tasks; -using Azure.Core; -using Azure.Core.Pipeline; -using Azure.ResourceManager.Core; -using Azure.ResourceManager.Resources.Models; - -namespace Azure.ResourceManager.Resources -{ - /// - /// A class representing the operations that can be performed over a specific ResourceGroup. - /// - public class ResourceGroupOperations : ResourceOperations - { - /// - /// Gets the resource type definition for a ResourceType. - /// - public static readonly ResourceType ResourceType = "Microsoft.Resources/resourceGroups"; - - /// - /// Initializes a new instance of the class for mocking. - /// - protected ResourceGroupOperations() - { - } - - /// - /// Initializes a new instance of the class. - /// - /// The client parameters to use in these operations. - /// The id of the resource group to use. - internal ResourceGroupOperations(ClientContext options, ResourceIdentifier id) - : base(options, id) - { - } - - /// - /// Initializes a new instance of the class. - /// - /// The client parameters to use in these operations. - /// The identifier of the resource that is the target of operations. - protected ResourceGroupOperations(ResourceOperations options, ResourceIdentifier id) - : base(options, id) - { - } - - /// - protected override ResourceType ValidResourceType => ResourceType; - - private ResourceGroupsRestOperations RestClient => new ResourceGroupsRestOperations( - Diagnostics, - Pipeline, - Id.SubscriptionId, - BaseUri); - - private ResourcesRestOperations GenericRestClient => new ResourcesRestOperations(Diagnostics, Pipeline, Id.SubscriptionId, BaseUri); - - /// - /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A response with the operation for this resource. - public virtual Response Delete(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.Delete"); - scope.Start(); - - try - { - var operation = StartDelete(cancellationToken); - return operation.WaitForCompletion(cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A that on completion returns a response with the operation for this resource. - public virtual async Task DeleteAsync(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.Delete"); - scope.Start(); - - try - { - var operation = await StartDeleteAsync(cancellationToken).ConfigureAwait(false); - return await operation.WaitForCompletionResponseAsync(cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A response with the operation for this resource. - /// - /// Details on long running operation object. - /// - public virtual ResourceGroupDeleteOperation StartDelete(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartDelete"); - scope.Start(); - - try - { - var originalResponse = RestClient.Delete(Id.Name, cancellationToken); - return new ResourceGroupDeleteOperation(Diagnostics, Pipeline, RestClient.CreateDeleteRequest(Id.Name).Request, originalResponse); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// When you delete a resource group, all of its resources are also deleted. Deleting a resource group deletes all of its template deployments and currently stored operations. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A that on completion returns a response with the operation for this resource. - /// - /// Details on long running operation object. - /// - public virtual async Task StartDeleteAsync(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartDelete"); - scope.Start(); - - try - { - var originalResponse = await RestClient.DeleteAsync(Id.Name, cancellationToken).ConfigureAwait(false); - return new ResourceGroupDeleteOperation(Diagnostics, Pipeline, RestClient.CreateDeleteRequest(Id.Name).Request, originalResponse); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Captures the specified resource group as a template. - /// Parameters for exporting the template. - /// The cancellation token to use. - public virtual ResourceGroupExportTemplateOperation StartExportTemplate(ExportTemplateRequest parameters, CancellationToken cancellationToken = default) - { - if (parameters == null) - { - throw new ArgumentNullException(nameof(parameters)); - } - - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartExportTemplate"); - scope.Start(); - try - { - var originalResponse = RestClient.ExportTemplate(Id.Name, parameters, cancellationToken); - return new ResourceGroupExportTemplateOperation(Diagnostics, Pipeline, RestClient.CreateExportTemplateRequest(Id.Name, parameters).Request, originalResponse); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Captures the specified resource group as a template. - /// Parameters for exporting the template. - /// The cancellation token to use. - public virtual async Task StartExportTemplateAsync(ExportTemplateRequest parameters, CancellationToken cancellationToken = default) - { - if (parameters == null) - { - throw new ArgumentNullException(nameof(parameters)); - } - - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartExportTemplate"); - scope.Start(); - try - { - var originalResponse = await RestClient.ExportTemplateAsync(Id.Name, parameters, cancellationToken).ConfigureAwait(false); - return new ResourceGroupExportTemplateOperation(Diagnostics, Pipeline, RestClient.CreateExportTemplateRequest(Id.Name, parameters).Request, originalResponse); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Gets the current ResourceGroup from Azure. - /// The cancellation token to use. - public virtual Response Get(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.Get"); - scope.Start(); - - try - { - var result = RestClient.Get(Id.Name, cancellationToken); - if (result.Value == null) - throw Diagnostics.CreateRequestFailedException(result.GetRawResponse()); - - return Response.FromValue(new ResourceGroup(this, result), result.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Gets the current ResourceGroup from Azure. - /// The cancellation token to use. - public virtual async Task> GetAsync(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.Get"); - scope.Start(); - - try - { - var response = await RestClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false); - if (response.Value == null) - throw await Diagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); - - return Response.FromValue(new ResourceGroup(this, response), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Resource groups can be updated through a simple PATCH operation to a group address. The format of the request is the same as that for creating a resource group. If a field is unspecified, the current value is retained. - /// Parameters supplied to update a resource group. - /// The cancellation token to use. - public virtual Response Update(ResourceGroupPatchable parameters, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.Update"); - scope.Start(); - try - { - var originalResponse = RestClient.Update(Id.Name, parameters, cancellationToken); - return Response.FromValue(new ResourceGroup(this, originalResponse), originalResponse.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Resource groups can be updated through a simple PATCH operation to a group address. The format of the request is the same as that for creating a resource group. If a field is unspecified, the current value is retained. - /// Parameters supplied to update a resource group. - /// The cancellation token to use. - public virtual async Task> UpdateAsync(ResourceGroupPatchable parameters, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.Update"); - scope.Start(); - try - { - var originalResponse = await RestClient.UpdateAsync(Id.Name, parameters, cancellationToken).ConfigureAwait(false); - return Response.FromValue(new ResourceGroup(this, originalResponse), originalResponse.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Add a tag to the current resource. - /// - /// The key for the tag. - /// The value for the tag. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The updated resource with the tag added. - public virtual Response AddTag(string key, string value, CancellationToken cancellationToken = default) - { - if (string.IsNullOrWhiteSpace(key)) - throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); - - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.AddTag"); - scope.Start(); - - try - { - var originalTags = TagResourceOperations.Get(cancellationToken).Value; - originalTags.Data.Properties.TagsValue[key] = value; - TagContainer.CreateOrUpdate(originalTags.Data, cancellationToken); - var originalResponse = RestClient.Get(Id.Name, cancellationToken); - return Response.FromValue(new ResourceGroup(this, originalResponse.Value), originalResponse.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Add a tag to the current resource. - /// - /// The key for the tag. - /// The value for the tag. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The updated resource with the tag added. - public virtual async Task> AddTagAsync(string key, string value, CancellationToken cancellationToken = default) - { - if (string.IsNullOrWhiteSpace(key)) - throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); - - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.AddTag"); - scope.Start(); - - try - { - var originalTags = await TagResourceOperations.GetAsync(cancellationToken).ConfigureAwait(false); - originalTags.Value.Data.Properties.TagsValue[key] = value; - await TagContainer.CreateOrUpdateAsync(originalTags.Value.Data, cancellationToken).ConfigureAwait(false); - var originalResponse = await RestClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false); - return Response.FromValue(new ResourceGroup(this, originalResponse.Value), originalResponse.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Replace the tags on the resource with the given set. - /// - /// The set of tags to use as replacement. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The updated resource with the tag added. - public virtual Response SetTags(IDictionary tags, CancellationToken cancellationToken = default) - { - if (tags == null) - throw new ArgumentNullException(nameof(tags)); - - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.SetTags"); - scope.Start(); - - try - { - TagResourceOperations.Delete(cancellationToken); - var newTags = TagResourceOperations.Get(cancellationToken); - newTags.Value.Data.Properties.TagsValue.ReplaceWith(tags); - TagContainer.CreateOrUpdate(new TagResourceData(newTags.Value.Data.Properties), cancellationToken); - var originalResponse = RestClient.Get(Id.Name, cancellationToken); - return Response.FromValue(new ResourceGroup(this, originalResponse.Value), originalResponse.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Replace the tags on the resource with the given set. - /// - /// The set of tags to use as replacement. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The updated resource with the tag added. - public virtual async Task> SetTagsAsync(IDictionary tags, CancellationToken cancellationToken = default) - { - if (tags == null) - throw new ArgumentNullException(nameof(tags)); - - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.SetTags"); - scope.Start(); - - try - { - await TagResourceOperations.DeleteAsync(cancellationToken).ConfigureAwait(false); - var newTags = await TagResourceOperations.GetAsync(cancellationToken).ConfigureAwait(false); - newTags.Value.Data.Properties.TagsValue.ReplaceWith(tags); - await TagContainer.CreateOrUpdateAsync(new TagResourceData(newTags.Value.Data.Properties), cancellationToken).ConfigureAwait(false); - var originalResponse = await RestClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false); - return Response.FromValue(new ResourceGroup(this, originalResponse.Value), originalResponse.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Removes a tag by key from the resource. - /// - /// The key of the tag to remove. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The updated resource with the tag added. - public virtual Response RemoveTag(string key, CancellationToken cancellationToken = default) - { - if (string.IsNullOrWhiteSpace(key)) - throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); - - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.RemoveTag"); - scope.Start(); - - try - { - var originalTags = TagResourceOperations.Get(cancellationToken).Value; - originalTags.Data.Properties.TagsValue.Remove(key); - TagContainer.CreateOrUpdate(originalTags.Data, cancellationToken); - var originalResponse = RestClient.Get(Id.Name, cancellationToken); - return Response.FromValue(new ResourceGroup(this, originalResponse.Value), originalResponse.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Removes a tag by key from the resource. - /// - /// The key of the tag to remove. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The updated resource with the tag added. - public virtual async Task> RemoveTagAsync(string key, CancellationToken cancellationToken = default) - { - if (string.IsNullOrWhiteSpace(key)) - throw new ArgumentException($"{nameof(key)} provided cannot be null or a whitespace.", nameof(key)); - - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.RemoveTag"); - scope.Start(); - - try - { - var originalTags = await TagResourceOperations.GetAsync(cancellationToken).ConfigureAwait(false); - originalTags.Value.Data.Properties.TagsValue.Remove(key); - await TagContainer.CreateOrUpdateAsync(originalTags.Value.Data, cancellationToken).ConfigureAwait(false); - var originalResponse = await RestClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false); - return Response.FromValue(new ResourceGroup(this, originalResponse.Value), originalResponse.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Lists all available geo-locations. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// A collection of location that may take multiple service requests to iterate over. - public virtual IEnumerable GetAvailableLocations(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.GetAvailableLocations"); - scope.Start(); - - try - { - return ListAvailableLocations(ResourceType, cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Lists all available geo-locations. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// An async collection of location that may take multiple service requests to iterate over. - /// The default subscription id is null. - public virtual async Task> GetAvailableLocationsAsync(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.GetAvailableLocations"); - scope.Start(); - - try - { - return await ListAvailableLocationsAsync(ResourceType, cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// The resources to move must be in the same source resource group. The target resource group may be in a different subscription. When moving resources, both the source group and the target group are locked for the duration of the operation. Write and delete operations are blocked on the groups until the move completes. - /// Parameters for moving resources. - /// The cancellation token to use. - /// is null. - public virtual Response MoveResources(ResourcesMoveInfo parameters, CancellationToken cancellationToken = default) - { - if (parameters == null) - { - throw new ArgumentNullException(nameof(parameters)); - } - - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.MoveResources"); - scope.Start(); - try - { - var originalResponse = StartMoveResources(parameters, cancellationToken); - return originalResponse.WaitForCompletion(cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// The resources to move must be in the same source resource group. The target resource group may be in a different subscription. When moving resources, both the source group and the target group are locked for the duration of the operation. Write and delete operations are blocked on the groups until the move completes. - /// Parameters for moving resources. - /// The cancellation token to use. - /// is null. - public virtual async Task MoveResourcesAsync(ResourcesMoveInfo parameters, CancellationToken cancellationToken = default) - { - if (parameters == null) - { - throw new ArgumentNullException(nameof(parameters)); - } - - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.MoveResources"); - scope.Start(); - try - { - var originalResponse = await StartMoveResourcesAsync(parameters, cancellationToken).ConfigureAwait(false); - return await originalResponse.WaitForCompletionResponseAsync(cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// The resources to move must be in the same source resource group. The target resource group may be in a different subscription. When moving resources, both the source group and the target group are locked for the duration of the operation. Write and delete operations are blocked on the groups until the move completes. - /// Parameters for moving resources. - /// The cancellation token to use. - /// is null. - public virtual ResourceMoveResourcesOperation StartMoveResources(ResourcesMoveInfo parameters, CancellationToken cancellationToken = default) - { - if (parameters == null) - { - throw new ArgumentNullException(nameof(parameters)); - } - - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartMoveResources"); - scope.Start(); - try - { - var originalResponse = GenericRestClient.MoveResources(Id.Name, parameters, cancellationToken); - return new ResourceMoveResourcesOperation(Diagnostics, Pipeline, GenericRestClient.CreateMoveResourcesRequest(Id.Name, parameters).Request, originalResponse); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// The resources to move must be in the same source resource group. The target resource group may be in a different subscription. When moving resources, both the source group and the target group are locked for the duration of the operation. Write and delete operations are blocked on the groups until the move completes. - /// Parameters for moving resources. - /// The cancellation token to use. - /// is null. - public virtual async Task StartMoveResourcesAsync(ResourcesMoveInfo parameters, CancellationToken cancellationToken = default) - { - if (parameters == null) - { - throw new ArgumentNullException(nameof(parameters)); - } - - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartMoveResources"); - scope.Start(); - try - { - var originalResponse = await GenericRestClient.MoveResourcesAsync(Id.Name, parameters, cancellationToken).ConfigureAwait(false); - return new ResourceMoveResourcesOperation(Diagnostics, Pipeline, GenericRestClient.CreateMoveResourcesRequest(Id.Name, parameters).Request, originalResponse); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// This operation checks whether the specified resources can be moved to the target. The resources to move must be in the same source resource group. The target resource group may be in a different subscription. If validation succeeds, it returns HTTP response code 204 (no content). If validation fails, it returns HTTP response code 409 (Conflict) with an error message. Retrieve the URL in the Location header value to check the result of the long-running operation. - /// Parameters for moving resources. - /// The cancellation token to use. - /// is null. - public virtual Response ValidateMoveResources(ResourcesMoveInfo parameters, CancellationToken cancellationToken = default) - { - if (parameters == null) - { - throw new ArgumentNullException(nameof(parameters)); - } - - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.ValidateMoveResources"); - scope.Start(); - try - { - var operation = StartValidateMoveResources(parameters, cancellationToken); - return operation.WaitForCompletion(cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// This operation checks whether the specified resources can be moved to the target. The resources to move must be in the same source resource group. The target resource group may be in a different subscription. If validation succeeds, it returns HTTP response code 204 (no content). If validation fails, it returns HTTP response code 409 (Conflict) with an error message. Retrieve the URL in the Location header value to check the result of the long-running operation. - /// Parameters for moving resources. - /// The cancellation token to use. - /// is null. - public virtual async Task ValidateMoveResourcesAsync(ResourcesMoveInfo parameters, CancellationToken cancellationToken = default) - { - if (parameters == null) - { - throw new ArgumentNullException(nameof(parameters)); - } - - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.ValidateMoveResources"); - scope.Start(); - try - { - var operation = await StartValidateMoveResourcesAsync(parameters, cancellationToken).ConfigureAwait(false); - return await operation.WaitForCompletionResponseAsync(cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// This operation checks whether the specified resources can be moved to the target. The resources to move must be in the same source resource group. The target resource group may be in a different subscription. If validation succeeds, it returns HTTP response code 204 (no content). If validation fails, it returns HTTP response code 409 (Conflict) with an error message. Retrieve the URL in the Location header value to check the result of the long-running operation. - /// Parameters for moving resources. - /// The cancellation token to use. - /// is null. - public virtual ResourceValidateMoveResourcesOperation StartValidateMoveResources(ResourcesMoveInfo parameters, CancellationToken cancellationToken = default) - { - if (parameters == null) - { - throw new ArgumentNullException(nameof(parameters)); - } - - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartValidateMoveResources"); - scope.Start(); - try - { - var originalResponse = GenericRestClient.ValidateMoveResources(Id.Name, parameters, cancellationToken); - return new ResourceValidateMoveResourcesOperation(Diagnostics, Pipeline, GenericRestClient.CreateValidateMoveResourcesRequest(Id.Name, parameters).Request, originalResponse); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// This operation checks whether the specified resources can be moved to the target. The resources to move must be in the same source resource group. The target resource group may be in a different subscription. If validation succeeds, it returns HTTP response code 204 (no content). If validation fails, it returns HTTP response code 409 (Conflict) with an error message. Retrieve the URL in the Location header value to check the result of the long-running operation. - /// Parameters for moving resources. - /// The cancellation token to use. - /// is null. - public virtual async Task StartValidateMoveResourcesAsync(ResourcesMoveInfo parameters, CancellationToken cancellationToken = default) - { - if (parameters == null) - { - throw new ArgumentNullException(nameof(parameters)); - } - - using var scope = Diagnostics.CreateScope("ResourceGroupOperations.StartValidateMoveResources"); - scope.Start(); - try - { - var originalResponse = await GenericRestClient.ValidateMoveResourcesAsync(Id.Name, parameters, cancellationToken).ConfigureAwait(false); - return new ResourceValidateMoveResourcesOperation(Diagnostics, Pipeline, GenericRestClient.CreateValidateMoveResourcesRequest(Id.Name, parameters).Request, originalResponse); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Provides a way to reuse the protected client context. - /// - /// The actual type returned by the delegate. - /// The method to pass the internal properties to. - /// Whatever the delegate returns. - [EditorBrowsable(EditorBrowsableState.Never)] - [ForwardsClientCalls] - public virtual T UseClientContext(Func func) - { - return func(BaseUri, Credential, ClientOptions, Pipeline); - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/RestApiContainer.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/RestApiContainer.cs index 63f7ebc600c75..a1c28c80f5292 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/RestApiContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/RestApiContainer.cs @@ -18,7 +18,7 @@ namespace Azure.ResourceManager.Resources /// /// A class which represents the RestApis for a given azure namespace. /// - public partial class RestApiContainer : ResourceContainer + public partial class RestApiContainer : ArmContainer { private readonly ClientDiagnostics _clientDiagnostics; private readonly string _nameSpace; diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Subscription.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Subscription.cs index b0725fa4650f1..c00e31fa916c1 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Subscription.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Subscription.cs @@ -1,16 +1,34 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. +// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; +using System.ComponentModel; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; +using System.Xml.Linq; +using Azure.Core; +using Azure.Core.Pipeline; using Azure.ResourceManager.Core; using Azure.ResourceManager.Resources.Models; namespace Azure.ResourceManager.Resources { /// - /// A class representing a Subscription along with the instance operations that can be performed on it. + /// A class representing the operations that can be performed over a specific subscription. /// - public class Subscription : SubscriptionOperations + public class Subscription : ArmResource { + private readonly ClientDiagnostics _clientDiagnostics; + private readonly SubscriptionsRestOperations _restClient; + private readonly FeaturesRestOperations _featuresRestOperations; + private readonly SubscriptionData _data; + + /// + /// The resource type for subscription + /// + public static readonly ResourceType ResourceType = "Microsoft.Resources/subscriptions"; + /// /// Initializes a new instance of the class for mocking. /// @@ -18,20 +36,265 @@ protected Subscription() { } + /// + /// Initializes a new instance of the class. + /// + /// + /// The identifier of the resource that is the target of operations. + internal Subscription(ClientContext clientContext, ResourceIdentifier id) + : base(clientContext, id) + { + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _restClient = new SubscriptionsRestOperations(_clientDiagnostics, Pipeline, BaseUri); + _featuresRestOperations = new FeaturesRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); + } + /// /// Initializes a new instance of the class. /// /// The operations object to copy the client parameters from. /// The data model representing the generic azure resource. - internal Subscription(ResourceOperations operations, SubscriptionData subscriptionData) + internal Subscription(ArmResource operations, SubscriptionData subscriptionData) : base(operations, subscriptionData.Id) { - Data = subscriptionData; + _data = subscriptionData; + HasData = true; + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _restClient = new SubscriptionsRestOperations(_clientDiagnostics, Pipeline, BaseUri); + _featuresRestOperations = new FeaturesRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); + } + + /// + /// Provides a way to reuse the protected client context. + /// + /// The actual type returned by the delegate. + /// The method to pass the internal properties to. + /// Whatever the delegate returns. + [EditorBrowsable(EditorBrowsableState.Never)] + [ForwardsClientCalls] + public virtual T UseClientContext(Func func) + { + return func(BaseUri, Credential, ClientOptions, Pipeline); } + /// + /// Gets the valid resource type for this operation class + /// + protected override ResourceType ValidResourceType => ResourceType; + + /// + /// Gets whether or not the current instance has data. + /// + public bool HasData { get; } + /// /// Gets the subscription data model. /// - public virtual SubscriptionData Data { get; } + /// Throws if there is no data loaded in the current instance. + public virtual SubscriptionData Data + { + get + { + if (!HasData) + throw new InvalidOperationException("The current instance does not have data you must call Get first"); + return _data; + } + } + + /// + /// Gets the resource group container under this subscription. + /// + /// The resource group container. + public virtual ResourceGroupContainer GetResourceGroups() + { + return new ResourceGroupContainer(this); + } + + /// + /// Gets the predefined tag container under this subscription. + /// + /// The tags container. + public virtual PredefinedTagContainer GetPredefinedTags() + { + return new PredefinedTagContainer(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), Id); + } + + /// + /// Gets the provider container under this subscription. + /// + /// The provider container. + public virtual ProviderContainer GetProviders() + { + return new ProviderContainer(this); + } + + /// Gets the current Subscription from Azure. + /// The cancellation token to use. + public virtual Response Get(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("Subscription.Get"); + scope.Start(); + try + { + var response = _restClient.Get(Id.Name, cancellationToken); + if (response.Value == null) + throw _clientDiagnostics.CreateRequestFailedException(response.GetRawResponse()); + + return Response.FromValue(new Subscription(this, response.Value), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Gets the current Subscription from Azure. + /// The cancellation token to use. + public virtual async Task> GetAsync(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("Subscription.Get"); + scope.Start(); + try + { + var response = await _restClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false); + if (response.Value == null) + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); + + return Response.FromValue(new Subscription(this, response.Value), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// This operation provides all the locations that are available for resource providers; however, each resource provider may support a subset of this list. + /// The cancellation token to use. + public virtual AsyncPageable GetLocationsAsync(CancellationToken cancellationToken = default) + { + async Task> FirstPageFunc(int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("Subscription.GetLocations"); + scope.Start(); + try + { + var response = await _restClient.ListLocationsAsync(Id.Name, cancellationToken).ConfigureAwait(false); + return Page.FromValues(response.Value.Value, null, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, null); + } + + /// This operation provides all the locations that are available for resource providers; however, each resource provider may support a subset of this list. + /// The cancellation token to use. + public virtual Pageable GetLocations(CancellationToken cancellationToken = default) + { + Page FirstPageFunc(int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("Subscription.GetLocations"); + scope.Start(); + try + { + var response = _restClient.ListLocations(Id.Name, cancellationToken); + return Page.FromValues(response.Value.Value, null, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + return PageableHelpers.CreateEnumerable(FirstPageFunc, null); + } + + /// + /// Gets a container representing all resources as generic objects in the current tenant. + /// + /// GenericResource container. + public virtual GenericResourceContainer GetGenericResources() + { + return new GenericResourceContainer(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), Id); + } + + /// Gets all the preview features that are available through AFEC for the subscription. + /// The cancellation token to use. + public virtual Pageable GetFeatures(CancellationToken cancellationToken = default) + { + Page FirstPageFunc(int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("Subscription.GetFeatures"); + scope.Start(); + try + { + var response = _featuresRestOperations.ListAll(cancellationToken); + return Page.FromValues(response.Value.Value.Select(d => new Feature(this, d)), response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + Page NextPageFunc(string nextLink, int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("Subscription.GetFeatures"); + scope.Start(); + try + { + var response = _featuresRestOperations.ListAllNextPage(nextLink, cancellationToken); + return Page.FromValues(response.Value.Value.Select(d => new Feature(this, d)), response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc); + } + + /// Gets all the preview features that are available through AFEC for the subscription. + /// The cancellation token to use. + public virtual AsyncPageable GetFeaturesAsync(CancellationToken cancellationToken = default) + { + async Task> FirstPageFunc(int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("Subscription.GetFeatures"); + scope.Start(); + try + { + var response = await _featuresRestOperations.ListAllAsync(cancellationToken).ConfigureAwait(false); + return Page.FromValues(response.Value.Value.Select(d => new Feature(this, d)), response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + async Task> NextPageFunc(string nextLink, int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("Subscription.GetFeatures"); + scope.Start(); + try + { + var response = await _featuresRestOperations.ListAllNextPageAsync(nextLink, cancellationToken).ConfigureAwait(false); + return Page.FromValues(response.Value.Value.Select(d => new Feature(this, d)), response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc); + } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/SubscriptionContainer.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/SubscriptionContainer.cs index 18c8fde44115b..bde89f67cad28 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/SubscriptionContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/SubscriptionContainer.cs @@ -15,8 +15,10 @@ namespace Azure.ResourceManager.Resources /// /// A class representing collection of Subscription and their operations /// - public class SubscriptionContainer : ResourceContainer + public class SubscriptionContainer : ArmContainer { + private readonly ClientDiagnostics _clientDiagnostics; + /// /// Initializes a new instance of the class for mocking. /// @@ -28,21 +30,22 @@ protected SubscriptionContainer() /// Initializes a new instance of the class. /// /// The resource representing the parent resource. - internal SubscriptionContainer(TenantOperations parent) + internal SubscriptionContainer(Tenant parent) : base(parent) { - RestClient = new SubscriptionsRestOperations(this.Diagnostics, this.Pipeline, this.BaseUri); + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + RestClient = new SubscriptionsRestOperations(_clientDiagnostics, Pipeline, BaseUri); } /// /// Gets the parent resource of this resource. /// - protected new TenantOperations Parent { get { return base.Parent as TenantOperations; } } + protected new Tenant Parent { get { return base.Parent as Tenant; } } /// /// Gets the valid resource type associated with the container. /// - protected override ResourceType ValidResourceType => TenantOperations.ResourceType; + protected override ResourceType ValidResourceType => Tenant.ResourceType; /// /// Gets the operations that can be performed on the container. @@ -60,7 +63,7 @@ public virtual Pageable GetAll(CancellationToken cancellationToken { Page FirstPageFunc(int? pageSizeHint) { - using var scope = Diagnostics.CreateScope("SubscriptionContainer.GetAll"); + using var scope = _clientDiagnostics.CreateScope("SubscriptionContainer.GetAll"); scope.Start(); try { @@ -75,7 +78,7 @@ Page FirstPageFunc(int? pageSizeHint) } Page NextPageFunc(string nextLink, int? pageSizeHint) { - using var scope = Diagnostics.CreateScope("SubscriptionContainer.GetAll"); + using var scope = _clientDiagnostics.CreateScope("SubscriptionContainer.GetAll"); scope.Start(); try { @@ -102,7 +105,7 @@ public virtual AsyncPageable GetAllAsync(CancellationToken cancell { async Task> FirstPageFunc(int? pageSizeHint) { - using var scope = Diagnostics.CreateScope("SubscriptionContainer.GetAll"); + using var scope = _clientDiagnostics.CreateScope("SubscriptionContainer.GetAll"); scope.Start(); try { @@ -117,7 +120,7 @@ async Task> FirstPageFunc(int? pageSizeHint) } async Task> NextPageFunc(string nextLink, int? pageSizeHint) { - using var scope = Diagnostics.CreateScope("SubscriptionContainer.GetAll"); + using var scope = _clientDiagnostics.CreateScope("SubscriptionContainer.GetAll"); scope.Start(); try { @@ -142,13 +145,13 @@ async Task> NextPageFunc(string nextLink, int? pageSizeHint) /// subscriptionGuid cannot be null or a whitespace. public Response Get(string subscriptionGuid, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("SubscriptionContainer.Get"); + using var scope = _clientDiagnostics.CreateScope("SubscriptionContainer.Get"); scope.Start(); try { var response = RestClient.Get(subscriptionGuid, cancellationToken); if (response.Value == null) - throw Diagnostics.CreateRequestFailedException(response.GetRawResponse()); + throw _clientDiagnostics.CreateRequestFailedException(response.GetRawResponse()); return Response.FromValue(new Subscription(this, response.Value), response.GetRawResponse()); } @@ -168,13 +171,13 @@ public Response Get(string subscriptionGuid, CancellationToken can /// subscriptionGuid cannot be null or a whitespace. public virtual async Task> GetAsync(string subscriptionGuid, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("SubscriptionContainer.Get"); + using var scope = _clientDiagnostics.CreateScope("SubscriptionContainer.Get"); scope.Start(); try { var response = await RestClient.GetAsync(subscriptionGuid, cancellationToken).ConfigureAwait(false); if (response.Value == null) - throw await Diagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); return Response.FromValue(new Subscription(this, response.Value), response.GetRawResponse()); } @@ -194,7 +197,7 @@ public virtual async Task> GetAsync(string subscriptionGu /// Whether or not the resource existed. public virtual Response GetIfExists(string subscriptionGuid, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("SubscriptionContainer.GetIfExists"); + using var scope = _clientDiagnostics.CreateScope("SubscriptionContainer.GetIfExists"); scope.Start(); try @@ -220,7 +223,7 @@ public virtual Response GetIfExists(string subscriptionGuid, Cance /// Whether or not the resource existed. public virtual async Task> GetIfExistsAsync(string subscriptionGuid, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("SubscriptionContainer.GetIfExists"); + using var scope = _clientDiagnostics.CreateScope("SubscriptionContainer.GetIfExists"); scope.Start(); try @@ -246,7 +249,7 @@ public virtual async Task> GetIfExistsAsync(string subscr /// Whether or not the resource existed. public virtual Response CheckIfExists(string subscriptionGuid, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("SubscriptionContainer.CheckIfExists"); + using var scope = _clientDiagnostics.CreateScope("SubscriptionContainer.CheckIfExists"); scope.Start(); try @@ -270,7 +273,7 @@ public virtual Response CheckIfExists(string subscriptionGuid, Cancellatio /// Whether or not the resource existed. public virtual async Task> CheckIfExistsAsync(string subscriptionGuid, CancellationToken cancellationToken = default) { - using var scope = Diagnostics.CreateScope("SubscriptionContainer.CheckIfExists"); + using var scope = _clientDiagnostics.CreateScope("SubscriptionContainer.CheckIfExists"); scope.Start(); try diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/SubscriptionOperations.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/SubscriptionOperations.cs deleted file mode 100644 index cd5b00afc24d6..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/SubscriptionOperations.cs +++ /dev/null @@ -1,280 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; -using System.ComponentModel; -using System.Linq; -using System.Threading; -using System.Threading.Tasks; -using Azure.Core; -using Azure.Core.Pipeline; -using Azure.ResourceManager.Core; -using Azure.ResourceManager.Resources.Models; - -namespace Azure.ResourceManager.Resources -{ - /// - /// A class representing the operations that can be performed over a specific subscription. - /// - public class SubscriptionOperations : ResourceOperations - { - /// - /// The resource type for subscription - /// - public static readonly ResourceType ResourceType = "Microsoft.Resources/subscriptions"; - - /// - /// Initializes a new instance of the class for mocking. - /// - protected SubscriptionOperations() - { - } - - /// - /// Initializes a new instance of the class. - /// - /// - /// The identifier of the resource that is the target of operations. - internal SubscriptionOperations(ClientContext clientContext, ResourceIdentifier id) - : base(clientContext, id) - { - } - - /// - /// Initializes a new instance of the class. - /// - /// The resource operations to copy the options from. - /// The identifier of the resource that is the target of operations. - protected SubscriptionOperations(ResourceOperations operations, ResourceIdentifier id) - : base(operations, id) - { - } - - /// - /// Provides a way to reuse the protected client context. - /// - /// The actual type returned by the delegate. - /// The method to pass the internal properties to. - /// Whatever the delegate returns. - [EditorBrowsable(EditorBrowsableState.Never)] - [ForwardsClientCalls] - public virtual T UseClientContext(Func func) - { - return func(BaseUri, Credential, ClientOptions, Pipeline); - } - - /// - /// Gets the valid resource type for this operation class - /// - protected override ResourceType ValidResourceType => ResourceType; - - private SubscriptionsRestOperations RestClient => new SubscriptionsRestOperations(Diagnostics, Pipeline, BaseUri); - - private FeaturesRestOperations FeaturesRestOperations => new FeaturesRestOperations(Diagnostics, Pipeline, Id.SubscriptionId, BaseUri); - - /// - /// Gets the resource group container under this subscription. - /// - /// The resource group container. - public virtual ResourceGroupContainer GetResourceGroups() - { - return new ResourceGroupContainer(this); - } - - /// - /// Gets the predefined tag container under this subscription. - /// - /// The tags container. - public virtual PredefinedTagContainer GetPredefinedTags() - { - return new PredefinedTagContainer(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), Id); - } - - /// - /// Gets the provider container under this subscription. - /// - /// The provider container. - public virtual ProviderContainer GetProviders() - { - return new ProviderContainer(this); - } - - /// Gets the current Subscription from Azure. - /// The cancellation token to use. - public virtual Response Get(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("SubscriptionOperations.Get"); - scope.Start(); - try - { - var response = RestClient.Get(Id.Name, cancellationToken); - if (response.Value == null) - throw Diagnostics.CreateRequestFailedException(response.GetRawResponse()); - - return Response.FromValue(new Subscription(this, response.Value), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Gets the current Subscription from Azure. - /// The cancellation token to use. - public virtual async Task> GetAsync(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("SubscriptionOperations.Get"); - scope.Start(); - try - { - var response = await RestClient.GetAsync(Id.Name, cancellationToken).ConfigureAwait(false); - if (response.Value == null) - throw await Diagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); - - return Response.FromValue(new Subscription(this, response.Value), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// This operation provides all the locations that are available for resource providers; however, each resource provider may support a subset of this list. - /// The cancellation token to use. - public virtual AsyncPageable GetLocationsAsync(CancellationToken cancellationToken = default) - { - async Task> FirstPageFunc(int? pageSizeHint) - { - using var scope = Diagnostics.CreateScope("SubscriptionOperations.GetLocations"); - scope.Start(); - try - { - var response = await RestClient.ListLocationsAsync(Id.Name, cancellationToken).ConfigureAwait(false); - return Page.FromValues(response.Value.Value, null, response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, null); - } - - /// This operation provides all the locations that are available for resource providers; however, each resource provider may support a subset of this list. - /// The cancellation token to use. - public virtual Pageable GetLocations(CancellationToken cancellationToken = default) - { - Page FirstPageFunc(int? pageSizeHint) - { - using var scope = Diagnostics.CreateScope("SubscriptionOperations.GetLocations"); - scope.Start(); - try - { - var response = RestClient.ListLocations(Id.Name, cancellationToken); - return Page.FromValues(response.Value.Value, null, response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - return PageableHelpers.CreateEnumerable(FirstPageFunc, null); - } - - /// - /// Gets a container representing all resources as generic objects in the current tenant. - /// - /// GenericResource container. - public virtual GenericResourceContainer GetGenericResources() - { - return new GenericResourceContainer(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), Id); - } - - /// - /// Gets the predefined tag operations under this subscription. - /// - /// The predefined tags operations. - public virtual PredefinedTagOperations GetPreDefinedTagOperations() - { - return new PredefinedTagOperations(new ClientContext(ClientOptions, Credential, BaseUri, Pipeline), Id); - } - - /// Gets all the preview features that are available through AFEC for the subscription. - /// The cancellation token to use. - public virtual Pageable GetFeatures(CancellationToken cancellationToken = default) - { - Page FirstPageFunc(int? pageSizeHint) - { - using var scope = Diagnostics.CreateScope("SubscriptionOperations.GetFeatures"); - scope.Start(); - try - { - var response = FeaturesRestOperations.ListAll(cancellationToken); - return Page.FromValues(response.Value.Value.Select(d => new Feature(this, d)), response.Value.NextLink, response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - Page NextPageFunc(string nextLink, int? pageSizeHint) - { - using var scope = Diagnostics.CreateScope("SubscriptionOperations.GetFeatures"); - scope.Start(); - try - { - var response = FeaturesRestOperations.ListAllNextPage(nextLink, cancellationToken); - return Page.FromValues(response.Value.Value.Select(d => new Feature(this, d)), response.Value.NextLink, response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc); - } - - /// Gets all the preview features that are available through AFEC for the subscription. - /// The cancellation token to use. - public virtual AsyncPageable GetFeaturesAsync(CancellationToken cancellationToken = default) - { - async Task> FirstPageFunc(int? pageSizeHint) - { - using var scope = Diagnostics.CreateScope("SubscriptionOperations.GetFeatures"); - scope.Start(); - try - { - var response = await FeaturesRestOperations.ListAllAsync(cancellationToken).ConfigureAwait(false); - return Page.FromValues(response.Value.Value.Select(d => new Feature(this, d)), response.Value.NextLink, response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - async Task> NextPageFunc(string nextLink, int? pageSizeHint) - { - using var scope = Diagnostics.CreateScope("SubscriptionOperations.GetFeatures"); - scope.Start(); - try - { - var response = await FeaturesRestOperations.ListAllNextPageAsync(nextLink, cancellationToken).ConfigureAwait(false); - return Page.FromValues(response.Value.Value.Select(d => new Feature(this, d)), response.Value.NextLink, response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc); - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TagResource.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TagResource.cs index 114e4eef30001..222049156d23d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TagResource.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TagResource.cs @@ -1,26 +1,307 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; +using System.Threading; +using System.Threading.Tasks; +using System.Xml.Linq; +using Azure.Core.Pipeline; using Azure.ResourceManager.Core; using Azure.ResourceManager.Resources.Models; namespace Azure.ResourceManager.Resources { /// - /// A class representing a TagsResource along with the instance operations that can be performed on it. + /// The tag client. /// - public class TagResource : TagResourceOperations + public class TagResource : ArmResource { + private readonly ClientDiagnostics _clientDiagnostics; + private readonly TagRestOperations _restClient; + private readonly TagResourceData _data; + + /// Initializes a new instance of the class for mocking. + protected TagResource() + { + } + + internal TagResource(ArmResource options, ResourceIdentifier id) + : base(options, id) + { + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _restClient = new TagRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); + } + /// Initializes a new instance of the class. /// The client parameters to use in these operations. /// The resource that is the target of operations. - internal TagResource(ResourceOperations options, TagResourceData resource) + internal TagResource(ArmResource options, TagResourceData resource) : base(options, resource.Id) { - Data = resource; + _data = resource; + HasData = true; + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _restClient = new TagRestOperations(_clientDiagnostics, Pipeline, Id.SubscriptionId, BaseUri); + } + + /// Gets the valid resource type for this object. + protected override ResourceType ValidResourceType => Id.ResourceType; + + /// + /// Gets whether or not the current instance has data. + /// + public bool HasData { get; } + + /// Gets the TagsResourceData. + /// Throws if there is no data loaded in the current instance. + public virtual TagResourceData Data + { + get + { + if (!HasData) + throw new InvalidOperationException("The current instance does not have data you must call Get first"); + return _data; + } + } + + /// + /// Update tags with the resource. + /// + /// The tags to update. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The updated tags. + public virtual Response Update(TagPatchResource parameters, CancellationToken cancellationToken = default) + { + if (parameters is null) + throw new ArgumentNullException(nameof(parameters)); + + using var scope = _clientDiagnostics.CreateScope("TagResource.UpdateAtScope"); + scope.Start(); + + try + { + var operation = StartUpdate(parameters, cancellationToken); + return operation.WaitForCompletion(cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } - /// Gets or sets the TagsResourceData. - public TagResourceData Data { get; private set; } + /// + /// Update tags with the resource. + /// + /// The tags to update. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The updated tags. + public virtual async Task> UpdateAsync(TagPatchResource parameters, CancellationToken cancellationToken = default) + { + if (parameters is null) + throw new ArgumentNullException(nameof(parameters)); + + using var scope = _clientDiagnostics.CreateScope("TagResource.UpdateAtScope"); + scope.Start(); + + try + { + var operation = await StartUpdateAsync(parameters, cancellationToken).ConfigureAwait(false); + return await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Get tags with the resource. + /// + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The tags associate with resource. + public virtual Response Get(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("TagResource.GetAtScope"); + scope.Start(); + + try + { + var response = _restClient.GetAtScope(Id, cancellationToken); + if (response.Value == null) + throw _clientDiagnostics.CreateRequestFailedException(response.GetRawResponse()); + + return Response.FromValue(new TagResource(this, response.Value), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Get tags with the resource. + /// + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The tags associate with resource. + public virtual async Task> GetAsync(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("TagResource.GetAtScope"); + scope.Start(); + + try + { + var response = await _restClient.GetAtScopeAsync(Id, cancellationToken).ConfigureAwait(false); + if (response.Value == null) + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); + + return Response.FromValue(new TagResource(this, response.Value), response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Delete tags with the resource. + /// + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The delete response. + public virtual Response Delete(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("TagResource.DeleteAtScope"); + scope.Start(); + + try + { + return StartDelete(cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Delete tags with the resource. + /// + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The delete response. + public virtual async Task DeleteAsync(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("TagResource.DeleteAtScope"); + scope.Start(); + + try + { + return await StartDeleteAsync(cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Update tags with the resource. + /// + /// The tags to update. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The updated tags. + /// + /// Details on long running operation object. + /// + public virtual TagCreateOrUpdateOperation StartUpdate(TagPatchResource parameters, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("TagResource.StartUpdateAtScope"); + scope.Start(); + try + { + var response = _restClient.UpdateAtScope(Id, parameters, cancellationToken); + return new TagCreateOrUpdateOperation(this, response); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Update tags with the resource. + /// + /// The tags to update. + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The updated tags. + /// + /// Details on long running operation object. + /// + public virtual async Task StartUpdateAsync(TagPatchResource parameters, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("TagResource.StartUpdateAtScope"); + scope.Start(); + try + { + var response = await _restClient.UpdateAtScopeAsync(Id, parameters, cancellationToken).ConfigureAwait(false); + return new TagCreateOrUpdateOperation(this, response); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Delete tags with the resource. + /// + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The delete response. + /// + /// Details on long running operation object. + /// + public virtual Response StartDelete(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("TagResource.StartDeleteAtScope"); + scope.Start(); + try + { + return _restClient.DeleteAtScope(Id, cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Delete tags with the resource. + /// + /// A token to allow the caller to cancel the call to the service. The default value is . + /// The delete response. + /// + /// Details on long running operation object. + /// + public virtual async Task StartDeleteAsync(CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("TagResource.StartDeleteAtScope"); + scope.Start(); + try + { + return await _restClient.DeleteAtScopeAsync(Id, cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TagResourceContainer.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TagResourceContainer.cs index 3e6e0c1bd38c9..91c177fae02c3 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TagResourceContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TagResourceContainer.cs @@ -11,20 +11,19 @@ namespace Azure.ResourceManager.Resources { /// A class representing collection of tag and their operations over a scope. - public class TagResourceContainer : ResourceContainer + public class TagResourceContainer : ArmContainer { + private ClientDiagnostics _clientDiagnostics; + /// Initializes a new instance of the class for mocking. protected TagResourceContainer() { } - internal TagResourceContainer(ResourceOperations operationsBase) : base(operationsBase) + internal TagResourceContainer(ArmResource operationsBase) : base(operationsBase) { - _clientDiagnostics = new ClientDiagnostics(ClientOptions); } - private readonly ClientDiagnostics _clientDiagnostics; - private string _subscriptionId { get @@ -38,6 +37,8 @@ private string _subscriptionId /// Represents the REST operations. private TagRestOperations RestClient => new TagRestOperations(_clientDiagnostics, Pipeline, _subscriptionId, BaseUri); + private ClientDiagnostics Diagnostics => _clientDiagnostics ??= new ClientDiagnostics(ClientOptions); + /// Typed Resource Identifier for the container. public new ResourceIdentifier Id => base.Id as ResourceIdentifier; diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TagResourceOperations.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TagResourceOperations.cs deleted file mode 100644 index e2aa81ccc3f22..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TagResourceOperations.cs +++ /dev/null @@ -1,288 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; -using System.Threading; -using System.Threading.Tasks; -using Azure.Core.Pipeline; -using Azure.ResourceManager.Core; -using Azure.ResourceManager.Resources.Models; - -namespace Azure.ResourceManager.Resources -{ - /// - /// The tag client. - /// - public class TagResourceOperations : ResourceOperations - { - /// Initializes a new instance of the class for mocking. - protected TagResourceOperations() - { - } - - internal TagResourceOperations(ResourceOperations options, ResourceIdentifier id) : base(options, id) - { - _clientDiagnostics = new ClientDiagnostics(ClientOptions); - } - - private readonly ClientDiagnostics _clientDiagnostics; - - private string _subscriptionId - { - get { - string subscriptionId; - Id.TryGetSubscriptionId(out subscriptionId); - return subscriptionId; - } - } - - /// Represents the REST operations. - private TagRestOperations RestClient => new TagRestOperations(_clientDiagnostics, Pipeline, _subscriptionId, BaseUri); - - /// Typed Resource Identifier for the container. - public new ResourceIdentifier Id => base.Id as ResourceIdentifier; - - /// Gets the valid resource type for this object. - protected override ResourceType ValidResourceType => Id.ResourceType; - - /// - /// Update tags with the resource. - /// - /// The tags to update. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The updated tags. - public virtual Response Update(TagPatchResource parameters, CancellationToken cancellationToken = default) - { - if (parameters is null) - throw new ArgumentNullException(nameof(parameters)); - - using var scope = Diagnostics.CreateScope("TagsOperations.UpdateAtScope"); - scope.Start(); - - try - { - var operation = StartUpdate(parameters, cancellationToken); - return operation.WaitForCompletion(cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Update tags with the resource. - /// - /// The tags to update. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The updated tags. - public virtual async Task> UpdateAsync(TagPatchResource parameters, CancellationToken cancellationToken = default) - { - if (parameters is null) - throw new ArgumentNullException(nameof(parameters)); - - using var scope = Diagnostics.CreateScope("TagsOperations.UpdateAtScope"); - scope.Start(); - - try - { - var operation = await StartUpdateAsync(parameters, cancellationToken).ConfigureAwait(false); - return await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Get tags with the resource. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The tags associate with resource. - public virtual Response Get(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("TagsOperations.GetAtScope"); - scope.Start(); - - try - { - var response = RestClient.GetAtScope(Id, cancellationToken); - if (response.Value == null) - throw Diagnostics.CreateRequestFailedException(response.GetRawResponse()); - - return Response.FromValue(new TagResource(this, response.Value), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Get tags with the resource. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The tags associate with resource. - public virtual async Task> GetAsync(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("TagsOperations.GetAtScope"); - scope.Start(); - - try - { - var response = await RestClient.GetAtScopeAsync(Id, cancellationToken).ConfigureAwait(false); - if (response.Value == null) - throw await Diagnostics.CreateRequestFailedExceptionAsync(response.GetRawResponse()).ConfigureAwait(false); - - return Response.FromValue(new TagResource(this, response.Value), response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Delete tags with the resource. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The delete response. - public virtual Response Delete(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("TagsOperations.DeleteAtScope"); - scope.Start(); - - try - { - return StartDelete(cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Delete tags with the resource. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The delete response. - public virtual async Task DeleteAsync(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("TagsOperations.DeleteAtScope"); - scope.Start(); - - try - { - return await StartDeleteAsync(cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Update tags with the resource. - /// - /// The tags to update. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The updated tags. - /// - /// Details on long running operation object. - /// - public virtual TagCreateOrUpdateOperation StartUpdate(TagPatchResource parameters, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("TagsOperations.StartUpdateAtScope"); - scope.Start(); - try - { - var response = RestClient.UpdateAtScope(Id, parameters, cancellationToken); - return new TagCreateOrUpdateOperation(this, response); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Update tags with the resource. - /// - /// The tags to update. - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The updated tags. - /// - /// Details on long running operation object. - /// - public virtual async Task StartUpdateAsync(TagPatchResource parameters, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("TagsOperations.StartUpdateAtScope"); - scope.Start(); - try - { - var response = await RestClient.UpdateAtScopeAsync(Id, parameters, cancellationToken).ConfigureAwait(false); - return new TagCreateOrUpdateOperation(this, response); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Delete tags with the resource. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The delete response. - /// - /// Details on long running operation object. - /// - public virtual Response StartDelete(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("TagsOperations.StartDeleteAtScope"); - scope.Start(); - try - { - return RestClient.DeleteAtScope(Id, cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Delete tags with the resource. - /// - /// A token to allow the caller to cancel the call to the service. The default value is . - /// The delete response. - /// - /// Details on long running operation object. - /// - public virtual async Task StartDeleteAsync(CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("TagsOperations.StartDeleteAtScope"); - scope.Start(); - try - { - return await RestClient.DeleteAtScopeAsync(Id, cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Tenant.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Tenant.cs index bfc0c9f2b8e3e..b4ff91501c044 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Tenant.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/Tenant.cs @@ -1,16 +1,28 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. +// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; +using System.ComponentModel; +using System.Threading; +using System.Threading.Tasks; +using System.Xml.Linq; +using Azure.Core; +using Azure.Core.Pipeline; using Azure.ResourceManager.Core; +using Azure.ResourceManager.Management; using Azure.ResourceManager.Resources.Models; namespace Azure.ResourceManager.Resources { /// - /// A class representing a Tenant along with the instance operations that can be performed on it. + /// A class representing the operations that can be performed over a specific subscription. /// - public class Tenant : TenantOperations + public class Tenant : ArmResource { + private readonly ProviderRestOperations _providerRestOperations; + private readonly ClientDiagnostics _clientDiagnostics; + private readonly TenantData _data; + /// /// Initializes a new instance of the class for mocking. /// @@ -23,15 +35,221 @@ protected Tenant() /// /// The operations object to copy the client parameters from. /// The data model representing the generic azure resource. - internal Tenant(ResourceOperations operations, TenantData tenantData) - : base(operations.ClientOptions, operations.Credential, operations.BaseUri, operations.Pipeline) + internal Tenant(ArmResource operations, TenantData tenantData) + : base(operations, ResourceIdentifier.RootResourceIdentifier) + { + _data = tenantData; + HasData = true; + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _providerRestOperations = new ProviderRestOperations(_clientDiagnostics, Pipeline, Guid.Empty.ToString(), BaseUri); + } + + /// + /// Initializes a new instance of the class. + /// + /// The client parameters to use in these operations. + /// A credential used to authenticate to an Azure Service. + /// The base URI of the service. + /// The HTTP pipeline for sending and receiving REST requests and responses. + internal Tenant(ArmClientOptions options, TokenCredential credential, Uri baseUri, HttpPipeline pipeline) + : base(new ClientContext(options, credential, baseUri, pipeline), ResourceIdentifier.RootResourceIdentifier) + { + _clientDiagnostics = new ClientDiagnostics(ClientOptions); + _providerRestOperations = new ProviderRestOperations(_clientDiagnostics, Pipeline, Guid.Empty.ToString(), BaseUri); + } + + /// + /// The resource type for subscription + /// + public static readonly ResourceType ResourceType = "Microsoft.Resources/tenants"; + + /// + /// Gets whether or not the current instance has data. + /// + public bool HasData { get; } + + /// + /// Gets the tenant data model. + /// + /// Throws if there is no data loaded in the current instance. + public virtual TenantData Data { - Data = tenantData; + get + { + if (!HasData) + throw new InvalidOperationException("The current instance does not have data you must call Get first"); + return _data; + } } /// - /// Gets the subscription data model. + /// Gets the valid resource type for this operation class /// - public virtual TenantData Data { get; } + protected override ResourceType ValidResourceType => ResourceType; + + /// + /// Provides a way to reuse the protected client context. + /// + /// The actual type returned by the delegate. + /// The method to pass the internal properties to. + /// Whatever the delegate returns. + [EditorBrowsable(EditorBrowsableState.Never)] + [ForwardsClientCalls] + public virtual T UseClientContext(Func func) + { + return func(BaseUri, Credential, ClientOptions, Pipeline); + } + + /// Gets all resource providers for a subscription. + /// The number of results to return. If null is passed returns all deployments. + /// The properties to include in the results. For example, use &$expand=metadata in the query string to retrieve resource provider metadata. To include property aliases in response, use $expand=resourceTypes/aliases. + /// The cancellation token to use. + public virtual Pageable GetTenantProviders(int? top = null, string expand = null, CancellationToken cancellationToken = default) + { + Page FirstPageFunc(int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("Tenant.GetTenantProviders"); + scope.Start(); + + try + { + Response response = _providerRestOperations.ListAtTenantScope(top, expand, cancellationToken); + return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + Page NextPageFunc(string nextLink, int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("Tenant.GetTenantProviders"); + scope.Start(); + + try + { + Response response = _providerRestOperations.ListAtTenantScopeNextPage(nextLink, cancellationToken); + return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc); + } + + /// Gets all resource providers for a subscription. + /// The number of results to return. If null is passed returns all deployments. + /// The properties to include in the results. For example, use &$expand=metadata in the query string to retrieve resource provider metadata. To include property aliases in response, use $expand=resourceTypes/aliases. + /// The cancellation token to use. + public virtual AsyncPageable GetTenantProvidersAsync(int? top = null, string expand = null, CancellationToken cancellationToken = default) + { + async Task> FirstPageFunc(int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("Tenant.GetTenantProviders"); + scope.Start(); + + try + { + Response response = await _providerRestOperations.ListAtTenantScopeAsync(top, expand, cancellationToken).ConfigureAwait(false); + return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + async Task> NextPageFunc(string nextLink, int? pageSizeHint) + { + using var scope = _clientDiagnostics.CreateScope("Tenant.GetTenantProviders"); + scope.Start(); + + try + { + Response response = await _providerRestOperations.ListAtTenantScopeNextPageAsync(nextLink, cancellationToken).ConfigureAwait(false); + return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc); + } + + /// Gets the specified resource provider at the tenant level. + /// The namespace of the resource provider. + /// The $expand query parameter. For example, to include property aliases in response, use $expand=resourceTypes/aliases. + /// The cancellation token to use. + /// is null. + public virtual Response GetTenantProvider(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("Tenant.GetTenantProvider"); + scope.Start(); + + try + { + return _providerRestOperations.GetAtTenantScope(resourceProviderNamespace, expand, cancellationToken); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// Gets the specified resource provider at the tenant level. + /// The namespace of the resource provider. + /// The $expand query parameter. For example, to include property aliases in response, use $expand=resourceTypes/aliases. + /// The cancellation token to use. + /// is null. + public virtual async Task> GetTenantProviderAsync(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default) + { + using var scope = _clientDiagnostics.CreateScope("Tenant.GetTenantProvider"); + scope.Start(); + + try + { + return await _providerRestOperations.GetAtTenantScopeAsync(resourceProviderNamespace, expand, cancellationToken).ConfigureAwait(false); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Gets the management group container for this tenant. + /// + /// A container of the management groups. + public virtual ManagementGroupContainer GetManagementGroups() + { + return new ManagementGroupContainer(this); + } + + /// + /// Gets the managmeent group operations object associated with the id. + /// + /// The id of the management group operations. + /// A client to perform operations on the management group. + internal ManagementGroup GetManagementGroup(ResourceIdentifier id) + { + return new ManagementGroup(this, id); + } + + /// + /// Gets the subscription container for this tenant. + /// + /// A container of the subscriptions. + public virtual SubscriptionContainer GetSubscriptions() + { + return new SubscriptionContainer(this); + } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TenantContainer.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TenantContainer.cs index d1c5b2b477dde..5d9e164b690af 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TenantContainer.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TenantContainer.cs @@ -6,6 +6,7 @@ using System.Threading; using System.Threading.Tasks; using Azure.Core; +using Azure.Core.Pipeline; using Azure.ResourceManager.Core; namespace Azure.ResourceManager.Resources @@ -13,8 +14,10 @@ namespace Azure.ResourceManager.Resources /// /// A class representing collection of Tenant and their operations over their parent. /// - public class TenantContainer : ResourceContainer + public class TenantContainer : ArmContainer { + private ClientDiagnostics _clientDiagnostics; + /// /// Initializes a new instance of the class for mocking. /// @@ -36,6 +39,8 @@ internal TenantContainer(ClientContext clientContext) private TenantsRestOperations RestClient => new TenantsRestOperations(Diagnostics, Pipeline, BaseUri); + private ClientDiagnostics Diagnostics => _clientDiagnostics ??= new ClientDiagnostics(ClientOptions); + /// Gets the tenants for your account. /// The cancellation token to use. public virtual AsyncPageable GetAllAsync(CancellationToken cancellationToken = default) diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TenantOperations.cs b/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TenantOperations.cs deleted file mode 100644 index b2964c17a4491..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/src/Generated/Resources/TenantOperations.cs +++ /dev/null @@ -1,218 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; -using System.ComponentModel; -using System.Threading; -using System.Threading.Tasks; -using Azure.Core; -using Azure.Core.Pipeline; -using Azure.ResourceManager.Core; -using Azure.ResourceManager.Management; -using Azure.ResourceManager.Resources.Models; - -namespace Azure.ResourceManager.Resources -{ - /// - /// A class representing the operations that can be performed over a specific subscription. - /// - public class TenantOperations : ResourceOperations - { - private ProviderRestOperations _providerRestOperations; - - /// - /// Initializes a new instance of the class for mocking. - /// - protected TenantOperations() - { - } - - /// - /// The resource type for subscription - /// - public static readonly ResourceType ResourceType = "Microsoft.Resources/tenants"; - - /// - /// Initializes a new instance of the class. - /// - /// The client parameters to use in these operations. - /// A credential used to authenticate to an Azure Service. - /// The base URI of the service. - /// The HTTP pipeline for sending and receiving REST requests and responses. - internal TenantOperations(ArmClientOptions options, TokenCredential credential, Uri baseUri, HttpPipeline pipeline) - : base(new ClientContext(options, credential, baseUri, pipeline), ResourceIdentifier.RootResourceIdentifier) - { - _providerRestOperations = new ProviderRestOperations(Diagnostics, Pipeline, Guid.Empty.ToString(), BaseUri); - } - - /// - /// Gets the valid resource type for this operation class - /// - protected override ResourceType ValidResourceType => ResourceType; - - /// - /// Provides a way to reuse the protected client context. - /// - /// The actual type returned by the delegate. - /// The method to pass the internal properties to. - /// Whatever the delegate returns. - [EditorBrowsable(EditorBrowsableState.Never)] - [ForwardsClientCalls] - public virtual T UseClientContext(Func func) - { - return func(BaseUri, Credential, ClientOptions, Pipeline); - } - - /// Gets all resource providers for a subscription. - /// The number of results to return. If null is passed returns all deployments. - /// The properties to include in the results. For example, use &$expand=metadata in the query string to retrieve resource provider metadata. To include property aliases in response, use $expand=resourceTypes/aliases. - /// The cancellation token to use. - public virtual Pageable GetProviders(int? top = null, string expand = null, CancellationToken cancellationToken = default) - { - Page FirstPageFunc(int? pageSizeHint) - { - using var scope = Diagnostics.CreateScope("TenantOperations.GetProviders"); - scope.Start(); - - try - { - Response response = _providerRestOperations.ListAtTenantScope(top, expand, cancellationToken); - return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - Page NextPageFunc(string nextLink, int? pageSizeHint) - { - using var scope = Diagnostics.CreateScope("TenantOperations.GetProviders"); - scope.Start(); - - try - { - Response response = _providerRestOperations.ListAtTenantScopeNextPage(nextLink, cancellationToken); - return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - return PageableHelpers.CreateEnumerable(FirstPageFunc, NextPageFunc); - } - - /// Gets all resource providers for a subscription. - /// The number of results to return. If null is passed returns all deployments. - /// The properties to include in the results. For example, use &$expand=metadata in the query string to retrieve resource provider metadata. To include property aliases in response, use $expand=resourceTypes/aliases. - /// The cancellation token to use. - public virtual AsyncPageable GetProvidersAsync(int? top = null, string expand = null, CancellationToken cancellationToken = default) - { - async Task> FirstPageFunc(int? pageSizeHint) - { - using var scope = Diagnostics.CreateScope("TenantOperations.GetProviders"); - scope.Start(); - - try - { - Response response = await _providerRestOperations.ListAtTenantScopeAsync(top, expand, cancellationToken).ConfigureAwait(false); - return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - async Task> NextPageFunc(string nextLink, int? pageSizeHint) - { - using var scope = Diagnostics.CreateScope("TenantOperations.GetProviders"); - scope.Start(); - - try - { - Response response = await _providerRestOperations.ListAtTenantScopeNextPageAsync(nextLink, cancellationToken).ConfigureAwait(false); - return Page.FromValues(response.Value.Value, response.Value.NextLink, response.GetRawResponse()); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc); - } - - /// Gets the specified resource provider at the tenant level. - /// The namespace of the resource provider. - /// The $expand query parameter. For example, to include property aliases in response, use $expand=resourceTypes/aliases. - /// The cancellation token to use. - /// is null. - public virtual Response GetProvider(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("TenantOperations.GetProvider"); - scope.Start(); - - try - { - return _providerRestOperations.GetAtTenantScope(resourceProviderNamespace, expand, cancellationToken); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// Gets the specified resource provider at the tenant level. - /// The namespace of the resource provider. - /// The $expand query parameter. For example, to include property aliases in response, use $expand=resourceTypes/aliases. - /// The cancellation token to use. - /// is null. - public virtual async Task> GetProviderAsync(string resourceProviderNamespace, string expand = null, CancellationToken cancellationToken = default) - { - using var scope = Diagnostics.CreateScope("TenantOperations.GetProvider"); - scope.Start(); - - try - { - return await _providerRestOperations.GetAtTenantScopeAsync(resourceProviderNamespace, expand, cancellationToken).ConfigureAwait(false); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } - - /// - /// Gets the management group container for this tenant. - /// - /// A container of the management groups. - public virtual ManagementGroupContainer GetManagementGroups() - { - return new ManagementGroupContainer(this); - } - - /// - /// Gets the managmeent group operations object associated with the id. - /// - /// The id of the management group operations. - /// A client to perform operations on the management group. - internal ManagementGroupOperations GetManagementGroupOperations(string id) - { - return new ManagementGroupOperations(this, id); - } - - /// - /// Gets the subscription container for this tenant. - /// - /// A container of the subscriptions. - public virtual SubscriptionContainer GetSubscriptions() - { - return new SubscriptionContainer(this); - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/ResourceIdentifier.cs b/sdk/resourcemanager/Azure.ResourceManager/src/ResourceIdentifier.cs index 4bb28d441f4a9..1207036f56d7e 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/ResourceIdentifier.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/ResourceIdentifier.cs @@ -28,7 +28,7 @@ public class ResourceIdentifier : IEquatable, IComparable /// The root of the resource hierarchy. /// - public static readonly ResourceIdentifier RootResourceIdentifier = new ResourceIdentifier(null, TenantOperations.ResourceType, string.Empty); + public static readonly ResourceIdentifier RootResourceIdentifier = new ResourceIdentifier(null, Tenant.ResourceType, string.Empty); /// /// For internal use only. @@ -78,7 +78,7 @@ private void Init(ResourceIdentifier parent, ResourceType resourceType, string n ResourceGroupName = parent.ResourceGroupName; } - if (resourceType == SubscriptionOperations.ResourceType) + if (resourceType == Subscription.ResourceType) { Guid output; if (!Guid.TryParse(name, out output)) @@ -89,10 +89,10 @@ private void Init(ResourceIdentifier parent, ResourceType resourceType, string n if (resourceType.LastType == LocationsKey) Location = name; - if (resourceType == ResourceGroupOperations.ResourceType) + if (resourceType == ResourceGroup.ResourceType) ResourceGroupName = name; - if (resourceType == ProviderOperations.ResourceType) + if (resourceType == Resources.Provider.ResourceType) Provider = name; Parent = parent ?? RootResourceIdentifier; @@ -104,8 +104,8 @@ private void Init(ResourceIdentifier parent, ResourceType resourceType, string n private static ResourceType ChooseResourceType(string resourceTypeName, ResourceIdentifier parent) => resourceTypeName.ToLowerInvariant() switch { - ResourceGroupsLowerKey => ResourceGroupOperations.ResourceType, - SubscriptionsKey => SubscriptionOperations.ResourceType, + ResourceGroupsLowerKey => ResourceGroup.ResourceType, + SubscriptionsKey => Subscription.ResourceType, _ => new ResourceType(parent.ResourceType, resourceTypeName) }; @@ -147,7 +147,7 @@ private static ResourceIdentifier AppendNext(ResourceIdentifier parent, List 3 && string.Equals(parts[0], ProvidersKey, StringComparison.InvariantCultureIgnoreCase)) diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/ResourceListOperations.cs b/sdk/resourcemanager/Azure.ResourceManager/src/ResourceListOperations.cs index 5d8750fd7dfc8..b079a7c8ae51f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/src/ResourceListOperations.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/src/ResourceListOperations.cs @@ -15,15 +15,15 @@ public static class ResourceListOperations /// /// List resources under the a resource context /// - /// The instance to use for the list. + /// The instance to use for the list. /// Optional filters for results. /// Comma-separated list of additional properties to be included in the response. Valid values include `createdTime`, `changedTime` and `provisioningState`. For example, `$expand=createdTime,changedTime`. /// The number of results to return. /// A token to allow the caller to cancel the call to the service. The default value is . /// A collection of resource operations that may take multiple service requests to iterate over. [EditorBrowsable(EditorBrowsableState.Never)] - public static Pageable GetAtContext( - ResourceGroupOperations resourceGroup, + public static Pageable GetAtContext( + ResourceGroup resourceGroup, ResourceFilterCollection resourceFilters = null, string expand = null, int? top = null, @@ -41,15 +41,15 @@ public static Pageable GetAtContext( /// /// List resources under the a resource context /// - /// The instance to use for the list. + /// The instance to use for the list. /// Optional filters for results. /// Comma-separated list of additional properties to be included in the response. Valid values include `createdTime`, `changedTime` and `provisioningState`. For example, `$expand=createdTime,changedTime`. /// The number of results to return. /// A token to allow the caller to cancel the call to the service. The default value is . /// An async collection of resource operations that may take multiple service requests to iterate over. [EditorBrowsable(EditorBrowsableState.Never)] - public static AsyncPageable GetAtContextAsync( - ResourceGroupOperations resourceGroup, + public static AsyncPageable GetAtContextAsync( + ResourceGroup resourceGroup, ResourceFilterCollection resourceFilters = null, string expand = null, int? top = null, @@ -67,15 +67,15 @@ public static AsyncPageable GetAtContextAsync( /// /// List resources under a subscription /// - /// The instance to use for the list. + /// The instance to use for the list. /// Optional filters for results. /// Comma-separated list of additional properties to be included in the response. Valid values include `createdTime`, `changedTime` and `provisioningState`. For example, `$expand=createdTime,changedTime`. /// The number of results to return. /// A token to allow the caller to cancel the call to the service. The default value is . /// A collection of resource operations that may take multiple service requests to iterate over. [EditorBrowsable(EditorBrowsableState.Never)] - public static Pageable GetAtContext( - SubscriptionOperations subscription, + public static Pageable GetAtContext( + Subscription subscription, ResourceFilterCollection resourceFilters = null, string expand = null, int? top = null, @@ -93,15 +93,15 @@ public static Pageable GetAtContext( /// /// List resources under the a resource context /// - /// The instance to use for the list. + /// The instance to use for the list. /// Optional filters for results. /// Comma-separated list of additional properties to be included in the response. Valid values include `createdTime`, `changedTime` and `provisioningState`. For example, `$expand=createdTime,changedTime`. /// The number of results to return. /// A token to allow the caller to cancel the call to the service. The default value is . /// An async collection of resource operations that may take multiple service requests to iterate over. [EditorBrowsable(EditorBrowsableState.Never)] - public static AsyncPageable GetAtContextAsync( - SubscriptionOperations subscription, + public static AsyncPageable GetAtContextAsync( + Subscription subscription, ResourceFilterCollection resourceFilters = null, string expand = null, int? top = null, @@ -116,13 +116,13 @@ public static AsyncPageable GetAtContextAsync( cancellationToken); } - private static GenericResourceContainer GetGenericResourceContainer(ResourceOperations resourceOperations) + private static GenericResourceContainer GetGenericResourceContainer(ArmResource resourceOperations) { return new GenericResourceContainer(new ClientContext(resourceOperations.ClientOptions, resourceOperations.Credential, resourceOperations.BaseUri, resourceOperations.Pipeline), resourceOperations.Id); } - private static AsyncPageable ListAtContextInternalAsync( - ResourceOperations resourceOperations, + private static AsyncPageable ListAtContextInternalAsync( + ArmResource resourceOperations, string scopeFilter, ResourceFilterCollection resourceFilters = null, string expand = null, @@ -130,7 +130,7 @@ private static AsyncPageable ListAtContextInternalAsync CancellationToken cancellationToken = default) { var restClient = GetGenericResourceContainer(resourceOperations); - AsyncPageable result; + AsyncPageable result; if (scopeFilter == null) { result = restClient.GetAllAsync(resourceFilters?.ToString(), expand, top, cancellationToken); @@ -148,8 +148,8 @@ private static AsyncPageable ListAtContextInternalAsync return result; } - private static Pageable ListAtContextInternal( - ResourceOperations resourceOperations, + private static Pageable ListAtContextInternal( + ArmResource resourceOperations, string scopeFilter = null, ResourceFilterCollection resourceFilters = null, string expand = null, @@ -157,7 +157,7 @@ private static Pageable ListAtContextInternal( CancellationToken cancellationToken = default) { var restClient = GetGenericResourceContainer(resourceOperations); - Pageable result; + Pageable result; if (scopeFilter == null) { result = restClient.GetAll(resourceFilters?.ToString(), expand, top, cancellationToken); diff --git a/sdk/resourcemanager/Azure.ResourceManager/src/SingletonOperations.cs b/sdk/resourcemanager/Azure.ResourceManager/src/SingletonOperations.cs deleted file mode 100644 index f506cb372aa99..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/src/SingletonOperations.cs +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -namespace Azure.ResourceManager.Core -{ - /// - /// A class representing the operations that can be performed over a specific resource. - /// - public abstract class SingletonOperations : ResourceOperations - { - /// - /// Initializes a new instance of the class for mocking. - /// - protected SingletonOperations() - { - } - - /// - /// Initializes a new instance of the class. - /// - /// - protected SingletonOperations(ResourceOperations parent) - : base(new ClientContext(parent.ClientOptions, parent.Credential, parent.BaseUri, parent.Pipeline), ResourceIdentifier.RootResourceIdentifier) - { - Parent = parent; - } - - /// - /// Gets the parent resource of this resource. - /// - protected ResourceOperations Parent { get; } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ArmClientTests.cs b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ArmClientTests.cs index 71431a3395a6c..9c7393bd6dcb1 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ArmClientTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ArmClientTests.cs @@ -26,15 +26,15 @@ public async Task LocalOneTimeSetup() StopSessionRecording(); } - [TestCase] - [Ignore("4622 needs complete with a Mocked example to fill in this test")] - public void CreateResourceFromId() + [RecordedTest] + [SyncOnly] + public void ConstructWithInvalidSubscription() { - //TODO: 4622 needs complete with a Mocked example to fill in this test - //public ArmResponse CreateResource(string subscription, string resourceGroup, string name, TResource model, azure_proto_core.Location location = default) + var ex = Assert.Throws(() => new ArmClient(Guid.NewGuid().ToString(), TestEnvironment.Credential)); + Assert.AreEqual(404, ex.Status); } - [TestCase] + [RecordedTest] public void TestArmClientParamCheck() { Assert.Throws(() => { new ArmClient(null, null); }); @@ -42,7 +42,7 @@ public void TestArmClientParamCheck() Assert.Throws(() => { new ArmClient(defaultSubscriptionId: null, null, null); }); } - [TestCase] + [RecordedTest] public void GetGenericOperationsTests() { var ids = new List() @@ -53,60 +53,57 @@ public void GetGenericOperationsTests() $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/foo-4" }; - var genericResourceOperationsList = Client.GetGenericResourceOperations(ids); + var genericResourceOperationsList = Client.GetGenericResources(ids); int index = 0; - foreach (GenericResourceOperations operations in genericResourceOperationsList) + foreach (GenericResource operations in genericResourceOperationsList) { Assert.AreEqual(ids[index], operations.Id.StringValue); index++; } - genericResourceOperationsList = Client.GetGenericResourceOperations(ids[0], ids[1], ids[2], ids[3]); + genericResourceOperationsList = Client.GetGenericResources(ids[0], ids[1], ids[2], ids[3]); index = 0; - foreach (GenericResourceOperations operations in genericResourceOperationsList) + foreach (GenericResource operations in genericResourceOperationsList) { Assert.AreEqual(ids[index], operations.Id.StringValue); index++; } } - [TestCase] + [RecordedTest] public void GetGenericResourcesOperationsTests() { - string id = $"/providers/Microsoft.Compute/virtualMachines/myVm"; - Assert.AreEqual(id, Client.GetGenericResourceOperations(new ResourceIdentifier(id)).Id.StringValue); + string id = $"/subscriptions/{TestEnvironment.SubscriptionId}/providers/Microsoft.Compute/virtualMachines/myVm"; + Assert.AreEqual(id, Client.GetGenericResource(new ResourceIdentifier(id)).Id.StringValue); } - [TestCase] + [RecordedTest] public void GetGenericResourceOperationsSingleIDTests() { string id = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/foo-1"; - Assert.AreEqual(id, Client.GetGenericResourceOperations(id).Id.StringValue); + Assert.AreEqual(id, Client.GetGenericResource(id).Id.StringValue); } - [TestCase] [RecordedTest] public async Task GetGenericResourceOperationsWithSingleValidResource() { string id = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{_rgName}"; - var genericResourceOperations = Client.GetGenericResourceOperations(id); + var genericResourceOperations = Client.GetGenericResource(id); var genericResource = await genericResourceOperations.GetAsync(); Assert.AreEqual(200, genericResource.GetRawResponse().Status); } - [TestCase] [RecordedTest] public void GetGenericResourceOperationsWithSingleInvalidResource() { string id = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/foo-1"; - var genericResourceOperations = Client.GetGenericResourceOperations(id); + var genericResourceOperations = Client.GetGenericResource(id); RequestFailedException exception = Assert.ThrowsAsync(async () => await genericResourceOperations.GetAsync()); Assert.AreEqual(404, exception.Status); } - [TestCase] [RecordedTest] public async Task GetGenericOperationsWithListOfValidResource() { @@ -115,16 +112,15 @@ public async Task GetGenericOperationsWithListOfValidResource() $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{_rgName}" }; - var genericResourceOperationsList = Client.GetGenericResourceOperations(ids); + var genericResourceOperationsList = Client.GetGenericResources(ids); - foreach (GenericResourceOperations operations in genericResourceOperationsList) + foreach (GenericResource operations in genericResourceOperationsList) { var genericResource = await operations.GetAsync(); Assert.AreEqual(200, genericResource.GetRawResponse().Status); } } - [TestCase] [RecordedTest] public void GetGenericOperationsWithListOfInvalidResource() { @@ -133,34 +129,34 @@ public void GetGenericOperationsWithListOfInvalidResource() $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/non-existent" }; - var genericResourceOperationsList = Client.GetGenericResourceOperations(ids); + var genericResourceOperationsList = Client.GetGenericResources(ids); - foreach (GenericResourceOperations operations in genericResourceOperationsList) + foreach (GenericResource operations in genericResourceOperationsList) { RequestFailedException exception = Assert.ThrowsAsync(async () => await operations.GetAsync()); Assert.AreEqual(404, exception.Status); } } - [TestCase] + [RecordedTest] public void GetGenericResourceOperationWithNullSetOfIds() { string[] x = null; - Assert.Throws(() => { Client.GetGenericResourceOperations(x); }); + Assert.Throws(() => { Client.GetGenericResources(x); }); } - [TestCase] + [RecordedTest] public void GetGenericResourceOperationWithNullId() { string x = null; - Assert.Throws(() => { Client.GetGenericResourceOperations(x); }); + Assert.Throws(() => { Client.GetGenericResource(x); }); } - [TestCase] + [RecordedTest] public void GetGenericResourceOperationEmptyTest() { var ids = new List(); - Assert.AreEqual(new List(), Client.GetGenericResourceOperations(ids)); + Assert.AreEqual(new List(), Client.GetGenericResources(ids)); } } } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/FeatureOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/FeatureOperationsTests.cs index f7beaee21ffde..11a9577e523cc 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/FeatureOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/FeatureOperationsTests.cs @@ -1,4 +1,5 @@ -using System.Threading.Tasks; +using System; +using System.Threading.Tasks; using Azure.Core.TestFramework; using Azure.ResourceManager.Resources; using NUnit.Framework; @@ -12,6 +13,15 @@ public FeatureOperationsTests(bool isAsync) { } + [RecordedTest] + [SyncOnly] + public void NoDataValidation() + { + ///subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Features/providers/Microsoft.Compute/features/AHUB + var resource = Client.GetFeature($"/subscriptions/{Guid.NewGuid()}/providers/Microsoft.Features/providers/Microsoft.FakeNamespace/features/fakeFeature"); + Assert.Throws(() => { var data = resource.Data; }); + } + [RecordedTest] public async Task Get() { @@ -23,7 +33,7 @@ public async Task Get() Assert.AreEqual(featureFromContainer.Data.Properties.State, feature.Data.Properties.State); Assert.AreEqual(featureFromContainer.Data.Type, feature.Data.Type); - var ex = Assert.ThrowsAsync(async () => _ = await Client.GetFeatureOperations(feature.Data.Id + "x").GetAsync()); + var ex = Assert.ThrowsAsync(async () => _ = await Client.GetFeature(feature.Data.Id + "x").GetAsync()); Assert.AreEqual(404, ex.Status); } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/GenericResourceContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/GenericResourceContainerTests.cs index 713039f02344c..5de1bc85338f7 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/GenericResourceContainerTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/GenericResourceContainerTests.cs @@ -46,6 +46,36 @@ public async Task List() Assert.GreaterOrEqual(count, 2); } + [TestCase] + [RecordedTest] + public async Task ListWithExpand() + { + ResourceGroup rg1 = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + _ = await CreateGenericAvailabilitySetAsync(rg1.Id); + ResourceGroup rg2 = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + _ = await CreateGenericAvailabilitySetAsync(rg2.Id); + + int count = 0; + //`createdTime`, `changedTime` and `provisioningState` + await foreach (var genericResource in Client.DefaultSubscription.GetGenericResources().GetAllAsync(expand: "createdTime")) + { + Assert.NotNull(genericResource.Data.CreatedTime); + Assert.Null(genericResource.Data.ChangedTime); + Assert.Null(genericResource.Data.ProvisioningState); + count++; + } + + //`createdTime`, `changedTime` and `provisioningState` + await foreach (var genericResource in Client.DefaultSubscription.GetGenericResources().GetAllAsync(expand: "changedTime,provisioningState")) + { + Assert.Null(genericResource.Data.CreatedTime); + Assert.NotNull(genericResource.Data.ChangedTime); + Assert.NotNull(genericResource.Data.ProvisioningState); + } + + Assert.GreaterOrEqual(count, 2); + } + [TestCase] [RecordedTest] public async Task ListByResourceGroup() diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/GenericResourceExpandedOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/GenericResourceExpandedOperationsTests.cs deleted file mode 100644 index b0da1a0aff16d..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/GenericResourceExpandedOperationsTests.cs +++ /dev/null @@ -1,161 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Threading.Tasks; -using Azure.Core.TestFramework; -using Azure.ResourceManager.Core; -using Azure.ResourceManager.Resources; -using Azure.ResourceManager.Resources.Models; -using NUnit.Framework; - -namespace Azure.ResourceManager.Tests -{ - [Parallelizable] - public class GenericResourceExpandedOperationsTests : ResourceManagerTestBase - { - private const string GenericResourceExpandString = "createdTime,changedTime,provisioningState"; - - public GenericResourceExpandedOperationsTests(bool isAsync) - : base(isAsync)//, RecordedTestMode.Record) - { - } - - [TestCase] - [RecordedTest] - public async Task Delete() - { - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - var aset = await CreateGenericAvailabilitySetAsync(rg.Id); - - var resExp = await GetGenericResourceExpandedAsync(aset.Id, null, GenericResourceExpandString); - Assert.DoesNotThrowAsync(async () => await resExp.DeleteAsync()); - } - - [TestCase] - [RecordedTest] - public async Task StartDelete() - { - var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - ResourceGroup rg = await rgOp.WaitForCompletionAsync(); - var createOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); - GenericResource aset = await createOp.WaitForCompletionAsync(); - - var resExp = await GetGenericResourceExpandedAsync(aset.Id, null, GenericResourceExpandString); - Assert.DoesNotThrowAsync(async () => - { - var deleteOp = await resExp.StartDeleteAsync(); - _ = await deleteOp.WaitForCompletionResponseAsync(); - }); - } - - [TestCase] - [RecordedTest] - public async Task AddTag() - { - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - var aset = await CreateGenericAvailabilitySetAsync(rg.Id); - - var resExp = await GetGenericResourceExpandedAsync(aset.Id, null, GenericResourceExpandString); - Assert.AreEqual(0, resExp.Data.Tags.Count); - aset = await resExp.AddTagAsync("key", "value"); - - Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); - Assert.AreEqual("value", aset.Data.Tags["key"]); - } - - [TestCase] - [RecordedTest] - public async Task SetTags() - { - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - var aset = await CreateGenericAvailabilitySetAsync(rg.Id); - - var resExp = await GetGenericResourceExpandedAsync(aset.Id, null, GenericResourceExpandString); - Assert.AreEqual(0, resExp.Data.Tags.Count); - - Dictionary tags = new Dictionary(); - tags.Add("key", "value"); - aset = await resExp.SetTagsAsync(tags); - - Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); - Assert.AreEqual("value", aset.Data.Tags["key"]); - } - - [TestCase] - [RecordedTest] - public async Task RemoveTag() - { - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - var aset = await CreateGenericAvailabilitySetAsync(rg.Id); - - var resExp = await GetGenericResourceExpandedAsync(aset.Id, null, GenericResourceExpandString); - Dictionary tags = new Dictionary(); - tags.Add("key", "value"); - _ = await resExp.SetTagsAsync(tags); - - aset = await resExp.RemoveTagAsync("key"); - - Assert.IsFalse(aset.Data.Tags.ContainsKey("key")); - Assert.AreEqual(0, aset.Data.Tags.Count); - } - - [TestCase] - [RecordedTest] - public async Task Update() - { - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - var aset = await CreateGenericAvailabilitySetAsync(rg.Id); - - var resExp = await GetGenericResourceExpandedAsync(aset.Id, null, GenericResourceExpandString); - var data = ConstructGenericAvailabilitySet(); - data.Tags.Add("key", "value"); - aset = await resExp.UpdateAsync(data); - - Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); - Assert.AreEqual("value", aset.Data.Tags["key"]); - - Assert.ThrowsAsync(async () => _ = await resExp.UpdateAsync(null)); - } - - [TestCase] - [RecordedTest] - public async Task StartUpdate() - { - var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - ResourceGroup rg = await rgOp.WaitForCompletionAsync(); - var createOp = await StartCreateGenericAvailabilitySetAsync(rg.Id); - GenericResource aset = await createOp.WaitForCompletionAsync(); - - var resExp = await GetGenericResourceExpandedAsync(aset.Id, null, GenericResourceExpandString); - var data = ConstructGenericAvailabilitySet(); - data.Tags.Add("key", "value"); - var updateOp = await resExp.StartUpdateAsync(data); - aset = await updateOp.WaitForCompletionAsync(); - - Assert.IsTrue(aset.Data.Tags.ContainsKey("key")); - Assert.AreEqual("value", aset.Data.Tags["key"]); - - Assert.ThrowsAsync(async () => - { - var updateOp = await resExp.StartUpdateAsync(null); - _ = await updateOp.WaitForCompletionAsync(); - }); - } - - private async Task GetGenericResourceExpandedAsync( - ResourceIdentifier resourceId, - string filter = default, - string expand = default) - { - var resExp = await (Client.DefaultSubscription.GetGenericResources() - .GetAllAsync(filter, expand) - .FirstOrDefaultAsync(r => r.Id.Equals(resourceId))); - - Assert.NotNull(resExp); - Assert.NotNull(resExp.Data.CreatedTime); - Assert.NotNull(resExp.Data.ChangedTime); - Assert.IsFalse(string.IsNullOrWhiteSpace(resExp.Data.ProvisioningState)); - - return resExp; - } - } -} diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/GenericResourceOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/GenericResourceOperationsTests.cs index 2c0280ca16045..3067a06f61c36 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/GenericResourceOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/GenericResourceOperationsTests.cs @@ -23,7 +23,7 @@ public async Task GetGenericsConfirmException() var rgName = Recording.GenerateAssetName("testrg"); _ = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(rgName); var asetid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{rgName}/providers/Microsoft.Compute/availabilitySets/testavset"; - var genericResourceOperations = Client.GetGenericResourceOperations(asetid); + var genericResourceOperations = Client.GetGenericResource(asetid); RequestFailedException exception = Assert.ThrowsAsync(async () => await genericResourceOperations.GetAsync()); Assert.AreEqual(404, exception.Status); Assert.True(exception.Message.Contains("ResourceNotFound")); @@ -36,7 +36,7 @@ public async Task GetGenericsBadNameSpace() var rgName = Recording.GenerateAssetName("testrg"); _ = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(rgName); var asetid = $"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/{rgName}/providers/Microsoft.NotAValidNameSpace123/availabilitySets/testavset"; - var genericResourceOperations = Client.GetGenericResourceOperations(asetid); + var genericResourceOperations = Client.GetGenericResource(asetid); InvalidOperationException exception = Assert.ThrowsAsync(async () => await genericResourceOperations.GetAsync()); Assert.IsTrue(exception.Message.Equals($"An invalid resouce id was given {asetid}")); } @@ -50,7 +50,7 @@ public async Task GetGenericsBadApiVersion() ArmClientOptions options = new ArmClientOptions(); options.ApiVersions.SetApiVersion(rg.Id.ResourceType, "1500-10-10"); var client = GetArmClient(options); - var genericResourceOperations = client.GetGenericResourceOperations(rg.Id); + var genericResourceOperations = client.GetGenericResource(rg.Id); RequestFailedException exception = Assert.ThrowsAsync(async () => await genericResourceOperations.GetAsync()); Assert.IsTrue(exception.Message.Contains("InvalidApiVersionParameter")); } @@ -61,7 +61,7 @@ public async Task GetGenericsGoodApiVersion() { var rgName = Recording.GenerateAssetName("testrg"); ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(rgName); - var genericResourceOperations = Client.GetGenericResourceOperations(rg.Id); + var genericResourceOperations = Client.GetGenericResource(rg.Id); var genericResource = await genericResourceOperations.GetAsync(); Assert.IsNotNull(genericResource.Value); Assert.IsTrue(genericResource.Value.Data.Name.Equals(rgName)); @@ -129,7 +129,7 @@ public async Task Get() AssertAreEqual(aset, aset2); - var ex = Assert.ThrowsAsync(async () => _ = await Client.GetGenericResourceOperations(aset2.Id + "x").GetAsync()); + var ex = Assert.ThrowsAsync(async () => _ = await Client.GetGenericResource(aset2.Id + "x").GetAsync()); Assert.AreEqual(404, ex.Status); } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ManagementGroupContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ManagementGroupContainerTests.cs index 05c0e69d62d93..46cb162d21089 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ManagementGroupContainerTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ManagementGroupContainerTests.cs @@ -29,7 +29,7 @@ public async Task GetGlobalManagementGroup() public async Task List() { var mgmtGroupContainer = Client.GetManagementGroups(); - ManagementGroupInfo mgmtGroup = null; + ManagementGroup mgmtGroup = null; await foreach(var item in mgmtGroupContainer.GetAllAsync("no-cache")) { mgmtGroup = item; @@ -41,6 +41,8 @@ public async Task List() Assert.IsNotNull(mgmtGroup.Data.Name, "Name was null"); Assert.IsNotNull(mgmtGroup.Data.TenantId, "TenantId was null"); Assert.IsNotNull(mgmtGroup.Data.Type, "Type was null"); + Assert.IsEmpty(mgmtGroup.Data.Children); + Assert.IsNull(mgmtGroup.Data.Details); } [RecordedTest] @@ -77,7 +79,7 @@ public async Task CreateOrUpdate() Assert.AreEqual($"/providers/Microsoft.Management/managementGroups/{mgmtGroupName}", mgmtGroup.Data.Id.ToString()); Assert.AreEqual(mgmtGroupName, mgmtGroup.Data.Name); Assert.AreEqual(mgmtGroupName, mgmtGroup.Data.DisplayName); - Assert.AreEqual(ManagementGroupOperations.ResourceType, mgmtGroup.Data.Type); + Assert.AreEqual(ManagementGroup.ResourceType, mgmtGroup.Data.Type); } [RecordedTest] @@ -89,7 +91,7 @@ public async Task StartCreateOrUpdate() Assert.AreEqual($"/providers/Microsoft.Management/managementGroups/{mgmtGroupName}", mgmtGroup.Data.Id.ToString()); Assert.AreEqual(mgmtGroupName, mgmtGroup.Data.Name); Assert.AreEqual(mgmtGroupName, mgmtGroup.Data.DisplayName); - Assert.AreEqual(ManagementGroupOperations.ResourceType, mgmtGroup.Data.Type); + Assert.AreEqual(ManagementGroup.ResourceType, mgmtGroup.Data.Type); } [RecordedTest] diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ManagementGroupOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ManagementGroupOperationsTests.cs index 474a4dd473dc0..82ed7d54dc799 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ManagementGroupOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ManagementGroupOperationsTests.cs @@ -28,9 +28,9 @@ public async Task GetGlobalManagementGroup() [RecordedTest] public async Task Get() { - var mgmtGroup = await Client.GetManagementGroupOperations(_mgmtGroup.Id).GetAsync(); + var mgmtGroup = await Client.GetManagementGroup(_mgmtGroup.Id).GetAsync(); CompareMgmtGroups(_mgmtGroup, mgmtGroup.Value); - RequestFailedException ex = Assert.ThrowsAsync(async () => _ = await Client.GetManagementGroupOperations(_mgmtGroup.Id + "x").GetAsync()); + RequestFailedException ex = Assert.ThrowsAsync(async () => _ = await Client.GetManagementGroup(_mgmtGroup.Id + "x").GetAsync()); Assert.AreEqual(403, ex.Status); } @@ -56,7 +56,7 @@ public async Task StartDelete() [RecordedTest] public async Task GetDescendants() { - ManagementGroup mgmtGroup = await Client.GetManagementGroupOperations(_mgmtGroup.Id).GetAsync(); + ManagementGroup mgmtGroup = await Client.GetManagementGroup(_mgmtGroup.Id).GetAsync(); DescendantInfo descendant = null; await foreach(var desc in mgmtGroup.GetDescendantsAsync()) { diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/PreDefinedTagContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/PreDefinedTagContainerTests.cs index f38474277c6c1..cf15f8867663f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/PreDefinedTagContainerTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/PreDefinedTagContainerTests.cs @@ -22,7 +22,6 @@ public PredefinedTagContainerTests(bool isAsync) protected async Task GlobalTagCleanupAsync() { var container = Client.DefaultSubscription.GetPredefinedTags(); - var operation = Client.DefaultSubscription.GetPreDefinedTagOperations(); var listResult = (await container.GetAllAsync().ToEnumerableAsync()).Where(x => x.Data.TagName.StartsWith("tagName")); foreach (var item in listResult) { diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/PreDefinedTagOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/PreDefinedTagOperationsTests.cs index caffcee5d4e01..ffbba8baf19e4 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/PreDefinedTagOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/PreDefinedTagOperationsTests.cs @@ -1,10 +1,11 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. -using System.Collections.Generic; +using System; using System.Linq; using System.Threading.Tasks; using Azure.Core.TestFramework; +using Azure.ResourceManager.Resources; using NUnit.Framework; namespace Azure.ResourceManager.Tests @@ -20,7 +21,6 @@ public PredefinedTagOperationsTests(bool isAsync) protected async Task GlobalTagCleanupAsync() { var container = Client.DefaultSubscription.GetPredefinedTags(); - var operation = Client.DefaultSubscription.GetPreDefinedTagOperations(); var listResult = (await container.GetAllAsync().ToEnumerableAsync()).Where(x => x.Data.TagName.StartsWith("tagName")); foreach (var item in listResult) { @@ -28,11 +28,20 @@ protected async Task GlobalTagCleanupAsync() }; } + [RecordedTest] + [SyncOnly] + public void NoDataValidation() + { + ///subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab/tagNames/platformsettings.host_environment.service.platform_optedin_for_rootcerts + var resource = Client.GetPreDefinedTag($"/subscriptions/{Guid.NewGuid()}/tagNames/fakeTagName"); + Assert.Throws(() => { var data = resource.Data; }); + } + [TestCase] [RecordedTest] public void GetTagsOperation() { - var operation = Client.DefaultSubscription.GetPreDefinedTagOperations(); + var operation = Client.GetPreDefinedTag($"/subscriptions/{Client.DefaultSubscription.Id.SubscriptionId}/tagNames/fakeTagName"); string subscriptionId; Assert.IsTrue(operation.Id.TryGetSubscriptionId(out subscriptionId)); Assert.AreEqual(subscriptionId, TestEnvironment.SubscriptionId); @@ -43,14 +52,13 @@ public void GetTagsOperation() public async Task ValueTest() { var tagName = Recording.GenerateAssetName("tagName"); - var operation = Client.DefaultSubscription.GetPreDefinedTagOperations(); var container = Client.DefaultSubscription.GetPredefinedTags(); - await container.CreateOrUpdateAsync(tagName).ConfigureAwait(false); + PredefinedTag preDefinedTag = await container.CreateOrUpdateAsync(tagName).ConfigureAwait(false); // Assert create tag value - var createValue = await operation.CreateOrUpdateValueAsync(tagName, "testValue").ConfigureAwait(false); + var createValue = await preDefinedTag.CreateOrUpdateValueAsync(tagName, "testValue").ConfigureAwait(false); Assert.IsTrue(createValue.Value.TagValueValue.Equals("testValue")); // Assert delete tag value - await operation.DeleteValueAsync(tagName, "testValue").ConfigureAwait(false); + await preDefinedTag.DeleteValueAsync(tagName, "testValue").ConfigureAwait(false); var listResult = await container.GetAllAsync().ToEnumerableAsync(); var expectTag = listResult.Where(x => x.Data.TagName == tagName).FirstOrDefault(); var expectValue = expectTag.Data.Values.Where(x => x.TagValueValue == "testValue").FirstOrDefault(); @@ -62,10 +70,9 @@ public async Task ValueTest() public async Task DeleteTag() { var tagName = Recording.GenerateAssetName("tagName"); - var operation = Client.DefaultSubscription.GetPreDefinedTagOperations(); var container = Client.DefaultSubscription.GetPredefinedTags(); - await container.CreateOrUpdateAsync(tagName).ConfigureAwait(false); - await operation.DeleteAsync(tagName).ConfigureAwait(false); + PredefinedTag preDefinedTag = await container.CreateOrUpdateAsync(tagName).ConfigureAwait(false); + await preDefinedTag.DeleteAsync(tagName).ConfigureAwait(false); var listResult = await container.GetAllAsync().ToEnumerableAsync(); var expectTag = listResult.Where(x => x.Data.TagName.Equals(tagName)).FirstOrDefault(); Assert.IsNull(expectTag); @@ -76,10 +83,9 @@ public async Task DeleteTag() public async Task StartDelete() { var tagName = Recording.GenerateAssetName("tagName"); - var operation = Client.DefaultSubscription.GetPreDefinedTagOperations(); var container = Client.DefaultSubscription.GetPredefinedTags(); - await container.CreateOrUpdateAsync(tagName).ConfigureAwait(false); - await operation.StartDeleteAsync(tagName).ConfigureAwait(false); + PredefinedTag preDefinedTag = await container.CreateOrUpdateAsync(tagName).ConfigureAwait(false); + await preDefinedTag.StartDeleteAsync(tagName).ConfigureAwait(false); var listResult = await container.GetAllAsync().ToEnumerableAsync(); var expectTag = listResult.Where(x => x.Data.TagName.Equals(tagName)).FirstOrDefault(); Assert.IsNull(expectTag); diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ProviderOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ProviderOperationsTests.cs index aa7a7c6dee3eb..ab3c74037e55d 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ProviderOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ProviderOperationsTests.cs @@ -13,6 +13,15 @@ public ProviderOperationsTests(bool isAsync) { } + [RecordedTest] + [SyncOnly] + public void NoDataValidation() + { + ///subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/microsoft.insights + var resource = Client.GetProvider($"/subscriptions/{Guid.NewGuid()}/providers/microsoft.FakeNamespace"); + Assert.Throws(() => { var data = resource.Data; }); + } + [TestCase] [RecordedTest] public async Task Get() @@ -22,7 +31,7 @@ public async Task Get() Provider result = response.Value; Assert.IsNotNull(result); - var ex = Assert.ThrowsAsync(async () => await Client.GetProviderOperations(result.Data.Id + "x").GetAsync()); + var ex = Assert.ThrowsAsync(async () => await Client.GetProvider(result.Data.Id + "x").GetAsync()); Assert.AreEqual(404, ex.Status); } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ResourceGroupOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ResourceGroupOperationsTests.cs index 40b0998727a40..0e88ccd4be570 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ResourceGroupOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ResourceGroupOperationsTests.cs @@ -18,11 +18,20 @@ public ResourceGroupOperationsTests(bool isAsync) { } + [RecordedTest] + [SyncOnly] + public void NoDataValidation() + { + ////subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/myRg + var resource = Client.GetResourceGroup($"/subscriptions/{Guid.NewGuid()}/resourceGroups/fakeRg"); + Assert.Throws(() => { var data = resource.Data; }); + } + [TestCase] [RecordedTest] public async Task DeleteRg() { - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().CreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); await rg.DeleteAsync(); } @@ -30,7 +39,7 @@ public async Task DeleteRg() [RecordedTest] public async Task StartDeleteRg() { - var rgOp = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + var rgOp = await Client.DefaultSubscription.GetResourceGroups().StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); ResourceGroup rg = await rgOp.WaitForCompletionAsync(); var deleteOp = await rg.StartDeleteAsync(); var response = deleteOp.GetRawResponse(); @@ -39,7 +48,7 @@ public async Task StartDeleteRg() await deleteOp.WaitForCompletionResponseAsync(); await deleteOp.WaitForCompletionResponseAsync(TimeSpan.FromSeconds(2)); - var rgOp2 = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + var rgOp2 = await Client.DefaultSubscription.GetResourceGroups().StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); ResourceGroup rg2 = await rgOp.WaitForCompletionAsync(); rg2.Id.Name = null; Assert.ThrowsAsync(async () => _ = await rg2.StartDeleteAsync()); @@ -49,7 +58,7 @@ public async Task StartDeleteRg() [RecordedTest] public void StartDeleteNonExistantRg() { - var rgOp = InstrumentClientExtension(Client.GetResourceGroupOperations($"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/fake")); + var rgOp = InstrumentClientExtension(Client.GetResourceGroup($"/subscriptions/{TestEnvironment.SubscriptionId}/resourceGroups/fake")); var deleteOpTask = rgOp.StartDeleteAsync(); RequestFailedException exception = Assert.ThrowsAsync(async () => await deleteOpTask); Assert.AreEqual(404, exception.Status); @@ -59,7 +68,7 @@ public void StartDeleteNonExistantRg() [RecordedTest] public async Task Get() { - ResourceGroup rg1 = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg1 = await Client.DefaultSubscription.GetResourceGroups().CreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); ResourceGroup rg2 = await rg1.GetAsync(); Assert.AreEqual(rg1.Data.Name, rg2.Data.Name); Assert.AreEqual(rg1.Data.Id, rg2.Data.Id); @@ -72,7 +81,7 @@ public async Task Get() rg1.Id.Name = null; Assert.ThrowsAsync(async () => _ = await rg1.GetAsync()); - var ex = Assert.ThrowsAsync(async () => await Client.GetResourceGroupOperations(rg1.Data.Id + "x").GetAsync()); + var ex = Assert.ThrowsAsync(async () => await Client.GetResourceGroup(rg1.Data.Id + "x").GetAsync()); Assert.AreEqual(404, ex.Status); } @@ -81,7 +90,7 @@ public async Task Get() public async Task Update() { var rgName = Recording.GenerateAssetName("testrg"); - ResourceGroup rg1 = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(rgName); + ResourceGroup rg1 = await Client.DefaultSubscription.GetResourceGroups().CreateOrUpdateAsync(rgName, new ResourceGroupData(Location.WestUS2)); var parameters = new ResourceGroupPatchable { Name = rgName @@ -105,7 +114,7 @@ public async Task Update() [RecordedTest] public async Task StartExportTemplate() { - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().CreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); var parameters = new ExportTemplateRequest(); parameters.Resources.Add("*"); var expOp = await rg.StartExportTemplateAsync(parameters); @@ -125,7 +134,7 @@ public async Task StartExportTemplate() [RecordedTest] public async Task AddTag() { - ResourceGroup rg1 = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg1 = await Client.DefaultSubscription.GetResourceGroups().CreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); Assert.AreEqual(0, rg1.Data.Tags.Count); ResourceGroup rg2 = await rg1.AddTagAsync("key", "value"); Assert.AreEqual(1, rg2.Data.Tags.Count); @@ -145,7 +154,7 @@ public async Task AddTag() [RecordedTest] public async Task SetTags() { - ResourceGroup rg1 = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg1 = await Client.DefaultSubscription.GetResourceGroups().CreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); Assert.AreEqual(0, rg1.Data.Tags.Count); var tags = new Dictionary() { @@ -167,7 +176,7 @@ public async Task SetTags() [RecordedTest] public async Task RemoveTag() { - ResourceGroup rg1 = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg1 = await Client.DefaultSubscription.GetResourceGroups().CreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); var tags = new Dictionary() { { "k1", "v1"}, @@ -195,7 +204,7 @@ public async Task RemoveTag() [RecordedTest] public async Task ListAvailableLocations() { - ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().CreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); var locations = await rg.GetAvailableLocationsAsync(); int count = 0; foreach (var location in locations) @@ -209,8 +218,8 @@ public async Task ListAvailableLocations() [RecordedTest] public async Task MoveResources() { - ResourceGroup rg1 = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - ResourceGroup rg2 = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg1 = await Client.DefaultSubscription.GetResourceGroups().CreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); + ResourceGroup rg2 = await Client.DefaultSubscription.GetResourceGroups().CreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); var genericResources = Client.DefaultSubscription.GetGenericResources(); var aset = await CreateGenericAvailabilitySetAsync(rg1.Id); @@ -236,8 +245,8 @@ public async Task MoveResources() [RecordedTest] public async Task StartMoveResources() { - var rg1Op = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - var rg2Op = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + var rg1Op = await Client.DefaultSubscription.GetResourceGroups().StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); + var rg2Op = await Client.DefaultSubscription.GetResourceGroups().StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); ResourceGroup rg1 = await rg1Op.WaitForCompletionAsync(); ResourceGroup rg2 = await rg2Op.WaitForCompletionAsync(); var genericResources = Client.DefaultSubscription.GetGenericResources(); @@ -271,8 +280,8 @@ public async Task StartMoveResources() [RecordedTest] public async Task ValidateMoveResources() { - ResourceGroup rg1 = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - ResourceGroup rg2 = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + ResourceGroup rg1 = await Client.DefaultSubscription.GetResourceGroups().CreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); + ResourceGroup rg2 = await Client.DefaultSubscription.GetResourceGroups().CreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); var aset = await CreateGenericAvailabilitySetAsync(rg1.Id); var moveInfo = new ResourcesMoveInfo(); @@ -289,8 +298,8 @@ public async Task ValidateMoveResources() [RecordedTest] public async Task StartValidateMoveResources() { - var rg1Op = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); - var rg2Op = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); + var rg1Op = await Client.DefaultSubscription.GetResourceGroups().StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); + var rg2Op = await Client.DefaultSubscription.GetResourceGroups().StartCreateOrUpdateAsync(Recording.GenerateAssetName("testrg"), new ResourceGroupData(Location.WestUS2)); ResourceGroup rg1 = await rg1Op.WaitForCompletionAsync(); ResourceGroup rg2 = await rg2Op.WaitForCompletionAsync(); var asetOp = await StartCreateGenericAvailabilitySetAsync(rg1.Id); diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ResourceListOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ResourceListOperationsTests.cs index fe61d7143d65b..07ec7b7e7583c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ResourceListOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/ResourceListOperationsTests.cs @@ -21,7 +21,7 @@ public async Task ListAtContext() ResourceGroup rg = await Client.DefaultSubscription.GetResourceGroups().Construct(Location.WestUS2).CreateOrUpdateAsync(Recording.GenerateAssetName("testrg")); _ = await CreateGenericAvailabilitySetAsync(rg.Id); - ResourceGroupOperations rgOp = Client.GetResourceGroupOperations(rg.Id); + ResourceGroup rgOp = Client.GetResourceGroup(rg.Id); var result = 0; var pageable = ResourceListOperations.GetAtContextAsync(rgOp); await foreach (var resource in pageable) diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/SubscriptionContainerTests.cs b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/SubscriptionContainerTests.cs index 73781ed72e507..70fa53571f2aa 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/SubscriptionContainerTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/SubscriptionContainerTests.cs @@ -13,7 +13,6 @@ public SubscriptionContainerTests(bool isAsync) { } - [TestCase] [RecordedTest] public async Task List() { @@ -25,7 +24,6 @@ public async Task List() Assert.GreaterOrEqual(count, 1); } - [TestCase] [RecordedTest] public async Task TryGet() { @@ -37,7 +35,6 @@ public async Task TryGet() Assert.IsTrue(subscription.Id.SubscriptionId.Equals(subscriptionId)); } - [TestCase] [RecordedTest] public async Task Get() { @@ -50,7 +47,6 @@ public async Task Get() Assert.AreEqual(404, ex.Status); } - [TestCase] [RecordedTest] public async Task CheckIfExists() { diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/SubscriptionOperationsTests.cs b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/SubscriptionOperationsTests.cs index 26c16e60a081f..75372b1ca9f90 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/SubscriptionOperationsTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/Scenario/SubscriptionOperationsTests.cs @@ -19,6 +19,15 @@ public SubscriptionOperationsTests(bool isAsync) { } + [RecordedTest] + [SyncOnly] + public void NoDataValidation() + { + ///subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c + var resource = Client.GetSubscription($"/subscriptions/{Guid.NewGuid()}"); + Assert.Throws(() => { var data = resource.Data; }); + } + [TestCase] [RecordedTest] public async Task GetSubscriptionOperation() @@ -142,7 +151,7 @@ public async Task TestGetSubscription() var subscription = await Client.DefaultSubscription.GetAsync(); Assert.NotNull(subscription.Value.Data.Id); - RequestFailedException ex = Assert.ThrowsAsync(async () => _ = await Client.GetSubscriptionOperations($"/subscriptions/{new Guid()}").GetAsync()); + RequestFailedException ex = Assert.ThrowsAsync(async () => _ = await Client.GetSubscription($"/subscriptions/{new Guid()}").GetAsync()); Assert.AreEqual(404, ex.Status); } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/ArmClientTests(False).json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/ArmClientTests(False).json index aaeccd000a95c..0ec1e8b5e788f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/ArmClientTests(False).json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/ArmClientTests(False).json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5a471502cc785e70e671623a1a452721", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:21 GMT", + "Date": "Tue, 10 Aug 2021 19:39:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f0beb302-2651-49a3-ba29-87a613dc9ed5", + "x-ms-correlation-request-id": "cd9a7ff0-41ae-4b76-b964-a4ab5d3cd4ea", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "f0beb302-2651-49a3-ba29-87a613dc9ed5", - "x-ms-routing-request-id": "WESTUS2:20210726T005122Z:f0beb302-2651-49a3-ba29-87a613dc9ed5" + "x-ms-request-id": "cd9a7ff0-41ae-4b76-b964-a4ab5d3cd4ea", + "x-ms-routing-request-id": "WESTUS2:20210810T193910Z:cd9a7ff0-41ae-4b76-b964-a4ab5d3cd4ea" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -51,8 +51,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1a60b64fb044b64f898bd4e824cf1094-11d0c50638249749-00", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-c448e7a83b0dda47b61256bd4bc5a995-16b5cd5614be1e4b-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7f043350e1a08916b2e6d331bf887312", "x-ms-return-client-request-id": "true" }, @@ -62,15 +62,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:21 GMT", + "Date": "Tue, 10 Aug 2021 19:39:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0618f624-96ef-412a-aea9-de151078dcda", + "x-ms-correlation-request-id": "18bfee3e-06ff-4ace-a48e-25ce7f5d7e68", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "0618f624-96ef-412a-aea9-de151078dcda", - "x-ms-routing-request-id": "WESTUS2:20210726T005122Z:0618f624-96ef-412a-aea9-de151078dcda" + "x-ms-request-id": "18bfee3e-06ff-4ace-a48e-25ce7f5d7e68", + "x-ms-routing-request-id": "WESTUS2:20210810T193910Z:18bfee3e-06ff-4ace-a48e-25ce7f5d7e68" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -99,7 +99,8 @@ "Authorization": "Sanitized", "Content-Length": "39", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-dde12742a326644190bd996b8d039195-1d86fbe377bbcb42-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1de8ca6ff16afc375aa8a238b9711bfb", "x-ms-return-client-request-id": "true" }, @@ -112,15 +113,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:22 GMT", + "Date": "Tue, 10 Aug 2021 19:39:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c344ed0-5554-450b-8661-160ebba143e1", + "x-ms-correlation-request-id": "ee33dabb-e420-4638-8875-e9c8134e6541", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "3c344ed0-5554-450b-8661-160ebba143e1", - "x-ms-routing-request-id": "WESTUS2:20210726T005123Z:3c344ed0-5554-450b-8661-160ebba143e1" + "x-ms-request-id": "ee33dabb-e420-4638-8875-e9c8134e6541", + "x-ms-routing-request-id": "WESTUS2:20210810T193911Z:ee33dabb-e420-4638-8875-e9c8134e6541" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9828", diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/ArmClientTests(True)Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/ArmClientTests(True)Async.json index 97eb237dbb08a..9e4702078d866 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/ArmClientTests(True)Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/ArmClientTests(True)Async.json @@ -6,7 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "5a471502cc785e70e671623a1a452721", "x-ms-return-client-request-id": "true" }, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:11 GMT", + "Date": "Tue, 10 Aug 2021 18:13:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43eefd1e-8984-4b59-9822-a6dbbb27726e", + "x-ms-correlation-request-id": "b0c6291c-1199-4bb7-bf50-86680b38c17d", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-request-id": "43eefd1e-8984-4b59-9822-a6dbbb27726e", - "x-ms-routing-request-id": "WESTUS2:20210726T005212Z:43eefd1e-8984-4b59-9822-a6dbbb27726e" + "x-ms-request-id": "b0c6291c-1199-4bb7-bf50-86680b38c17d", + "x-ms-routing-request-id": "WESTUS:20210810T181307Z:b0c6291c-1199-4bb7-bf50-86680b38c17d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -51,8 +51,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-68d537d3d2a0224dafda3fff51cd0033-74c149852f1b2540-00", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-c9701ad3cab98149baf17a9f021921f7-07eef43e40c24042-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "7f043350e1a08916b2e6d331bf887312", "x-ms-return-client-request-id": "true" }, @@ -62,15 +62,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:12 GMT", + "Date": "Tue, 10 Aug 2021 18:13:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6ef7d03-7423-4425-b048-d04770ded39e", + "x-ms-correlation-request-id": "15e3d4d7-364b-44b8-b985-b77de91c155d", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "d6ef7d03-7423-4425-b048-d04770ded39e", - "x-ms-routing-request-id": "WESTUS2:20210726T005213Z:d6ef7d03-7423-4425-b048-d04770ded39e" + "x-ms-request-id": "15e3d4d7-364b-44b8-b985-b77de91c155d", + "x-ms-routing-request-id": "WESTUS:20210810T181307Z:15e3d4d7-364b-44b8-b985-b77de91c155d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -99,7 +99,8 @@ "Authorization": "Sanitized", "Content-Length": "39", "Content-Type": "application/json", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "traceparent": "00-114ba4fda1b8bb4aa779b8d44dd4d824-6abb619e34be0649-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-client-request-id": "1de8ca6ff16afc375aa8a238b9711bfb", "x-ms-return-client-request-id": "true" }, @@ -112,15 +113,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:12 GMT", + "Date": "Tue, 10 Aug 2021 18:13:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1e75226-3bb7-4872-ba30-934b73b235fc", + "x-ms-correlation-request-id": "207dc383-4094-4df6-9e69-38beec9c6615", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "e1e75226-3bb7-4872-ba30-934b73b235fc", - "x-ms-routing-request-id": "WESTUS2:20210726T005213Z:e1e75226-3bb7-4872-ba30-934b73b235fc" + "x-ms-request-id": "207dc383-4094-4df6-9e69-38beec9c6615", + "x-ms-routing-request-id": "WESTUS:20210810T181308Z:207dc383-4094-4df6-9e69-38beec9c6615" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9828", diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/ConstructWithInvalidSubscription.json similarity index 78% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests()Async.json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/ConstructWithInvalidSubscription.json index a559e59f32c4f..e73e4f67084ea 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/ConstructWithInvalidSubscription.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ed82218f3b5be08677d154bfc82678b3", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7d8fdd92866dc194f5fa8ed6bc0c2f04", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:13 GMT", + "Date": "Tue, 10 Aug 2021 19:39:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2638b79c-d15e-4bf4-ac9e-acb7fa9a8158", + "x-ms-correlation-request-id": "a8c39fac-d711-4512-8485-7cec07f4a019", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "2638b79c-d15e-4bf4-ac9e-acb7fa9a8158", - "x-ms-routing-request-id": "WESTUS2:20210726T005214Z:2638b79c-d15e-4bf4-ac9e-acb7fa9a8158" + "x-ms-request-id": "a8c39fac-d711-4512-8485-7cec07f4a019", + "x-ms-routing-request-id": "WESTUS2:20210810T193912Z:a8c39fac-d711-4512-8485-7cec07f4a019" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +47,7 @@ } ], "Variables": { - "RandomSeed": "525146284", + "RandomSeed": "1274397941", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests.json new file mode 100644 index 0000000000000..6c88f7fa23c9b --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests.json @@ -0,0 +1,54 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c2372e6fa22eda9a50ded4dd71583461", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Aug 2021 18:10:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "22373e11-6254-44b1-8531-983377ac1a63", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "22373e11-6254-44b1-8531-983377ac1a63", + "x-ms-routing-request-id": "WESTUS2:20210810T181035Z:22373e11-6254-44b1-8531-983377ac1a63" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + } + ], + "Variables": { + "RandomSeed": "1764408609", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsTestsAsync.json similarity index 78% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests().json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsTestsAsync.json index a786d285df133..2111d576845e4 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsTests().json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsTestsAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0eb3d93b133c8a58c719ba989fc8bd8f", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4d76384a04c0abe54ab871c52558644e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:23 GMT", + "Date": "Tue, 10 Aug 2021 18:13:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ad972a0-8e1e-42cd-a398-00dcee11161b", + "x-ms-correlation-request-id": "5f374a24-ac6e-4734-8a23-24747c2aa95f", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "5ad972a0-8e1e-42cd-a398-00dcee11161b", - "x-ms-routing-request-id": "WESTUS2:20210726T005124Z:5ad972a0-8e1e-42cd-a398-00dcee11161b" + "x-ms-request-id": "5f374a24-ac6e-4734-8a23-24747c2aa95f", + "x-ms-routing-request-id": "WESTUS:20210810T181308Z:5f374a24-ac6e-4734-8a23-24747c2aa95f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +47,7 @@ } ], "Variables": { - "RandomSeed": "173774393", + "RandomSeed": "268042834", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource.json similarity index 96% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource()Async.json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource.json index 6702718d8424d..0615b648b3115 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fff178d6ed5866066762532553bb0b30", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7002e2a0ca0ae2d8e772e5062627168e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:13 GMT", + "Date": "Tue, 10 Aug 2021 18:10:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d80a5ee7-80bc-4d11-9556-621f581f8ff8", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "d80a5ee7-80bc-4d11-9556-621f581f8ff8", - "x-ms-routing-request-id": "WESTUS2:20210726T005214Z:d80a5ee7-80bc-4d11-9556-621f581f8ff8" + "x-ms-correlation-request-id": "4288c8ee-3e09-4637-8ed6-85aaef74afc3", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "4288c8ee-3e09-4637-8ed6-85aaef74afc3", + "x-ms-routing-request-id": "WESTUS2:20210810T181035Z:4288c8ee-3e09-4637-8ed6-85aaef74afc3" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -51,8 +51,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5f5613df99ea89dbe0435f022d33f1a9", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3912fa933666b44426d1fa6dd1c3c49c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -61,15 +61,15 @@ "Cache-Control": "no-cache", "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:13 GMT", + "Date": "Tue, 10 Aug 2021 18:10:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4f35ac5-c09b-4882-a8bd-fd79a2515177", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "e4f35ac5-c09b-4882-a8bd-fd79a2515177", - "x-ms-routing-request-id": "WESTUS2:20210726T005214Z:e4f35ac5-c09b-4882-a8bd-fd79a2515177" + "x-ms-correlation-request-id": "6fc094fd-3054-4747-a792-83869f2ef146", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "6fc094fd-3054-4747-a792-83869f2ef146", + "x-ms-routing-request-id": "WESTUS2:20210810T181035Z:6fc094fd-3054-4747-a792-83869f2ef146" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -1243,8 +1243,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "681d18f8bcf8700deb324820f46c97ef", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bb03309fc4e0db7e00d08bced9d65524", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1253,16 +1253,16 @@ "Cache-Control": "no-cache", "Content-Length": "104", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:13 GMT", + "Date": "Tue, 10 Aug 2021 18:10:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e73f426d-08fa-4b47-a4d9-9887e28ecaf4", + "x-ms-correlation-request-id": "22c51493-01b7-42c6-ba9e-892571b8cf4b", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "e73f426d-08fa-4b47-a4d9-9887e28ecaf4", - "x-ms-routing-request-id": "WESTUS2:20210726T005214Z:e73f426d-08fa-4b47-a4d9-9887e28ecaf4" + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "22c51493-01b7-42c6-ba9e-892571b8cf4b", + "x-ms-routing-request-id": "WESTUS2:20210810T181035Z:22c51493-01b7-42c6-ba9e-892571b8cf4b" }, "ResponseBody": { "error": { @@ -1273,7 +1273,7 @@ } ], "Variables": { - "RandomSeed": "1176186604", + "RandomSeed": "731733848", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResourceAsync.json similarity index 96% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource().json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResourceAsync.json index c59059f45345b..c8d13b5f320d5 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResource().json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfInvalidResourceAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fff178d6ed5866066762532553bb0b30", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1b24673e3d306cc41eb07b27aef58b27", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:23 GMT", + "Date": "Tue, 10 Aug 2021 18:13:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "672ab986-9041-4dd8-8a75-5cdbe6496844", + "x-ms-correlation-request-id": "b16c061d-c58c-42bd-9bdb-b63af7bf3a95", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "672ab986-9041-4dd8-8a75-5cdbe6496844", - "x-ms-routing-request-id": "WESTUS2:20210726T005124Z:672ab986-9041-4dd8-8a75-5cdbe6496844" + "x-ms-request-id": "b16c061d-c58c-42bd-9bdb-b63af7bf3a95", + "x-ms-routing-request-id": "WESTUS:20210810T181309Z:b16c061d-c58c-42bd-9bdb-b63af7bf3a95" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -51,8 +51,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5f5613df99ea89dbe0435f022d33f1a9", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6c84397ed654bd79d533505a4eb83eb9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -61,15 +61,15 @@ "Cache-Control": "no-cache", "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:23 GMT", + "Date": "Tue, 10 Aug 2021 18:13:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cdccb27c-699f-4d4a-bc18-ec8da7993f51", + "x-ms-correlation-request-id": "80467c57-be6c-4bf6-bc06-fcd2d578f017", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "cdccb27c-699f-4d4a-bc18-ec8da7993f51", - "x-ms-routing-request-id": "WESTUS2:20210726T005124Z:cdccb27c-699f-4d4a-bc18-ec8da7993f51" + "x-ms-request-id": "80467c57-be6c-4bf6-bc06-fcd2d578f017", + "x-ms-routing-request-id": "WESTUS:20210810T181309Z:80467c57-be6c-4bf6-bc06-fcd2d578f017" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -1243,8 +1243,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "681d18f8bcf8700deb324820f46c97ef", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "69f8e7d732f016474ec87682f96b2232", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1253,16 +1253,16 @@ "Cache-Control": "no-cache", "Content-Length": "104", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:23 GMT", + "Date": "Tue, 10 Aug 2021 18:13:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fcfba24d-6ed3-499c-b37f-d2878d102ee0", + "x-ms-correlation-request-id": "5bb7c796-4316-4b44-8258-c8090d7eac3b", "x-ms-failure-cause": "gateway", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "fcfba24d-6ed3-499c-b37f-d2878d102ee0", - "x-ms-routing-request-id": "WESTUS2:20210726T005124Z:fcfba24d-6ed3-499c-b37f-d2878d102ee0" + "x-ms-request-id": "5bb7c796-4316-4b44-8258-c8090d7eac3b", + "x-ms-routing-request-id": "WESTUS:20210810T181309Z:5bb7c796-4316-4b44-8258-c8090d7eac3b" }, "ResponseBody": { "error": { @@ -1273,7 +1273,7 @@ } ], "Variables": { - "RandomSeed": "1176186604", + "RandomSeed": "499927117", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource.json similarity index 96% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource()Async.json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource.json index 5025ea16ca9e1..930d714009eb0 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "15cd3fd2bc0730150f9cc5c030808029", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "331eab245307a495a79db971989beafa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:14 GMT", + "Date": "Tue, 10 Aug 2021 18:11:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01bbfec1-d518-4fe5-ab05-d2afeff13571", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "01bbfec1-d518-4fe5-ab05-d2afeff13571", - "x-ms-routing-request-id": "WESTUS2:20210726T005214Z:01bbfec1-d518-4fe5-ab05-d2afeff13571" + "x-ms-correlation-request-id": "124ff3d3-65be-4b01-ae08-7bd59b6f7905", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "124ff3d3-65be-4b01-ae08-7bd59b6f7905", + "x-ms-routing-request-id": "WESTUS2:20210810T181149Z:124ff3d3-65be-4b01-ae08-7bd59b6f7905" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -51,8 +51,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bc343c692f023928889ec6859a769849", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "96ac9c29461a8fbf26ea981b3fe6af8c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -61,15 +61,15 @@ "Cache-Control": "no-cache", "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:14 GMT", + "Date": "Tue, 10 Aug 2021 18:11:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d840986-2e0d-4d3a-bc3a-876e9d3d47e2", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "7d840986-2e0d-4d3a-bc3a-876e9d3d47e2", - "x-ms-routing-request-id": "WESTUS2:20210726T005215Z:7d840986-2e0d-4d3a-bc3a-876e9d3d47e2" + "x-ms-correlation-request-id": "79e3c98f-aa16-48bd-896d-2c3e34bae417", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "79e3c98f-aa16-48bd-896d-2c3e34bae417", + "x-ms-routing-request-id": "WESTUS2:20210810T181149Z:79e3c98f-aa16-48bd-896d-2c3e34bae417" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -1243,8 +1243,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "94377ed6ad3d8024b8e3d077bdc8cea6", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6c8c8f78dde0773992ef44b8792cc4d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1253,15 +1253,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:14 GMT", + "Date": "Tue, 10 Aug 2021 18:11:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e06a7728-ca42-469c-83b0-d96ca04e9bba", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "e06a7728-ca42-469c-83b0-d96ca04e9bba", - "x-ms-routing-request-id": "WESTUS2:20210726T005215Z:e06a7728-ca42-469c-83b0-d96ca04e9bba" + "x-ms-correlation-request-id": "d7ae679f-3d61-4ffb-b8d6-661b0cce8a27", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "d7ae679f-3d61-4ffb-b8d6-661b0cce8a27", + "x-ms-routing-request-id": "WESTUS2:20210810T181149Z:d7ae679f-3d61-4ffb-b8d6-661b0cce8a27" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9828", @@ -1276,7 +1276,7 @@ } ], "Variables": { - "RandomSeed": "248817585", + "RandomSeed": "438858902", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResourceAsync.json similarity index 96% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource().json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResourceAsync.json index facaab7131df2..3f279ba2dab06 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResource().json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericOperationsWithListOfValidResourceAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "03b22673cd589bc632da34fa8ebeecdd", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ed3f06e790537133a93ef7bd71c1947c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:24 GMT", + "Date": "Tue, 10 Aug 2021 18:13:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d120567-f1bf-4132-9326-dfc3377fb8a8", + "x-ms-correlation-request-id": "3a184294-f75e-4d0b-93cb-36c36ebe3c90", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "4d120567-f1bf-4132-9326-dfc3377fb8a8", - "x-ms-routing-request-id": "WESTUS2:20210726T005124Z:4d120567-f1bf-4132-9326-dfc3377fb8a8" + "x-ms-request-id": "3a184294-f75e-4d0b-93cb-36c36ebe3c90", + "x-ms-routing-request-id": "WESTUS:20210810T181309Z:3a184294-f75e-4d0b-93cb-36c36ebe3c90" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -51,8 +51,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ba05ff9db8c329941c97cb3cfbd3cba6", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0efb64a24c709330a8dcea90a6b4364b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -61,15 +61,15 @@ "Cache-Control": "no-cache", "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:24 GMT", + "Date": "Tue, 10 Aug 2021 18:13:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39bac991-4e6d-41ac-8864-2828121b5f32", + "x-ms-correlation-request-id": "3a220662-af0f-4c11-bbec-0c09270ba10b", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-request-id": "39bac991-4e6d-41ac-8864-2828121b5f32", - "x-ms-routing-request-id": "WESTUS2:20210726T005125Z:39bac991-4e6d-41ac-8864-2828121b5f32" + "x-ms-request-id": "3a220662-af0f-4c11-bbec-0c09270ba10b", + "x-ms-routing-request-id": "WESTUS:20210810T181309Z:3a220662-af0f-4c11-bbec-0c09270ba10b" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -1243,8 +1243,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b060e2a71de0d9a31829b05fa7214486", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5c12d8abf022659df6526dd2b28f5c46", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1253,15 +1253,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:24 GMT", + "Date": "Tue, 10 Aug 2021 18:13:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf299d14-9fca-45e2-8877-1fb918789f8a", + "x-ms-correlation-request-id": "3d33da8e-011c-4bbe-9c11-d983587250c0", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "bf299d14-9fca-45e2-8877-1fb918789f8a", - "x-ms-routing-request-id": "WESTUS2:20210726T005125Z:bf299d14-9fca-45e2-8877-1fb918789f8a" + "x-ms-request-id": "3d33da8e-011c-4bbe-9c11-d983587250c0", + "x-ms-routing-request-id": "WESTUS:20210810T181309Z:3d33da8e-011c-4bbe-9c11-d983587250c0" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9828", @@ -1276,7 +1276,7 @@ } ], "Variables": { - "RandomSeed": "129329977", + "RandomSeed": "1300885708", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest.json new file mode 100644 index 0000000000000..ddbb9787aabfc --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest.json @@ -0,0 +1,54 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4377c031e07bd97785ccd03dcfc71e13", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Aug 2021 18:10:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7f088dee-7c77-4dce-87f8-35d898373a7d", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "7f088dee-7c77-4dce-87f8-35d898373a7d", + "x-ms-routing-request-id": "WESTUS2:20210810T181036Z:7f088dee-7c77-4dce-87f8-35d898373a7d" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + } + ], + "Variables": { + "RandomSeed": "2064245151", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTestAsync.json similarity index 78% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest()Async.json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTestAsync.json index 5e5b30bfba303..ce8d5e63a7b38 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTestAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4a2c43a9d7fdc394e066c1f2f03f3a9d", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ff089b17099de9e3adae64c4fb2a2728", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:14 GMT", + "Date": "Tue, 10 Aug 2021 18:13:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "80477068-b9ed-49f7-9520-c9c69c8fe0d8", + "x-ms-correlation-request-id": "6a1328fb-1272-443d-8138-5280b901aff8", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "80477068-b9ed-49f7-9520-c9c69c8fe0d8", - "x-ms-routing-request-id": "WESTUS2:20210726T005215Z:80477068-b9ed-49f7-9520-c9c69c8fe0d8" + "x-ms-request-id": "6a1328fb-1272-443d-8138-5280b901aff8", + "x-ms-routing-request-id": "WESTUS:20210810T181310Z:6a1328fb-1272-443d-8138-5280b901aff8" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +47,7 @@ } ], "Variables": { - "RandomSeed": "54454898", + "RandomSeed": "335995093", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId.json new file mode 100644 index 0000000000000..e900a23ecb05a --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId.json @@ -0,0 +1,54 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8eac8b04ca203605fed23e0a6e4a4d81", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Aug 2021 18:10:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2662d4f8-a36e-4fda-98ec-44323135ed66", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-request-id": "2662d4f8-a36e-4fda-98ec-44323135ed66", + "x-ms-routing-request-id": "WESTUS2:20210810T181037Z:2662d4f8-a36e-4fda-98ec-44323135ed66" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + } + ], + "Variables": { + "RandomSeed": "942513445", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullIdAsync.json similarity index 78% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId().json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullIdAsync.json index 6eaedb5d9ffad..3174bdbfbef28 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId().json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullIdAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5b36cce4d8b6440da9769a1e4abf1f94", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2bc02a0fa4fc7e01fd0f48f99cb2101a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:25 GMT", + "Date": "Tue, 10 Aug 2021 18:13:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c377865-4f14-4ef4-8d29-7dd4abe13da2", + "x-ms-correlation-request-id": "886b911f-8ca6-47be-b1e8-930bef8411ef", "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "2c377865-4f14-4ef4-8d29-7dd4abe13da2", - "x-ms-routing-request-id": "WESTUS2:20210726T005126Z:2c377865-4f14-4ef4-8d29-7dd4abe13da2" + "x-ms-request-id": "886b911f-8ca6-47be-b1e8-930bef8411ef", + "x-ms-routing-request-id": "WESTUS:20210810T181311Z:886b911f-8ca6-47be-b1e8-930bef8411ef" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +47,7 @@ } ], "Variables": { - "RandomSeed": "293300777", + "RandomSeed": "628740702", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds.json similarity index 78% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId()Async.json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds.json index d997af2be39fc..64e86463cb1ca 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullId()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d1fb875a5285579edf3d1821cd46642f", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "077879469b549cf4d867c1a1482e7469", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:15 GMT", + "Date": "Tue, 10 Aug 2021 18:10:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b5d932d-3405-4ba0-b4e2-926fa877d160", + "x-ms-correlation-request-id": "f5ba46b3-af17-480a-a116-9d34c79aee1d", "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "6b5d932d-3405-4ba0-b4e2-926fa877d160", - "x-ms-routing-request-id": "WESTUS2:20210726T005216Z:6b5d932d-3405-4ba0-b4e2-926fa877d160" + "x-ms-request-id": "f5ba46b3-af17-480a-a116-9d34c79aee1d", + "x-ms-routing-request-id": "WESTUS2:20210810T181037Z:f5ba46b3-af17-480a-a116-9d34c79aee1d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +47,7 @@ } ], "Variables": { - "RandomSeed": "2096503466", + "RandomSeed": "635754083", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIdsAsync.json similarity index 78% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds().json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIdsAsync.json index e4a6bdd937e2a..243109e481e2f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds().json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIdsAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5df048b56051266ed016766021651ef4", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b6076f99262d6a70c730caf6fe2bca7f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:25 GMT", + "Date": "Tue, 10 Aug 2021 18:13:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8562276d-4539-447a-9faa-32bb7f0264bc", + "x-ms-correlation-request-id": "d9b949c9-9d74-47ae-b90a-893af0913c0d", "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "8562276d-4539-447a-9faa-32bb7f0264bc", - "x-ms-routing-request-id": "WESTUS2:20210726T005126Z:8562276d-4539-447a-9faa-32bb7f0264bc" + "x-ms-request-id": "d9b949c9-9d74-47ae-b90a-893af0913c0d", + "x-ms-routing-request-id": "WESTUS:20210810T181312Z:d9b949c9-9d74-47ae-b90a-893af0913c0d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +47,7 @@ } ], "Variables": { - "RandomSeed": "1356406201", + "RandomSeed": "973021660", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests()Async.json deleted file mode 100644 index db7b8e35309e4..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests()Async.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2aa907ce87b7fb24b7c3375bf544f422", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:14 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f238c9b-140d-4e58-be63-701b478bd122", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "5f238c9b-140d-4e58-be63-701b478bd122", - "x-ms-routing-request-id": "WESTUS2:20210726T005215Z:5f238c9b-140d-4e58-be63-701b478bd122" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - } - ], - "Variables": { - "RandomSeed": "1468932213", - "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests.json similarity index 78% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest().json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests.json index 83ee628336fb0..c681df5a9bd3c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationEmptyTest().json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8f53a9e517d6796610db2498ee0aa671", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "11792d0ee0388b876ca6473f5937451c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:24 GMT", + "Date": "Tue, 10 Aug 2021 18:10:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f5e1d57-3c30-45a4-bc49-9efbe150e7cd", + "x-ms-correlation-request-id": "c0b3bca1-ee49-44ab-ae2a-713112a71976", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "3f5e1d57-3c30-45a4-bc49-9efbe150e7cd", - "x-ms-routing-request-id": "WESTUS2:20210726T005125Z:3f5e1d57-3c30-45a4-bc49-9efbe150e7cd" + "x-ms-request-id": "c0b3bca1-ee49-44ab-ae2a-713112a71976", + "x-ms-routing-request-id": "WESTUS2:20210810T181036Z:c0b3bca1-ee49-44ab-ae2a-713112a71976" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +47,7 @@ } ], "Variables": { - "RandomSeed": "1005163647", + "RandomSeed": "680198499", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTestsAsync.json similarity index 78% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests().json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTestsAsync.json index 527062c016ddc..6ce199c5d8cdf 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTests().json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsSingleIDTestsAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "60080ba5a2ac8da3888d338db503af96", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f1a6779ba806b6c261cb6bf1a0f175f9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:24 GMT", + "Date": "Tue, 10 Aug 2021 18:13:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe98ad84-d083-48bc-8935-0876f7b04395", + "x-ms-correlation-request-id": "6f96c7fc-2695-4331-aaf2-b73cb6f57417", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "fe98ad84-d083-48bc-8935-0876f7b04395", - "x-ms-routing-request-id": "WESTUS2:20210726T005125Z:fe98ad84-d083-48bc-8935-0876f7b04395" + "x-ms-request-id": "6f96c7fc-2695-4331-aaf2-b73cb6f57417", + "x-ms-routing-request-id": "WESTUS:20210810T181310Z:6f96c7fc-2695-4331-aaf2-b73cb6f57417" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +47,7 @@ } ], "Variables": { - "RandomSeed": "1274569526", + "RandomSeed": "1869960016", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource.json similarity index 96% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource()Async.json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource.json index 65dae9ab11373..40256d3281e03 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d9d4f9e773e1f4926221b6248fe6d67f", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "12d96bf6a6867cb7807ab5df490b444c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:14 GMT", + "Date": "Tue, 10 Aug 2021 18:10:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51c0fbd5-6c51-44ff-a757-f6efa4a424b5", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "51c0fbd5-6c51-44ff-a757-f6efa4a424b5", - "x-ms-routing-request-id": "WESTUS2:20210726T005215Z:51c0fbd5-6c51-44ff-a757-f6efa4a424b5" + "x-ms-correlation-request-id": "a2ef9c27-a230-4cb9-b3db-5a340f75c1da", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "a2ef9c27-a230-4cb9-b3db-5a340f75c1da", + "x-ms-routing-request-id": "WESTUS2:20210810T181036Z:a2ef9c27-a230-4cb9-b3db-5a340f75c1da" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -51,9 +51,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b868274196e00b40b8d91c5fe3deab86-aeb870211f96c74e-00", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "50b76f28d619e604b6f1153554fe8161", + "traceparent": "00-cfcb7a49b5cee7468aca896caaebc2fa-568b3d2f3a095f45-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d536b4bfefff3ff77b154c8b4f03136e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -62,15 +62,15 @@ "Cache-Control": "no-cache", "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:14 GMT", + "Date": "Tue, 10 Aug 2021 18:10:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6873301b-2bb1-4a17-b04f-f6bbf30a0ef7", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "6873301b-2bb1-4a17-b04f-f6bbf30a0ef7", - "x-ms-routing-request-id": "WESTUS2:20210726T005215Z:6873301b-2bb1-4a17-b04f-f6bbf30a0ef7" + "x-ms-correlation-request-id": "d8c7204d-57c3-4baf-a77d-60b2e896aa86", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "d8c7204d-57c3-4baf-a77d-60b2e896aa86", + "x-ms-routing-request-id": "WESTUS2:20210810T181036Z:d8c7204d-57c3-4baf-a77d-60b2e896aa86" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -1244,9 +1244,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-b868274196e00b40b8d91c5fe3deab86-8ef2eff50eab2840-00", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9ac66980cb80101e5fec3c01f035b843", + "traceparent": "00-cfcb7a49b5cee7468aca896caaebc2fa-e26c02454249014f-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f9e5d5ebc3621a765d66b621e1f42385", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1255,16 +1255,16 @@ "Cache-Control": "no-cache", "Content-Length": "97", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:14 GMT", + "Date": "Tue, 10 Aug 2021 18:10:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0556aa43-27d0-4e85-b0f4-d9c7e91c4cf6", + "x-ms-correlation-request-id": "14bb8b51-df55-4bdf-bb1a-2b088aa8ce74", "x-ms-failure-cause": "gateway", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "0556aa43-27d0-4e85-b0f4-d9c7e91c4cf6", - "x-ms-routing-request-id": "WESTUS2:20210726T005215Z:0556aa43-27d0-4e85-b0f4-d9c7e91c4cf6" + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "14bb8b51-df55-4bdf-bb1a-2b088aa8ce74", + "x-ms-routing-request-id": "WESTUS2:20210810T181037Z:14bb8b51-df55-4bdf-bb1a-2b088aa8ce74" }, "ResponseBody": { "error": { @@ -1275,7 +1275,7 @@ } ], "Variables": { - "RandomSeed": "967810164", + "RandomSeed": "1211751211", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResourceAsync.json similarity index 96% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource().json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResourceAsync.json index ba1f73ca8a743..8436694125196 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResource().json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleInvalidResourceAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8452f61dcff28bd37c929efad100d5bf", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "036f0ccb22502d726446d7f8365908a5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:25 GMT", + "Date": "Tue, 10 Aug 2021 18:13:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "149095a3-41ff-4d7a-93ae-0a4779cb384c", + "x-ms-correlation-request-id": "75e30237-c3ab-49b9-8c53-22fabae609f4", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "149095a3-41ff-4d7a-93ae-0a4779cb384c", - "x-ms-routing-request-id": "WESTUS2:20210726T005125Z:149095a3-41ff-4d7a-93ae-0a4779cb384c" + "x-ms-request-id": "75e30237-c3ab-49b9-8c53-22fabae609f4", + "x-ms-routing-request-id": "WESTUS:20210810T181310Z:75e30237-c3ab-49b9-8c53-22fabae609f4" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -51,9 +51,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-82742884b6638d45bc5da695bf7bce97-533b27271e871f47-00", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cd5989a57a2d5d59af0831da884c949a", + "traceparent": "00-dbc2c0c785671f438b38781da2a7d997-b70264da0ca1084b-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8713e0cc1cd6a4fd8c09354efa346bd7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -62,15 +62,15 @@ "Cache-Control": "no-cache", "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:25 GMT", + "Date": "Tue, 10 Aug 2021 18:13:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "41a39120-cb37-464c-ab43-a78abb535de9", + "x-ms-correlation-request-id": "0e15f6b7-a54a-402b-8022-de55cde2d7ff", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "41a39120-cb37-464c-ab43-a78abb535de9", - "x-ms-routing-request-id": "WESTUS2:20210726T005125Z:41a39120-cb37-464c-ab43-a78abb535de9" + "x-ms-request-id": "0e15f6b7-a54a-402b-8022-de55cde2d7ff", + "x-ms-routing-request-id": "WESTUS:20210810T181311Z:0e15f6b7-a54a-402b-8022-de55cde2d7ff" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -1244,9 +1244,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-82742884b6638d45bc5da695bf7bce97-bef6603a9a5b4e4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "256cf19cc1d06814db6a73585db96cf0", + "traceparent": "00-dbc2c0c785671f438b38781da2a7d997-e1ae36207b355e4f-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "30a9f1dd9a2e3aed2360deb00d4ee272", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1255,16 +1255,16 @@ "Cache-Control": "no-cache", "Content-Length": "97", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:25 GMT", + "Date": "Tue, 10 Aug 2021 18:13:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8bc224a7-9458-4068-9f74-163683b4bda2", + "x-ms-correlation-request-id": "fedcc479-b6f1-4216-9784-ce200810a024", "x-ms-failure-cause": "gateway", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "8bc224a7-9458-4068-9f74-163683b4bda2", - "x-ms-routing-request-id": "WESTUS2:20210726T005125Z:8bc224a7-9458-4068-9f74-163683b4bda2" + "x-ms-request-id": "fedcc479-b6f1-4216-9784-ce200810a024", + "x-ms-routing-request-id": "WESTUS:20210810T181311Z:fedcc479-b6f1-4216-9784-ce200810a024" }, "ResponseBody": { "error": { @@ -1275,7 +1275,7 @@ } ], "Variables": { - "RandomSeed": "960719231", + "RandomSeed": "905069401", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource.json similarity index 95% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource().json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource.json index 4bf68b1d9e3e2..f2dff52f398d7 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource().json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "abef9890c604fa01edaf32ba52b3ded4", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3a752ce9cf15097c0e3f5a4864f9364e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:25 GMT", + "Date": "Tue, 10 Aug 2021 18:12:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "49d1c5a3-4cab-46b0-b271-6d8e10d78064", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "49d1c5a3-4cab-46b0-b271-6d8e10d78064", - "x-ms-routing-request-id": "WESTUS2:20210726T005126Z:49d1c5a3-4cab-46b0-b271-6d8e10d78064" + "x-ms-correlation-request-id": "f6c2da2b-fcb9-461e-8863-e40d145ade5f", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "f6c2da2b-fcb9-461e-8863-e40d145ade5f", + "x-ms-routing-request-id": "WESTUS2:20210810T181221Z:f6c2da2b-fcb9-461e-8863-e40d145ade5f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -51,9 +51,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d58b1b4a6f55e94d860cb950ceb0de83-da863c52a09d9648-00", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f22e9a4c4b34bdbb899aaf6bacfa7af3", + "traceparent": "00-bcae47c24fb6114988527af6b92efd53-a37a91828c6c6546-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8ea9528fc941fe4764b795401df80fcf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -62,15 +62,15 @@ "Cache-Control": "no-cache", "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:25 GMT", + "Date": "Tue, 10 Aug 2021 18:12:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fde161e5-470e-42b2-afc5-30a4df087173", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "fde161e5-470e-42b2-afc5-30a4df087173", - "x-ms-routing-request-id": "WESTUS2:20210726T005126Z:fde161e5-470e-42b2-afc5-30a4df087173" + "x-ms-correlation-request-id": "ae8963c6-e8b2-4b0a-a1b4-296934ff0740", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "ae8963c6-e8b2-4b0a-a1b4-296934ff0740", + "x-ms-routing-request-id": "WESTUS2:20210810T181221Z:ae8963c6-e8b2-4b0a-a1b4-296934ff0740" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -1244,9 +1244,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-d58b1b4a6f55e94d860cb950ceb0de83-33820b72179f6e4e-00", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8de05a5389b3607407763250aa5af357", + "traceparent": "00-bcae47c24fb6114988527af6b92efd53-d4c87e8ad6181942-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4f0d8dc94c26ccdcfb208f7572416e32", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1255,15 +1255,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:25 GMT", + "Date": "Tue, 10 Aug 2021 18:12:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84fbd74e-d0d6-44b4-a0b5-d241791b31d8", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "84fbd74e-d0d6-44b4-a0b5-d241791b31d8", - "x-ms-routing-request-id": "WESTUS2:20210726T005126Z:84fbd74e-d0d6-44b4-a0b5-d241791b31d8" + "x-ms-correlation-request-id": "b97c1c33-615b-4492-b768-93738c99d2dd", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "b97c1c33-615b-4492-b768-93738c99d2dd", + "x-ms-routing-request-id": "WESTUS2:20210810T181221Z:b97c1c33-615b-4492-b768-93738c99d2dd" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9828", @@ -1278,7 +1278,7 @@ } ], "Variables": { - "RandomSeed": "1768768755", + "RandomSeed": "1517055720", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResourceAsync.json similarity index 96% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource()Async.json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResourceAsync.json index d21501557932b..80a4a4cb66910 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResource()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationsWithSingleValidResourceAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b951bc0c279a2c2239922c8cacec9003", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7d9538f6b8d2849252b0c93003102ebd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:15 GMT", + "Date": "Tue, 10 Aug 2021 18:13:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1609d57-8ec4-4bbb-b81e-ff9d74ab9aa5", + "x-ms-correlation-request-id": "3c61cbda-1ec7-4252-9c55-89624330213a", "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-request-id": "b1609d57-8ec4-4bbb-b81e-ff9d74ab9aa5", - "x-ms-routing-request-id": "WESTUS2:20210726T005215Z:b1609d57-8ec4-4bbb-b81e-ff9d74ab9aa5" + "x-ms-request-id": "3c61cbda-1ec7-4252-9c55-89624330213a", + "x-ms-routing-request-id": "WESTUS:20210810T181311Z:3c61cbda-1ec7-4252-9c55-89624330213a" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -51,9 +51,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3c4fa3301805864f8cf572e02b27a59d-082d9d63cbaa4d4f-00", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "395be66455874f1669c2f12b31a91758", + "traceparent": "00-bbf530fc0723ab4bb88ba0afbb6fd26a-210657c5bf456743-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "97b58e6e527bbdcf56477c299f162a8f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -62,15 +62,15 @@ "Cache-Control": "no-cache", "Content-Length": "16481", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:15 GMT", + "Date": "Tue, 10 Aug 2021 18:13:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4cfa120c-949d-4057-86a4-399fe2e1bb39", + "x-ms-correlation-request-id": "d9d5ccd4-c233-468b-ac40-e31746bee87d", "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "4cfa120c-949d-4057-86a4-399fe2e1bb39", - "x-ms-routing-request-id": "WESTUS2:20210726T005216Z:4cfa120c-949d-4057-86a4-399fe2e1bb39" + "x-ms-request-id": "d9d5ccd4-c233-468b-ac40-e31746bee87d", + "x-ms-routing-request-id": "WESTUS:20210810T181311Z:d9d5ccd4-c233-468b-ac40-e31746bee87d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Resources", @@ -1244,9 +1244,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-3c4fa3301805864f8cf572e02b27a59d-4c548c2bc066754a-00", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "22e807d2e26ee2084a54a792c274842f", + "traceparent": "00-bbf530fc0723ab4bb88ba0afbb6fd26a-1ee534cc71189243-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0ea13a73a6933adb48d08e8912a358f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -1255,15 +1255,15 @@ "Cache-Control": "no-cache", "Content-Length": "237", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:15 GMT", + "Date": "Tue, 10 Aug 2021 18:13:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "276d9527-3537-4780-aac7-9f23030f9ca6", + "x-ms-correlation-request-id": "b47290ad-f4b5-4277-be6d-84e1d5e53775", "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "276d9527-3537-4780-aac7-9f23030f9ca6", - "x-ms-routing-request-id": "WESTUS2:20210726T005216Z:276d9527-3537-4780-aac7-9f23030f9ca6" + "x-ms-request-id": "b47290ad-f4b5-4277-be6d-84e1d5e53775", + "x-ms-routing-request-id": "WESTUS:20210810T181311Z:b47290ad-f4b5-4277-be6d-84e1d5e53775" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRg-9828", @@ -1278,7 +1278,7 @@ } ], "Variables": { - "RandomSeed": "234803832", + "RandomSeed": "1129862751", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTests().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTests().json deleted file mode 100644 index e17233ff99d5c..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTests().json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9a3a1de13593d44a71c3d5f3bc5e683e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af0508ac-777a-4264-abdd-4eb60cadb0fd", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "af0508ac-777a-4264-abdd-4eb60cadb0fd", - "x-ms-routing-request-id": "WESTUS2:20210726T005127Z:af0508ac-777a-4264-abdd-4eb60cadb0fd" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - } - ], - "Variables": { - "RandomSeed": "1977607695", - "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTests.json similarity index 78% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds()Async.json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTests.json index 8753b5f172ae3..771a3904e854b 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourceOperationWithNullSetOfIds()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTests.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b1724a7f043f8f2db6a68e89e04c1eb4", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "07d2b72e5ea28d25ec332f422e017499", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:15 GMT", + "Date": "Tue, 10 Aug 2021 18:10:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebfe9ac9-9fb3-4ce8-b7f5-7f8fc21f7cb0", + "x-ms-correlation-request-id": "3dace2e7-62ab-4054-b6f7-c7340102ef8f", "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-request-id": "ebfe9ac9-9fb3-4ce8-b7f5-7f8fc21f7cb0", - "x-ms-routing-request-id": "WESTUS2:20210726T005216Z:ebfe9ac9-9fb3-4ce8-b7f5-7f8fc21f7cb0" + "x-ms-request-id": "3dace2e7-62ab-4054-b6f7-c7340102ef8f", + "x-ms-routing-request-id": "WESTUS2:20210810T181037Z:3dace2e7-62ab-4054-b6f7-c7340102ef8f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +47,7 @@ } ], "Variables": { - "RandomSeed": "1363497134", + "RandomSeed": "1167306795", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTests()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTestsAsync.json similarity index 78% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTests()Async.json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTestsAsync.json index 3fef7a390a6a9..b55171d87106f 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTests()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/GetGenericResourcesOperationsTestsAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "357170750c0ffc2170f3188efaa79fd8", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "840fdb7624ea1c80aefe41f8799bf187", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:15 GMT", + "Date": "Tue, 10 Aug 2021 18:13:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d32bcae2-5fc1-4383-a866-00987d907ba1", + "x-ms-correlation-request-id": "61f6a0d2-592f-458a-b577-9bcb9e9e1c01", "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-request-id": "d32bcae2-5fc1-4383-a866-00987d907ba1", - "x-ms-routing-request-id": "WESTUS2:20210726T005216Z:d32bcae2-5fc1-4383-a866-00987d907ba1" + "x-ms-request-id": "61f6a0d2-592f-458a-b577-9bcb9e9e1c01", + "x-ms-routing-request-id": "WESTUS:20210810T181312Z:61f6a0d2-592f-458a-b577-9bcb9e9e1c01" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +47,7 @@ } ], "Variables": { - "RandomSeed": "880551783", + "RandomSeed": "1736458655", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/TestArmClientParamCheck()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/TestArmClientParamCheck()Async.json deleted file mode 100644 index 9f48c6a60413a..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/TestArmClientParamCheck()Async.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "053e3b04d40dba15c7a3dd5c371ad85e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:52:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8df911fe-75e5-4413-a485-5c4b9d9f3bb5", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "8df911fe-75e5-4413-a485-5c4b9d9f3bb5", - "x-ms-routing-request-id": "WESTUS2:20210726T005216Z:8df911fe-75e5-4413-a485-5c4b9d9f3bb5" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - } - ], - "Variables": { - "RandomSeed": "2041229862", - "RESOURCE_MANAGER_URL": null, - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/TestArmClientParamCheck.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/TestArmClientParamCheck.json new file mode 100644 index 0000000000000..bd2b684db7a36 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/TestArmClientParamCheck.json @@ -0,0 +1,54 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6980fea57e86c6528beabe0394689aba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Aug 2021 18:09:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "edf1256f-8913-41a1-b6e5-298238aaab5d", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "edf1256f-8913-41a1-b6e5-298238aaab5d", + "x-ms-routing-request-id": "WESTUS2:20210810T180926Z:edf1256f-8913-41a1-b6e5-298238aaab5d" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + } + ], + "Variables": { + "RandomSeed": "1746004530", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/TestArmClientParamCheck().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/TestArmClientParamCheckAsync.json similarity index 78% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/TestArmClientParamCheck().json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/TestArmClientParamCheckAsync.json index fb0061bf60a8c..f915156c6e431 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/TestArmClientParamCheck().json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ArmClientTests/TestArmClientParamCheckAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210725.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "33c69a93f85bebf3c5f940f97a9e731c", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b04e59c44f78de514c58b99cf7bce8aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 26 Jul 2021 00:51:26 GMT", + "Date": "Tue, 10 Aug 2021 18:13:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5e57b34-f3ff-4ab8-a550-cb0c9d57011d", + "x-ms-correlation-request-id": "fe1448d3-7c3f-4d69-9acd-cc36aa186786", "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-request-id": "b5e57b34-f3ff-4ab8-a550-cb0c9d57011d", - "x-ms-routing-request-id": "WESTUS2:20210726T005127Z:b5e57b34-f3ff-4ab8-a550-cb0c9d57011d" + "x-ms-request-id": "fe1448d3-7c3f-4d69-9acd-cc36aa186786", + "x-ms-routing-request-id": "WESTUS:20210810T181312Z:fe1448d3-7c3f-4d69-9acd-cc36aa186786" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,7 +47,7 @@ } ], "Variables": { - "RandomSeed": "168997273", + "RandomSeed": "55198516", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/FeatureOperationsTests/NoDataValidation.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/FeatureOperationsTests/NoDataValidation.json new file mode 100644 index 0000000000000..cab006f2abcb1 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/FeatureOperationsTests/NoDataValidation.json @@ -0,0 +1,54 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210806.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "bde8c9ce3db6d9fbd4b4a1f33b822258", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Aug 2021 17:17:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9fe8ddbd-558d-4106-b023-91c0a1e4502f", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "9fe8ddbd-558d-4106-b023-91c0a1e4502f", + "x-ms-routing-request-id": "WESTUS2:20210809T171721Z:9fe8ddbd-558d-4106-b023-91c0a1e4502f" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + } + ], + "Variables": { + "RandomSeed": "1891552855", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/Update()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceContainerTests/ListWithExpand().json similarity index 81% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/Update()Async.json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceContainerTests/ListWithExpand().json index 0f309c28776ce..61716e9e76bb6 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/Update()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceContainerTests/ListWithExpand().json @@ -6,9 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-aa5adcdb43f70e42bbe95780448333e8-54db01ee4f244e4a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e0ed93493f62d037b3079715a40f4aa2", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8f9df496c973d8d962b335f6ce84011c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:32 GMT", + "Date": "Mon, 09 Aug 2021 18:01:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "419f09ce-7d96-4691-817a-7f6748c410da", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-request-id": "419f09ce-7d96-4691-817a-7f6748c410da", - "x-ms-routing-request-id": "WESTUS:20210712T223532Z:419f09ce-7d96-4691-817a-7f6748c410da" + "x-ms-correlation-request-id": "a8e0c92c-2eed-488b-89fe-b7b2267fce48", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "a8e0c92c-2eed-488b-89fe-b7b2267fce48", + "x-ms-routing-request-id": "WESTUS2:20210809T180117Z:a8e0c92c-2eed-488b-89fe-b7b2267fce48" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,16 +46,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9445?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9270?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "32", "Content-Type": "application/json", - "traceparent": "00-ae632babfe136e4bb4de0f2a17a17133-4867391cb1a8eb45-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "574a3a0a69c1d044aece24a6d0e7d0e4", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e0d08900f935f012568fb8b0223a14c0", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -68,19 +66,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:33 GMT", + "Date": "Mon, 09 Aug 2021 18:01:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ca25bf8-ec65-42be-bb64-6e816d9b884b", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "8ca25bf8-ec65-42be-bb64-6e816d9b884b", - "x-ms-routing-request-id": "WESTUS:20210712T223534Z:8ca25bf8-ec65-42be-bb64-6e816d9b884b" + "x-ms-correlation-request-id": "acc286bf-7db8-43dc-9d26-77c821c95679", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "acc286bf-7db8-43dc-9d26-77c821c95679", + "x-ms-routing-request-id": "WESTUS2:20210809T180117Z:acc286bf-7db8-43dc-9d26-77c821c95679" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9445", - "name": "testrg9445", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9270", + "name": "testrg9270", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -95,26 +93,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-7cc4c48c6efcb74287f95858cee0c564-4ab4628dcbd80c4a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ae2e4b5a381fb5e427f56524a0036dd1", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4f43c9dee7646502ecf1df2af79ef0cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "54667", + "Content-Length": "54810", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:34 GMT", + "Date": "Mon, 09 Aug 2021 18:01:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4a11e3b-ec6f-4065-a0f0-76e99ac78589", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-request-id": "f4a11e3b-ec6f-4065-a0f0-76e99ac78589", - "x-ms-routing-request-id": "WESTUS:20210712T223534Z:f4a11e3b-ec6f-4065-a0f0-76e99ac78589" + "x-ms-correlation-request-id": "7f768d82-ec20-4924-8e69-e0f094550c0f", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "7f768d82-ec20-4924-8e69-e0f094550c0f", + "x-ms-routing-request-id": "WESTUS2:20210809T180117Z:7f768d82-ec20-4924-8e69-e0f094550c0f" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -1816,6 +1813,9 @@ "resourceType": "locations/edgeZones", "locations": [], "apiVersions": [ + "2021-07-01", + "2021-04-01", + "2021-03-01", "2020-12-01" ], "capabilities": "None" @@ -1860,6 +1860,9 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", + "2021-04-01", + "2021-03-01", "2020-12-01" ], "capabilities": "None" @@ -2453,6 +2456,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2503,6 +2507,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2553,6 +2558,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2603,6 +2609,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2653,6 +2660,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -4223,16 +4231,118 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9445/providers/Microsoft.Compute/availabilitySets/test-aset9967?api-version=2021-07-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9270/providers/Microsoft.Compute/availabilitySets/test-aset790?api-version=2021-07-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "131", "Content-Type": "application/json", - "traceparent": "00-7cc4c48c6efcb74287f95858cee0c564-b013d0df8b510045-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "768ab4768866a82910b3711229e220c7", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3126ae9a61938bfa9f1d3921273f7921", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "westus2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "406", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Aug 2021 18:01:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "3126ae9a61938bfa9f1d3921273f7921", + "x-ms-correlation-request-id": "d6158e09-ba9e-4f82-87e0-a9478ec47d8c", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "1ec97500-95c6-47d3-859c-b1e65646b623", + "x-ms-routing-request-id": "WESTUS2:20210809T180118Z:d6158e09-ba9e-4f82-87e0-a9478ec47d8c" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset790\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9270/providers/Microsoft.Compute/availabilitySets/test-aset790\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg5374?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "32", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ed8b88e4ad8fce7cb8b047aee13dac78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Aug 2021 18:01:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "edc38b18-6fe0-42af-a5c2-cf533da18ea2", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "edc38b18-6fe0-42af-a5c2-cf533da18ea2", + "x-ms-routing-request-id": "WESTUS2:20210809T180118Z:edc38b18-6fe0-42af-a5c2-cf533da18ea2" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5374", + "name": "testrg5374", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5374/providers/Microsoft.Compute/availabilitySets/test-aset3451?api-version=2021-07-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "131", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b8f86af5fdf38412641818f258d9be48", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4251,7 +4361,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:35 GMT", + "Date": "Mon, 09 Aug 2021 18:01:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4260,17 +4370,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "768ab4768866a82910b3711229e220c7", - "x-ms-correlation-request-id": "14cabab8-e179-4411-ac2f-8cf809cc3e7b", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;171,Microsoft.Compute/PutVM30Min;1131", - "x-ms-ratelimit-remaining-subscription-writes": "1179", - "x-ms-request-id": "bbbd4dee-0b64-4c1a-972e-bdf1d7ce45bb", - "x-ms-routing-request-id": "WESTUS:20210712T223536Z:14cabab8-e179-4411-ac2f-8cf809cc3e7b" + "x-ms-client-request-id": "b8f86af5fdf38412641818f258d9be48", + "x-ms-correlation-request-id": "a27f49f1-0786-4c76-83ac-242301082b9e", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "08323b82-4260-4e82-bb5d-819b5f07ab28", + "x-ms-routing-request-id": "WESTUS2:20210809T180118Z:a27f49f1-0786-4c76-83ac-242301082b9e" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset9967\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9445/providers/Microsoft.Compute/availabilitySets/test-aset9967\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset3451\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5374/providers/Microsoft.Compute/availabilitySets/test-aset3451\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4285,31 +4395,30 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=createdTime%2CchangedTime%2CprovisioningState\u0026api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=createdTime\u0026api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-ce5da07662cfe64482e4a0e10ae8ec0d-1f764a9dae3c8c44-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "325ad4b76d46d2f221869e6cc7d28b45", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f4cf748f0ef88bf078682a9564dc5fd6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "17960", + "Content-Length": "11795", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:35 GMT", + "Date": "Mon, 09 Aug 2021 18:01:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ed4db06-7777-4cbd-a9b5-2d62a6d3aaef", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-request-id": "4ed4db06-7777-4cbd-a9b5-2d62a6d3aaef", - "x-ms-routing-request-id": "WESTUS:20210712T223536Z:4ed4db06-7777-4cbd-a9b5-2d62a6d3aaef" + "x-ms-correlation-request-id": "37768d35-46ec-4b48-912e-7d39044ed603", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "37768d35-46ec-4b48-912e-7d39044ed603", + "x-ms-routing-request-id": "WESTUS2:20210809T180118Z:37768d35-46ec-4b48-912e-7d39044ed603" }, "ResponseBody": { "value": [ @@ -4318,36 +4427,28 @@ "name": "ema7925a82c", "type": "Microsoft.ClassicStorage/storageAccounts", "location": "westus", - "createdTime": "2015-02-20T19:43:15.0632092Z", - "changedTime": "2021-07-12T11:11:34.9848325Z", - "provisioningState": "Succeeded" + "createdTime": "2015-02-20T19:43:15.0632092Z" }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3285b8sydlcm1", "name": "portalvhds3285b8sydlcm1", "type": "Microsoft.ClassicStorage/storageAccounts", "location": "eastus", - "createdTime": "2014-05-24T04:55:36.974557Z", - "changedTime": "2021-07-12T13:11:37.9698445Z", - "provisioningState": "Succeeded" + "createdTime": "2014-05-24T04:55:36.974557Z" }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/storagetestghqqxrrqnr", "name": "storagetestghqqxrrqnr", "type": "Microsoft.ClassicStorage/storageAccounts", "location": "eastasia", - "createdTime": "2014-10-23T23:54:52.3824535Z", - "changedTime": "2021-07-12T11:11:41.8364976Z", - "provisioningState": "Succeeded" + "createdTime": "2014-10-23T23:54:52.3824535Z" }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds2wdcfvkv5phc9", "name": "portalvhds2wdcfvkv5phc9", "type": "Microsoft.ClassicStorage/storageAccounts", "location": "westus", - "createdTime": "2014-05-24T04:55:34.6927361Z", - "changedTime": "2021-07-12T11:11:39.8951663Z", - "provisioningState": "Succeeded" + "createdTime": "2014-05-24T04:55:34.6927361Z" }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2", @@ -4355,8 +4456,6 @@ "type": "Microsoft.ManagedIdentity/userAssignedIdentities", "location": "westus2", "createdTime": "2021-03-18T21:55:37.839206Z", - "changedTime": "2021-03-18T22:05:38.7997788Z", - "provisioningState": "Succeeded", "tags": {} }, { @@ -4365,8 +4464,6 @@ "type": "Microsoft.ManagedIdentity/userAssignedIdentities", "location": "eastus", "createdTime": "2021-04-27T07:14:50.9621072Z", - "changedTime": "2021-04-27T07:24:53.4570423Z", - "provisioningState": "Succeeded", "tags": {} }, { @@ -4375,8 +4472,6 @@ "type": "Microsoft.ManagedIdentity/userAssignedIdentities", "location": "westus", "createdTime": "2021-06-17T22:32:45.5111313Z", - "changedTime": "2021-06-17T22:42:48.1625939Z", - "provisioningState": "Succeeded", "tags": {} }, { @@ -4389,588 +4484,749 @@ "type": "None" }, "createdTime": "2021-07-07T06:51:11.1964393Z", - "changedTime": "2021-07-07T07:03:04.9723107Z", - "provisioningState": "Succeeded", "tags": { "defaultExperience": "Azure Cosmos DB for MongoDB API", "hidden-cosmos-mmspecial": "" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7572/providers/Microsoft.Compute/availabilitySets/test-aset460", - "name": "test-aset460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus2", + "name": "AzSecPackAutoConfigUA-eastus2", + "type": "Microsoft.ManagedIdentity/userAssignedIdentities", + "location": "eastus2", + "createdTime": "2021-07-19T07:49:19.9955718Z", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/microsoft.insights/components/track2mlappinsight", + "name": "track2mlappinsight", + "type": "microsoft.insights/components", + "kind": "web", "location": "westus2", - "createdTime": "2021-07-09T07:11:04.6951444Z", - "changedTime": "2021-07-09T07:21:07.1849109Z", - "provisioningState": "Succeeded", + "createdTime": "2021-08-05T08:22:29.2001751Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481/providers/Microsoft.Compute/availabilitySets/test-aset5192", - "name": "test-aset5192", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/Microsoft.KeyVault/vaults/track2mltestkeyvault", + "name": "track2mltestkeyvault", + "type": "Microsoft.KeyVault/vaults", + "location": "westus2", + "createdTime": "2021-08-05T08:23:50.7906578Z", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/Microsoft.Storage/storageAccounts/track2mlstorage", + "name": "track2mlstorage", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_LRS", + "tier": "Standard" }, + "kind": "StorageV2", "location": "westus2", - "createdTime": "2021-07-09T07:11:07.6835744Z", - "changedTime": "2021-07-09T07:21:10.3067676Z", - "provisioningState": "Succeeded", + "createdTime": "2021-08-05T08:26:30.047889Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789/providers/Microsoft.Compute/availabilitySets/test-aset1315", - "name": "test-aset1315", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/Microsoft.ContainerRegistry/registries/track2mlacr", + "name": "track2mlacr", + "type": "Microsoft.ContainerRegistry/registries", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-09T17:59:44.4287135Z", - "changedTime": "2021-07-09T18:09:46.8976092Z", - "provisioningState": "Succeeded", + "createdTime": "2021-08-05T08:27:48.4577997Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656/providers/Microsoft.Compute/availabilitySets/test-aset8673", - "name": "test-aset8673", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/microsoft.insights/actiongroups/Application Insights Smart Detection", + "name": "Application Insights Smart Detection", + "type": "microsoft.insights/actiongroups", + "location": "global", + "createdTime": "2021-08-05T08:32:43.8569531Z" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure Anomalies - track2mlappinsight", + "name": "Failure Anomalies - track2mlappinsight", + "type": "microsoft.alertsmanagement/smartDetectorAlertRules", + "location": "global", + "createdTime": "2021-08-05T08:32:45.3526028Z", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-WorkspaceConnectionOperations874/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-09T17:59:48.7922406Z", - "changedTime": "2021-07-09T18:09:50.8818072Z", - "provisioningState": "Succeeded", + "identity": { + "principalId": "7c450693-45d2-4b0c-9cb8-87c48c0e8b58", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "createdTime": "2021-08-09T02:28:11.9393591Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg255/providers/Microsoft.Compute/availabilitySets/test-aset8503", - "name": "test-aset8503", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-WorkspaceConnectionOperations468/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:34:57.3549019Z", - "changedTime": "2021-07-12T22:34:58.2726502Z", - "provisioningState": "Succeeded", + "identity": { + "principalId": "ef2e32b1-ff22-4422-9186-265a8b545a39", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "createdTime": "2021-08-09T02:32:12.2614665Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315", - "name": "test-aset315", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-1982/providers/Microsoft.Storage/storageAccounts/aaa1229", + "name": "aaa1229", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.4424611Z", - "changedTime": "2021-07-12T22:34:59.0409998Z", - "provisioningState": "Succeeded", + "kind": "Storage", + "location": "eastus2", + "createdTime": "2021-08-09T06:24:45.524037Z", "tags": { - "key": "value" + "key1": "value1", + "key2": "value2" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611", - "name": "test-aset611", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2856/providers/Microsoft.Storage/storageAccounts/aaa9996", + "name": "aaa9996", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.6903508Z", - "changedTime": "2021-07-12T22:34:59.6584863Z", - "provisioningState": "Succeeded", + "kind": "Storage", + "location": "eastus2", + "createdTime": "2021-08-09T06:34:10.1726467Z", "tags": { - "key": "value" + "key1": "value1", + "key2": "value2" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803/providers/Microsoft.Compute/availabilitySets/test-aset6081", - "name": "test-aset6081", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-971/providers/Microsoft.Storage/storageAccounts/aaa9634", + "name": "aaa9634", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:59.7465833Z", - "changedTime": "2021-07-12T22:35:01.6411346Z", - "provisioningState": "Succeeded", + "kind": "Storage", + "location": "eastus2", + "createdTime": "2021-08-09T06:45:58.8129464Z", "tags": { - "key": "value" + "key1": "value1", + "key2": "value2" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471/providers/Microsoft.Compute/availabilitySets/test-aset242", - "name": "test-aset242", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-4197/providers/Microsoft.Storage/storageAccounts/aaa5198", + "name": "aaa5198", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:00.3333258Z", - "changedTime": "2021-07-12T22:35:01.8087328Z", - "provisioningState": "Succeeded", + "kind": "Storage", + "location": "eastus2", + "createdTime": "2021-08-09T07:14:09.6864157Z", "tags": { - "key": "value" + "key1": "value1", + "key2": "value2" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623", - "name": "test-aset623", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5702/providers/Microsoft.Storage/storageAccounts/teststorage5522", + "name": "teststorage5522", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:01.7676172Z", - "changedTime": "2021-07-12T22:35:02.5524329Z", - "provisioningState": "Succeeded", - "tags": {} + "kind": "Storage", + "location": "eastus2", + "createdTime": "2021-08-09T07:35:58.6946875Z", + "tags": { + "key1": "value1", + "key2": "value2" + } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7017/providers/Microsoft.Compute/availabilitySets/test-aset1345", - "name": "test-aset1345", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-4101/providers/Microsoft.Storage/storageAccounts/teststorage1208", + "name": "teststorage1208", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:05.657807Z", - "changedTime": "2021-07-12T22:35:06.1329684Z", - "provisioningState": "Succeeded", - "tags": {} + "kind": "Storage", + "location": "eastus2", + "createdTime": "2021-08-09T08:55:03.5139334Z", + "tags": { + "key1": "value1", + "key2": "value2" + } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3267/providers/Microsoft.Compute/availabilitySets/test-aset7445", - "name": "test-aset7445", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-WorkspaceConnectionOperations8653/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:06.5404471Z", - "changedTime": "2021-07-12T22:35:07.0092802Z", - "provisioningState": "Succeeded", + "identity": { + "principalId": "a4a72e22-1946-40e2-8e3e-5ab2ba2a2e36", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "createdTime": "2021-08-09T13:41:10.2195317Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748", - "name": "test-aset4748", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-WorkspaceConnectionOperations2816/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:06.9214478Z", - "changedTime": "2021-07-12T22:35:09.7711081Z", - "provisioningState": "Succeeded", + "identity": { + "principalId": "77e751ff-874c-48e8-bac3-2cbf7813c646", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "createdTime": "2021-08-09T13:44:19.9716149Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454", - "name": "test-aset1454", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-OnlineEndpointTrackedResourceOperations4230/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:08.9137705Z", - "changedTime": "2021-07-12T22:35:12.2634382Z", - "provisioningState": "Succeeded", + "identity": { + "principalId": "a8d935d3-a089-4bc1-8c33-be4b56356e3d", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "createdTime": "2021-08-09T15:18:16.2330914Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6500/providers/Microsoft.Compute/availabilitySets/test-aset102", - "name": "test-aset102", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-OnlineEndpointTrackedResourceOperations8203/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:09.5159536Z", - "changedTime": "2021-07-12T22:35:10.323048Z", - "provisioningState": "Succeeded", + "identity": { + "principalId": "52d8c054-b1fd-4784-899c-05be8f26e3c0", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "createdTime": "2021-08-09T15:19:24.2343186Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9664/providers/Microsoft.Compute/availabilitySets/test-aset893", - "name": "test-aset893", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9270/providers/Microsoft.Compute/availabilitySets/test-aset790", + "name": "test-aset790", "type": "Microsoft.Compute/availabilitySets", "sku": { "name": "Aligned" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:10.0681296Z", - "changedTime": "2021-07-12T22:35:10.5692018Z", - "provisioningState": "Succeeded", + "createdTime": "2021-08-09T18:01:18.0661458Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8035/providers/Microsoft.Compute/availabilitySets/test-aset886", - "name": "test-aset886", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5374/providers/Microsoft.Compute/availabilitySets/test-aset3451", + "name": "test-aset3451", "type": "Microsoft.Compute/availabilitySets", "sku": { "name": "Aligned" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:10.6852163Z", - "changedTime": "2021-07-12T22:35:11.2486836Z", - "provisioningState": "Succeeded", + "createdTime": "2021-08-09T18:01:18.7038326Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9990/providers/Microsoft.Compute/availabilitySets/test-aset2867", - "name": "test-aset2867", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/cleanupService/providers/Microsoft.Automation/automationAccounts/cleanupResourcegroup", + "name": "cleanupResourcegroup", + "type": "Microsoft.Automation/automationAccounts", + "location": "eastus2", + "createdTime": "2021-08-02T08:50:19.4622473Z", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/cleanupService/providers/Microsoft.Automation/automationAccounts/cleanupResourcegroup/runbooks/cleanupRunbook", + "name": "cleanupResourcegroup/cleanupRunbook", + "type": "Microsoft.Automation/automationAccounts/runbooks", + "location": "eastus2", + "createdTime": "2021-08-02T09:03:10.4838434Z", + "tags": {} + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=changedTime%2CprovisioningState\u0026api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f98866888af44f8b8acf4fd30fbd9279", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "12789", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Aug 2021 18:01:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "deb38816-1a2f-463c-8835-ee7e0e13b8b4", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "deb38816-1a2f-463c-8835-ee7e0e13b8b4", + "x-ms-routing-request-id": "WESTUS2:20210809T180118Z:deb38816-1a2f-463c-8835-ee7e0e13b8b4" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2/providers/Microsoft.ClassicStorage/storageAccounts/ema7925a82c", + "name": "ema7925a82c", + "type": "Microsoft.ClassicStorage/storageAccounts", + "location": "westus", + "changedTime": "2021-07-12T11:11:34.9848325Z", + "provisioningState": "Succeeded" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3285b8sydlcm1", + "name": "portalvhds3285b8sydlcm1", + "type": "Microsoft.ClassicStorage/storageAccounts", + "location": "eastus", + "changedTime": "2021-07-12T13:11:37.9698445Z", + "provisioningState": "Succeeded" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/storagetestghqqxrrqnr", + "name": "storagetestghqqxrrqnr", + "type": "Microsoft.ClassicStorage/storageAccounts", + "location": "eastasia", + "changedTime": "2021-07-12T11:11:41.8364976Z", + "provisioningState": "Succeeded" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds2wdcfvkv5phc9", + "name": "portalvhds2wdcfvkv5phc9", + "type": "Microsoft.ClassicStorage/storageAccounts", + "location": "westus", + "changedTime": "2021-07-12T11:11:39.8951663Z", + "provisioningState": "Succeeded" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2", + "name": "AzSecPackAutoConfigUA-westus2", + "type": "Microsoft.ManagedIdentity/userAssignedIdentities", "location": "westus2", - "createdTime": "2021-07-12T22:35:11.1451381Z", - "changedTime": "2021-07-12T22:35:11.8315196Z", + "changedTime": "2021-03-18T22:05:38.7997788Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460", - "name": "test-aset1460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus", + "name": "AzSecPackAutoConfigUA-eastus", + "type": "Microsoft.ManagedIdentity/userAssignedIdentities", + "location": "eastus", + "changedTime": "2021-04-27T07:24:53.4570423Z", + "provisioningState": "Succeeded", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus", + "name": "AzSecPackAutoConfigUA-westus", + "type": "Microsoft.ManagedIdentity/userAssignedIdentities", + "location": "westus", + "changedTime": "2021-06-17T22:42:48.1625939Z", + "provisioningState": "Succeeded", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/sdkpipeline/providers/Microsoft.DocumentDb/databaseAccounts/sdkcodegen", + "name": "sdkcodegen", + "type": "Microsoft.DocumentDb/databaseAccounts", + "kind": "MongoDB", + "location": "westus", + "identity": { + "type": "None" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:13.3985808Z", - "changedTime": "2021-07-12T22:35:16.5705084Z", + "changedTime": "2021-07-07T07:03:04.9723107Z", "provisioningState": "Succeeded", "tags": { - "key": "value" + "defaultExperience": "Azure Cosmos DB for MongoDB API", + "hidden-cosmos-mmspecial": "" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9956/providers/Microsoft.Compute/availabilitySets/test-aset4461", - "name": "test-aset4461", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus2", + "name": "AzSecPackAutoConfigUA-eastus2", + "type": "Microsoft.ManagedIdentity/userAssignedIdentities", + "location": "eastus2", + "changedTime": "2021-07-19T07:59:26.2352389Z", + "provisioningState": "Succeeded", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/microsoft.insights/components/track2mlappinsight", + "name": "track2mlappinsight", + "type": "microsoft.insights/components", + "kind": "web", "location": "westus2", - "createdTime": "2021-07-12T22:35:15.3435773Z", - "changedTime": "2021-07-12T22:35:15.7934685Z", + "changedTime": "2021-08-05T08:32:38.1279741Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2893/providers/Microsoft.Compute/availabilitySets/test-aset3357", - "name": "test-aset3357", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/Microsoft.KeyVault/vaults/track2mltestkeyvault", + "name": "track2mltestkeyvault", + "type": "Microsoft.KeyVault/vaults", "location": "westus2", - "createdTime": "2021-07-12T22:35:16.1246705Z", - "changedTime": "2021-07-12T22:35:16.5998399Z", + "changedTime": "2021-08-05T08:33:56.9954341Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9956/providers/Microsoft.Compute/availabilitySets/test-aset6019", - "name": "test-aset6019", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/Microsoft.Storage/storageAccounts/track2mlstorage", + "name": "track2mlstorage", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_LRS", + "tier": "Standard" }, + "kind": "StorageV2", "location": "westus2", - "createdTime": "2021-07-12T22:35:16.4545024Z", - "changedTime": "2021-07-12T22:35:16.9005606Z", + "changedTime": "2021-08-05T08:37:07.5078969Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139/providers/Microsoft.Compute/availabilitySets/test-aset6457", - "name": "test-aset6457", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/Microsoft.ContainerRegistry/registries/track2mlacr", + "name": "track2mlacr", + "type": "Microsoft.ContainerRegistry/registries", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:16.6846369Z", - "changedTime": "2021-07-12T22:35:19.0599999Z", + "changedTime": "2021-08-05T08:37:52.9025663Z", "provisioningState": "Succeeded", - "tags": { - "key": "value" - } + "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2893/providers/Microsoft.Compute/availabilitySets/test-aset4614", - "name": "test-aset4614", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/microsoft.insights/actiongroups/Application Insights Smart Detection", + "name": "Application Insights Smart Detection", + "type": "microsoft.insights/actiongroups", + "location": "global", + "changedTime": "2021-08-05T08:42:44.6571561Z", + "provisioningState": "Succeeded" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure Anomalies - track2mlappinsight", + "name": "Failure Anomalies - track2mlappinsight", + "type": "microsoft.alertsmanagement/smartDetectorAlertRules", + "location": "global", + "changedTime": "2021-08-05T08:42:46.9826961Z", + "provisioningState": "Succeeded", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-WorkspaceConnectionOperations874/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:17.6726885Z", - "changedTime": "2021-07-12T22:35:18.1501326Z", + "identity": { + "principalId": "7c450693-45d2-4b0c-9cb8-87c48c0e8b58", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "changedTime": "2021-08-09T02:38:37.6839578Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1144/providers/Microsoft.Compute/availabilitySets/test-aset6937", - "name": "test-aset6937", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-WorkspaceConnectionOperations468/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:18.0805643Z", - "changedTime": "2021-07-12T22:35:18.5242545Z", + "identity": { + "principalId": "ef2e32b1-ff22-4422-9186-265a8b545a39", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "changedTime": "2021-08-09T02:43:29.7697384Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5925/providers/Microsoft.Compute/availabilitySets/test-aset360", - "name": "test-aset360", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-1982/providers/Microsoft.Storage/storageAccounts/aaa1229", + "name": "aaa1229", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:19.8307393Z", - "changedTime": "2021-07-12T22:35:20.2900404Z", + "kind": "Storage", + "location": "eastus2", + "changedTime": "2021-08-09T06:35:13.6276767Z", "provisioningState": "Succeeded", - "tags": {} + "tags": { + "key1": "value1", + "key2": "value2" + } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6374/providers/Microsoft.Compute/availabilitySets/test-aset5069", - "name": "test-aset5069", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2856/providers/Microsoft.Storage/storageAccounts/aaa9996", + "name": "aaa9996", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:22.7203564Z", - "changedTime": "2021-07-12T22:35:23.1761653Z", + "kind": "Storage", + "location": "eastus2", + "changedTime": "2021-08-09T06:44:40.626445Z", "provisioningState": "Succeeded", - "tags": {} + "tags": { + "key1": "value1", + "key2": "value2" + } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6377/providers/Microsoft.Compute/availabilitySets/test-aset9023", - "name": "test-aset9023", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-971/providers/Microsoft.Storage/storageAccounts/aaa9634", + "name": "aaa9634", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:23.8634822Z", - "changedTime": "2021-07-12T22:35:26.7124832Z", + "kind": "Storage", + "location": "eastus2", + "changedTime": "2021-08-09T06:56:28.8662363Z", "provisioningState": "Succeeded", - "tags": {} + "tags": { + "key1": "value1", + "key2": "value2" + } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8472/providers/Microsoft.Compute/availabilitySets/test-aset7846", - "name": "test-aset7846", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-4197/providers/Microsoft.Storage/storageAccounts/aaa5198", + "name": "aaa5198", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:24.0879677Z", - "changedTime": "2021-07-12T22:35:24.5333857Z", + "kind": "Storage", + "location": "eastus2", + "changedTime": "2021-08-09T07:24:38.8714581Z", "provisioningState": "Succeeded", - "tags": {} + "tags": { + "key1": "value1", + "key2": "value2" + } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3934/providers/Microsoft.Compute/availabilitySets/test-aset4013", - "name": "test-aset4013", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5702/providers/Microsoft.Storage/storageAccounts/teststorage5522", + "name": "teststorage5522", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:25.1960009Z", - "changedTime": "2021-07-12T22:35:29.2418126Z", + "kind": "Storage", + "location": "eastus2", + "changedTime": "2021-08-09T07:46:26.8281065Z", "provisioningState": "Succeeded", - "tags": {} + "tags": { + "key1": "value1", + "key2": "value2" + } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6907/providers/Microsoft.Compute/availabilitySets/test-aset2758", - "name": "test-aset2758", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-4101/providers/Microsoft.Storage/storageAccounts/teststorage1208", + "name": "teststorage1208", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:25.2990585Z", - "changedTime": "2021-07-12T22:35:27.0221818Z", + "kind": "Storage", + "location": "eastus2", + "changedTime": "2021-08-09T09:05:33.6998018Z", "provisioningState": "Succeeded", "tags": { - "key": "value" + "key1": "value1", + "key2": "value2" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1674/providers/Microsoft.Compute/availabilitySets/test-aset2660", - "name": "test-aset2660", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-WorkspaceConnectionOperations8653/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:26.519006Z", - "changedTime": "2021-07-12T22:35:26.9769439Z", + "identity": { + "principalId": "a4a72e22-1946-40e2-8e3e-5ab2ba2a2e36", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "changedTime": "2021-08-09T13:51:37.5981482Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6585/providers/Microsoft.Compute/availabilitySets/test-aset5689", - "name": "test-aset5689", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-WorkspaceConnectionOperations2816/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:28.7372429Z", - "changedTime": "2021-07-12T22:35:30.5375091Z", + "identity": { + "principalId": "77e751ff-874c-48e8-bac3-2cbf7813c646", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "changedTime": "2021-08-09T13:55:40.2073665Z", "provisioningState": "Succeeded", - "tags": { - "key": "value" - } + "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3687/providers/Microsoft.Compute/availabilitySets/test-aset2941", - "name": "test-aset2941", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-OnlineEndpointTrackedResourceOperations4230/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:30.7005465Z", - "changedTime": "2021-07-12T22:35:32.6481109Z", + "identity": { + "principalId": "a8d935d3-a089-4bc1-8c33-be4b56356e3d", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "changedTime": "2021-08-09T15:28:48.9182576Z", "provisioningState": "Succeeded", - "tags": { - "key": "value" - } + "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2678/providers/Microsoft.Compute/availabilitySets/test-aset8446", - "name": "test-aset8446", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-OnlineEndpointTrackedResourceOperations8203/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:31.8146484Z", - "changedTime": "2021-07-12T22:35:33.0538678Z", + "identity": { + "principalId": "52d8c054-b1fd-4784-899c-05be8f26e3c0", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "changedTime": "2021-08-09T15:29:57.4508649Z", "provisioningState": "Succeeded", - "tags": { - "key": "value" - } + "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2426/providers/Microsoft.Compute/availabilitySets/test-aset6283", - "name": "test-aset6283", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9270/providers/Microsoft.Compute/availabilitySets/test-aset790", + "name": "test-aset790", "type": "Microsoft.Compute/availabilitySets", "sku": { "name": "Aligned" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:32.6911866Z", - "changedTime": "2021-07-12T22:35:35.8719375Z", + "changedTime": "2021-08-09T18:01:18.259998Z", "provisioningState": "Succeeded", - "tags": { - "key": "value" - } + "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9445/providers/Microsoft.Compute/availabilitySets/test-aset9967", - "name": "test-aset9967", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5374/providers/Microsoft.Compute/availabilitySets/test-aset3451", + "name": "test-aset3451", "type": "Microsoft.Compute/availabilitySets", "sku": { "name": "Aligned" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:35.24467Z", - "changedTime": "2021-07-12T22:35:35.6926166Z", + "changedTime": "2021-08-09T18:01:18.7832014Z", + "provisioningState": "Succeeded", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/cleanupService/providers/Microsoft.Automation/automationAccounts/cleanupResourcegroup", + "name": "cleanupResourcegroup", + "type": "Microsoft.Automation/automationAccounts", + "location": "eastus2", + "changedTime": "2021-08-02T09:00:20.8857725Z", + "provisioningState": "Succeeded", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/cleanupService/providers/Microsoft.Automation/automationAccounts/cleanupResourcegroup/runbooks/cleanupRunbook", + "name": "cleanupResourcegroup/cleanupRunbook", + "type": "Microsoft.Automation/automationAccounts/runbooks", + "location": "eastus2", + "changedTime": "2021-08-02T09:13:17.2320444Z", "provisioningState": "Succeeded", "tags": {} } ] } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9445/providers/Microsoft.Compute/availabilitySets/test-aset9967?api-version=2021-07-01", - "RequestMethod": "PATCH", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "144", - "Content-Type": "application/json", - "traceparent": "00-b5b6ab989d9b334ebd70c178fbc19f50-02a2eced4d705c4c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "55f29dd56e4e8e5dca8711c3eeb6c863", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "55f29dd56e4e8e5dca8711c3eeb6c863", - "x-ms-correlation-request-id": "efb794ef-4f35-482b-a2ef-0bb8e907ea54", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;168,Microsoft.Compute/PutVM30Min;1128", - "x-ms-ratelimit-remaining-subscription-writes": "1178", - "x-ms-request-id": "5c04d29f-68bc-4f0f-b03b-6527abe5cf27", - "x-ms-routing-request-id": "WESTUS:20210712T223536Z:efb794ef-4f35-482b-a2ef-0bb8e907ea54" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset9967\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9445/providers/Microsoft.Compute/availabilitySets/test-aset9967\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] } ], "Variables": { - "RandomSeed": "742208027", + "RandomSeed": "138869705", + "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/Update().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceContainerTests/ListWithExpand()Async.json similarity index 81% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/Update().json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceContainerTests/ListWithExpand()Async.json index d21e80b0b54d6..d1bf4a51be156 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/Update().json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceContainerTests/ListWithExpand()Async.json @@ -6,9 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4aab350542f34541a8e23c785fdc8912-47e9c9248bde4b40-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e18a506fc651f223118187f70d5ee296", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "84783e24aee4ca7f27167e507dde8b15", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -17,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:28 GMT", + "Date": "Mon, 09 Aug 2021 18:01:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "adbfbade-1516-4eb7-af0d-195272b3dd32", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "adbfbade-1516-4eb7-af0d-195272b3dd32", - "x-ms-routing-request-id": "WESTUS:20210712T223528Z:adbfbade-1516-4eb7-af0d-195272b3dd32" + "x-ms-correlation-request-id": "6fd2012c-a5e3-45d8-ba8f-9ede65d7d49d", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "6fd2012c-a5e3-45d8-ba8f-9ede65d7d49d", + "x-ms-routing-request-id": "WESTUS2:20210809T180132Z:6fd2012c-a5e3-45d8-ba8f-9ede65d7d49d" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -47,16 +46,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg2678?api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg2722?api-version=2019-10-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "32", "Content-Type": "application/json", - "traceparent": "00-02f0338d514d444d88a02025abd45e6d-d0320e36af01d24b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ec4b7cefd791e57fb4114e3bed654bac", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d542f82c9da1914247a8e3dc799f3220", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -68,19 +66,19 @@ "Cache-Control": "no-cache", "Content-Length": "228", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:30 GMT", + "Date": "Mon, 09 Aug 2021 18:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b052f6a9-a7f0-4715-99a6-3b1df9272c5c", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "b052f6a9-a7f0-4715-99a6-3b1df9272c5c", - "x-ms-routing-request-id": "WESTUS:20210712T223531Z:b052f6a9-a7f0-4715-99a6-3b1df9272c5c" + "x-ms-correlation-request-id": "f5ac1199-9f53-4a4f-a2b6-ae78c76924b3", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-request-id": "f5ac1199-9f53-4a4f-a2b6-ae78c76924b3", + "x-ms-routing-request-id": "WESTUS2:20210809T180132Z:f5ac1199-9f53-4a4f-a2b6-ae78c76924b3" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2678", - "name": "testrg2678", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2722", + "name": "testrg2722", "type": "Microsoft.Resources/resourceGroups", "location": "westus2", "tags": {}, @@ -95,26 +93,25 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6e0de8c31586b341921acf66ee7216ea-16f715731f58c942-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3ed8ed2f1e4665446363745e048ec370", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fb3f810484a11bd8ad9431489d75a5d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "54667", + "Content-Length": "54810", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:30 GMT", + "Date": "Mon, 09 Aug 2021 18:01:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be1845ce-4a53-47a4-84ab-6de321a7afd0", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-request-id": "be1845ce-4a53-47a4-84ab-6de321a7afd0", - "x-ms-routing-request-id": "WESTUS:20210712T223531Z:be1845ce-4a53-47a4-84ab-6de321a7afd0" + "x-ms-correlation-request-id": "32b8a5b1-1757-4523-8de3-9869aafb93b4", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "32b8a5b1-1757-4523-8de3-9869aafb93b4", + "x-ms-routing-request-id": "WESTUS2:20210809T180132Z:32b8a5b1-1757-4523-8de3-9869aafb93b4" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", @@ -1816,6 +1813,9 @@ "resourceType": "locations/edgeZones", "locations": [], "apiVersions": [ + "2021-07-01", + "2021-04-01", + "2021-03-01", "2020-12-01" ], "capabilities": "None" @@ -1860,6 +1860,9 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", + "2021-04-01", + "2021-03-01", "2020-12-01" ], "capabilities": "None" @@ -2453,6 +2456,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2503,6 +2507,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2553,6 +2558,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2603,6 +2609,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -2653,6 +2660,7 @@ "West US 3" ], "apiVersions": [ + "2021-07-01", "2021-03-01", "2020-09-30", "2019-12-01", @@ -4223,16 +4231,118 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2678/providers/Microsoft.Compute/availabilitySets/test-aset8446?api-version=2021-07-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2722/providers/Microsoft.Compute/availabilitySets/test-aset2388?api-version=2021-07-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "131", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "148d51b5837c36a0f29d059ceeae764c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "properties": { + "platformUpdateDomainCount": 5, + "platformFaultDomainCount": 2 + }, + "sku": { + "name": "Aligned" + }, + "location": "westus2", + "tags": {} + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "408", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Aug 2021 18:01:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-client-request-id": "148d51b5837c36a0f29d059ceeae764c", + "x-ms-correlation-request-id": "1e828355-4365-4a71-91d4-27a069717be7", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1197", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-request-id": "a20e5936-0035-4157-9d23-9e8a3533ad3f", + "x-ms-routing-request-id": "WESTUS2:20210809T180133Z:1e828355-4365-4a71-91d4-27a069717be7" + }, + "ResponseBody": [ + "{\r\n", + " \u0022name\u0022: \u0022test-aset2388\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2722/providers/Microsoft.Compute/availabilitySets/test-aset2388\u0022,\r\n", + " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", + " \u0022location\u0022: \u0022westus2\u0022,\r\n", + " \u0022tags\u0022: {},\r\n", + " \u0022properties\u0022: {\r\n", + " \u0022platformUpdateDomainCount\u0022: 5,\r\n", + " \u0022platformFaultDomainCount\u0022: 2\r\n", + " },\r\n", + " \u0022sku\u0022: {\r\n", + " \u0022name\u0022: \u0022Aligned\u0022\r\n", + " }\r\n", + "}" + ] + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg8003?api-version=2019-10-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "32", + "Content-Type": "application/json", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a54ec30c530be1810808047e3b2cfe1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "location": "westus2", + "tags": {} + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "228", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Aug 2021 18:01:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ed04a1b9-d682-493e-8a19-1eb5a78b76bc", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-request-id": "ed04a1b9-d682-493e-8a19-1eb5a78b76bc", + "x-ms-routing-request-id": "WESTUS2:20210809T180133Z:ed04a1b9-d682-493e-8a19-1eb5a78b76bc" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8003", + "name": "testrg8003", + "type": "Microsoft.Resources/resourceGroups", + "location": "westus2", + "tags": {}, + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8003/providers/Microsoft.Compute/availabilitySets/test-aset2283?api-version=2021-07-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", "Content-Length": "131", "Content-Type": "application/json", - "traceparent": "00-6e0de8c31586b341921acf66ee7216ea-f75aea11901cf543-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8382990fdd960b79fc9cb5d5b6241c3c", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9b9bf01865fa18c6aac28f9725a9f3d3", "x-ms-return-client-request-id": "true" }, "RequestBody": { @@ -4251,7 +4361,7 @@ "Cache-Control": "no-cache", "Content-Length": "408", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:31 GMT", + "Date": "Mon, 09 Aug 2021 18:01:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -4260,17 +4370,17 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "8382990fdd960b79fc9cb5d5b6241c3c", - "x-ms-correlation-request-id": "ca075aba-5419-491d-b0b6-5b03f65780dc", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;176,Microsoft.Compute/PutVM30Min;1136", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "b79ce06e-5b23-49bb-a807-d19c69113c41", - "x-ms-routing-request-id": "WESTUS:20210712T223532Z:ca075aba-5419-491d-b0b6-5b03f65780dc" + "x-ms-client-request-id": "9b9bf01865fa18c6aac28f9725a9f3d3", + "x-ms-correlation-request-id": "29c4101e-640b-485f-8c4b-55c06328dcb6", + "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1196", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-request-id": "5f17af6a-d4c6-45b6-9b2c-a9b1e9294378", + "x-ms-routing-request-id": "WESTUS2:20210809T180133Z:29c4101e-640b-485f-8c4b-55c06328dcb6" }, "ResponseBody": [ "{\r\n", - " \u0022name\u0022: \u0022test-aset8446\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2678/providers/Microsoft.Compute/availabilitySets/test-aset8446\u0022,\r\n", + " \u0022name\u0022: \u0022test-aset2283\u0022,\r\n", + " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8003/providers/Microsoft.Compute/availabilitySets/test-aset2283\u0022,\r\n", " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", " \u0022location\u0022: \u0022westus2\u0022,\r\n", " \u0022tags\u0022: {},\r\n", @@ -4285,31 +4395,30 @@ ] }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=createdTime%2CchangedTime%2CprovisioningState\u0026api-version=2019-10-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=createdTime\u0026api-version=2019-10-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-afb83c8d858b0b4bb16055d82cfbd144-6c4582808668424f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ccddcb8a28c951d474cd42a9696eae3f", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b9302beaa2975d11888c6191f149e25e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "17141", + "Content-Length": "11797", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:31 GMT", + "Date": "Mon, 09 Aug 2021 18:01:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5481cf51-3f52-4cf6-9df6-c03a7ff4a884", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-request-id": "5481cf51-3f52-4cf6-9df6-c03a7ff4a884", - "x-ms-routing-request-id": "WESTUS:20210712T223532Z:5481cf51-3f52-4cf6-9df6-c03a7ff4a884" + "x-ms-correlation-request-id": "b4a770c6-c2d9-4dc4-970f-7b8c8010b89f", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "b4a770c6-c2d9-4dc4-970f-7b8c8010b89f", + "x-ms-routing-request-id": "WESTUS2:20210809T180133Z:b4a770c6-c2d9-4dc4-970f-7b8c8010b89f" }, "ResponseBody": { "value": [ @@ -4318,36 +4427,28 @@ "name": "ema7925a82c", "type": "Microsoft.ClassicStorage/storageAccounts", "location": "westus", - "createdTime": "2015-02-20T19:43:15.0632092Z", - "changedTime": "2021-07-12T11:11:34.9848325Z", - "provisioningState": "Succeeded" + "createdTime": "2015-02-20T19:43:15.0632092Z" }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3285b8sydlcm1", "name": "portalvhds3285b8sydlcm1", "type": "Microsoft.ClassicStorage/storageAccounts", "location": "eastus", - "createdTime": "2014-05-24T04:55:36.974557Z", - "changedTime": "2021-07-12T13:11:37.9698445Z", - "provisioningState": "Succeeded" + "createdTime": "2014-05-24T04:55:36.974557Z" }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/storagetestghqqxrrqnr", "name": "storagetestghqqxrrqnr", "type": "Microsoft.ClassicStorage/storageAccounts", "location": "eastasia", - "createdTime": "2014-10-23T23:54:52.3824535Z", - "changedTime": "2021-07-12T11:11:41.8364976Z", - "provisioningState": "Succeeded" + "createdTime": "2014-10-23T23:54:52.3824535Z" }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds2wdcfvkv5phc9", "name": "portalvhds2wdcfvkv5phc9", "type": "Microsoft.ClassicStorage/storageAccounts", "location": "westus", - "createdTime": "2014-05-24T04:55:34.6927361Z", - "changedTime": "2021-07-12T11:11:39.8951663Z", - "provisioningState": "Succeeded" + "createdTime": "2014-05-24T04:55:34.6927361Z" }, { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2", @@ -4355,8 +4456,6 @@ "type": "Microsoft.ManagedIdentity/userAssignedIdentities", "location": "westus2", "createdTime": "2021-03-18T21:55:37.839206Z", - "changedTime": "2021-03-18T22:05:38.7997788Z", - "provisioningState": "Succeeded", "tags": {} }, { @@ -4365,8 +4464,6 @@ "type": "Microsoft.ManagedIdentity/userAssignedIdentities", "location": "eastus", "createdTime": "2021-04-27T07:14:50.9621072Z", - "changedTime": "2021-04-27T07:24:53.4570423Z", - "provisioningState": "Succeeded", "tags": {} }, { @@ -4375,8 +4472,6 @@ "type": "Microsoft.ManagedIdentity/userAssignedIdentities", "location": "westus", "createdTime": "2021-06-17T22:32:45.5111313Z", - "changedTime": "2021-06-17T22:42:48.1625939Z", - "provisioningState": "Succeeded", "tags": {} }, { @@ -4389,556 +4484,749 @@ "type": "None" }, "createdTime": "2021-07-07T06:51:11.1964393Z", - "changedTime": "2021-07-07T07:03:04.9723107Z", - "provisioningState": "Succeeded", "tags": { "defaultExperience": "Azure Cosmos DB for MongoDB API", "hidden-cosmos-mmspecial": "" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7572/providers/Microsoft.Compute/availabilitySets/test-aset460", - "name": "test-aset460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus2", + "name": "AzSecPackAutoConfigUA-eastus2", + "type": "Microsoft.ManagedIdentity/userAssignedIdentities", + "location": "eastus2", + "createdTime": "2021-07-19T07:49:19.9955718Z", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/microsoft.insights/components/track2mlappinsight", + "name": "track2mlappinsight", + "type": "microsoft.insights/components", + "kind": "web", "location": "westus2", - "createdTime": "2021-07-09T07:11:04.6951444Z", - "changedTime": "2021-07-09T07:21:07.1849109Z", - "provisioningState": "Succeeded", + "createdTime": "2021-08-05T08:22:29.2001751Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481/providers/Microsoft.Compute/availabilitySets/test-aset5192", - "name": "test-aset5192", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/Microsoft.KeyVault/vaults/track2mltestkeyvault", + "name": "track2mltestkeyvault", + "type": "Microsoft.KeyVault/vaults", + "location": "westus2", + "createdTime": "2021-08-05T08:23:50.7906578Z", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/Microsoft.Storage/storageAccounts/track2mlstorage", + "name": "track2mlstorage", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_LRS", + "tier": "Standard" }, + "kind": "StorageV2", "location": "westus2", - "createdTime": "2021-07-09T07:11:07.6835744Z", - "changedTime": "2021-07-09T07:21:10.3067676Z", - "provisioningState": "Succeeded", + "createdTime": "2021-08-05T08:26:30.047889Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789/providers/Microsoft.Compute/availabilitySets/test-aset1315", - "name": "test-aset1315", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/Microsoft.ContainerRegistry/registries/track2mlacr", + "name": "track2mlacr", + "type": "Microsoft.ContainerRegistry/registries", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-09T17:59:44.4287135Z", - "changedTime": "2021-07-09T18:09:46.8976092Z", - "provisioningState": "Succeeded", + "createdTime": "2021-08-05T08:27:48.4577997Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656/providers/Microsoft.Compute/availabilitySets/test-aset8673", - "name": "test-aset8673", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/microsoft.insights/actiongroups/Application Insights Smart Detection", + "name": "Application Insights Smart Detection", + "type": "microsoft.insights/actiongroups", + "location": "global", + "createdTime": "2021-08-05T08:32:43.8569531Z" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure Anomalies - track2mlappinsight", + "name": "Failure Anomalies - track2mlappinsight", + "type": "microsoft.alertsmanagement/smartDetectorAlertRules", + "location": "global", + "createdTime": "2021-08-05T08:32:45.3526028Z", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-WorkspaceConnectionOperations874/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-09T17:59:48.7922406Z", - "changedTime": "2021-07-09T18:09:50.8818072Z", - "provisioningState": "Succeeded", + "identity": { + "principalId": "7c450693-45d2-4b0c-9cb8-87c48c0e8b58", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "createdTime": "2021-08-09T02:28:11.9393591Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg255/providers/Microsoft.Compute/availabilitySets/test-aset8503", - "name": "test-aset8503", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-WorkspaceConnectionOperations468/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:34:57.3549019Z", - "changedTime": "2021-07-12T22:34:58.2726502Z", - "provisioningState": "Succeeded", + "identity": { + "principalId": "ef2e32b1-ff22-4422-9186-265a8b545a39", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "createdTime": "2021-08-09T02:32:12.2614665Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315", - "name": "test-aset315", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-1982/providers/Microsoft.Storage/storageAccounts/aaa1229", + "name": "aaa1229", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.4424611Z", - "changedTime": "2021-07-12T22:34:59.0409998Z", - "provisioningState": "Succeeded", + "kind": "Storage", + "location": "eastus2", + "createdTime": "2021-08-09T06:24:45.524037Z", "tags": { - "key": "value" + "key1": "value1", + "key2": "value2" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611", - "name": "test-aset611", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2856/providers/Microsoft.Storage/storageAccounts/aaa9996", + "name": "aaa9996", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.6903508Z", - "changedTime": "2021-07-12T22:34:59.6584863Z", - "provisioningState": "Succeeded", + "kind": "Storage", + "location": "eastus2", + "createdTime": "2021-08-09T06:34:10.1726467Z", "tags": { - "key": "value" + "key1": "value1", + "key2": "value2" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803/providers/Microsoft.Compute/availabilitySets/test-aset6081", - "name": "test-aset6081", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-971/providers/Microsoft.Storage/storageAccounts/aaa9634", + "name": "aaa9634", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:59.7465833Z", - "changedTime": "2021-07-12T22:35:01.6411346Z", - "provisioningState": "Succeeded", + "kind": "Storage", + "location": "eastus2", + "createdTime": "2021-08-09T06:45:58.8129464Z", "tags": { - "key": "value" + "key1": "value1", + "key2": "value2" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471/providers/Microsoft.Compute/availabilitySets/test-aset242", - "name": "test-aset242", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-4197/providers/Microsoft.Storage/storageAccounts/aaa5198", + "name": "aaa5198", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:00.3333258Z", - "changedTime": "2021-07-12T22:35:01.8087328Z", - "provisioningState": "Succeeded", + "kind": "Storage", + "location": "eastus2", + "createdTime": "2021-08-09T07:14:09.6864157Z", "tags": { - "key": "value" + "key1": "value1", + "key2": "value2" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623", - "name": "test-aset623", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5702/providers/Microsoft.Storage/storageAccounts/teststorage5522", + "name": "teststorage5522", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:01.7676172Z", - "changedTime": "2021-07-12T22:35:02.5524329Z", - "provisioningState": "Succeeded", - "tags": {} + "kind": "Storage", + "location": "eastus2", + "createdTime": "2021-08-09T07:35:58.6946875Z", + "tags": { + "key1": "value1", + "key2": "value2" + } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7017/providers/Microsoft.Compute/availabilitySets/test-aset1345", - "name": "test-aset1345", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-4101/providers/Microsoft.Storage/storageAccounts/teststorage1208", + "name": "teststorage1208", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" + }, + "kind": "Storage", + "location": "eastus2", + "createdTime": "2021-08-09T08:55:03.5139334Z", + "tags": { + "key1": "value1", + "key2": "value2" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-WorkspaceConnectionOperations8653/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", + "sku": { + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:05.657807Z", - "changedTime": "2021-07-12T22:35:06.1329684Z", - "provisioningState": "Succeeded", + "identity": { + "principalId": "a4a72e22-1946-40e2-8e3e-5ab2ba2a2e36", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "createdTime": "2021-08-09T13:41:10.2195317Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3267/providers/Microsoft.Compute/availabilitySets/test-aset7445", - "name": "test-aset7445", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-WorkspaceConnectionOperations2816/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:06.5404471Z", - "changedTime": "2021-07-12T22:35:07.0092802Z", - "provisioningState": "Succeeded", + "identity": { + "principalId": "77e751ff-874c-48e8-bac3-2cbf7813c646", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "createdTime": "2021-08-09T13:44:19.9716149Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748", - "name": "test-aset4748", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-OnlineEndpointTrackedResourceOperations4230/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:06.9214478Z", - "changedTime": "2021-07-12T22:35:09.7711081Z", - "provisioningState": "Succeeded", + "identity": { + "principalId": "a8d935d3-a089-4bc1-8c33-be4b56356e3d", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "createdTime": "2021-08-09T15:18:16.2330914Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454", - "name": "test-aset1454", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-OnlineEndpointTrackedResourceOperations8203/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:08.9137705Z", - "changedTime": "2021-07-12T22:35:12.2634382Z", - "provisioningState": "Succeeded", + "identity": { + "principalId": "52d8c054-b1fd-4784-899c-05be8f26e3c0", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "createdTime": "2021-08-09T15:19:24.2343186Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6500/providers/Microsoft.Compute/availabilitySets/test-aset102", - "name": "test-aset102", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2722/providers/Microsoft.Compute/availabilitySets/test-aset2388", + "name": "test-aset2388", "type": "Microsoft.Compute/availabilitySets", "sku": { "name": "Aligned" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:09.5159536Z", - "changedTime": "2021-07-12T22:35:10.323048Z", - "provisioningState": "Succeeded", + "createdTime": "2021-08-09T18:01:33.2170069Z", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9664/providers/Microsoft.Compute/availabilitySets/test-aset893", - "name": "test-aset893", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8003/providers/Microsoft.Compute/availabilitySets/test-aset2283", + "name": "test-aset2283", "type": "Microsoft.Compute/availabilitySets", "sku": { "name": "Aligned" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:10.0681296Z", - "changedTime": "2021-07-12T22:35:10.5692018Z", + "createdTime": "2021-08-09T18:01:33.7435806Z", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/cleanupService/providers/Microsoft.Automation/automationAccounts/cleanupResourcegroup", + "name": "cleanupResourcegroup", + "type": "Microsoft.Automation/automationAccounts", + "location": "eastus2", + "createdTime": "2021-08-02T08:50:19.4622473Z", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/cleanupService/providers/Microsoft.Automation/automationAccounts/cleanupResourcegroup/runbooks/cleanupRunbook", + "name": "cleanupResourcegroup/cleanupRunbook", + "type": "Microsoft.Automation/automationAccounts/runbooks", + "location": "eastus2", + "createdTime": "2021-08-02T09:03:10.4838434Z", + "tags": {} + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=changedTime%2CprovisioningState\u0026api-version=2019-10-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4adcab11f514f33e9642722d1e3f237b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "12792", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Aug 2021 18:01:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7b8c4201-e81a-40c5-910a-587edcc81f0c", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "7b8c4201-e81a-40c5-910a-587edcc81f0c", + "x-ms-routing-request-id": "WESTUS2:20210809T180134Z:7b8c4201-e81a-40c5-910a-587edcc81f0c" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2/providers/Microsoft.ClassicStorage/storageAccounts/ema7925a82c", + "name": "ema7925a82c", + "type": "Microsoft.ClassicStorage/storageAccounts", + "location": "westus", + "changedTime": "2021-07-12T11:11:34.9848325Z", + "provisioningState": "Succeeded" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3285b8sydlcm1", + "name": "portalvhds3285b8sydlcm1", + "type": "Microsoft.ClassicStorage/storageAccounts", + "location": "eastus", + "changedTime": "2021-07-12T13:11:37.9698445Z", + "provisioningState": "Succeeded" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/storagetestghqqxrrqnr", + "name": "storagetestghqqxrrqnr", + "type": "Microsoft.ClassicStorage/storageAccounts", + "location": "eastasia", + "changedTime": "2021-07-12T11:11:41.8364976Z", + "provisioningState": "Succeeded" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds2wdcfvkv5phc9", + "name": "portalvhds2wdcfvkv5phc9", + "type": "Microsoft.ClassicStorage/storageAccounts", + "location": "westus", + "changedTime": "2021-07-12T11:11:39.8951663Z", + "provisioningState": "Succeeded" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2", + "name": "AzSecPackAutoConfigUA-westus2", + "type": "Microsoft.ManagedIdentity/userAssignedIdentities", + "location": "westus2", + "changedTime": "2021-03-18T22:05:38.7997788Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8035/providers/Microsoft.Compute/availabilitySets/test-aset886", - "name": "test-aset886", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus", + "name": "AzSecPackAutoConfigUA-eastus", + "type": "Microsoft.ManagedIdentity/userAssignedIdentities", + "location": "eastus", + "changedTime": "2021-04-27T07:24:53.4570423Z", + "provisioningState": "Succeeded", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus", + "name": "AzSecPackAutoConfigUA-westus", + "type": "Microsoft.ManagedIdentity/userAssignedIdentities", + "location": "westus", + "changedTime": "2021-06-17T22:42:48.1625939Z", + "provisioningState": "Succeeded", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/sdkpipeline/providers/Microsoft.DocumentDb/databaseAccounts/sdkcodegen", + "name": "sdkcodegen", + "type": "Microsoft.DocumentDb/databaseAccounts", + "kind": "MongoDB", + "location": "westus", + "identity": { + "type": "None" }, + "changedTime": "2021-07-07T07:03:04.9723107Z", + "provisioningState": "Succeeded", + "tags": { + "defaultExperience": "Azure Cosmos DB for MongoDB API", + "hidden-cosmos-mmspecial": "" + } + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus2", + "name": "AzSecPackAutoConfigUA-eastus2", + "type": "Microsoft.ManagedIdentity/userAssignedIdentities", + "location": "eastus2", + "changedTime": "2021-07-19T07:59:26.2352389Z", + "provisioningState": "Succeeded", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/microsoft.insights/components/track2mlappinsight", + "name": "track2mlappinsight", + "type": "microsoft.insights/components", + "kind": "web", "location": "westus2", - "createdTime": "2021-07-12T22:35:10.6852163Z", - "changedTime": "2021-07-12T22:35:11.2486836Z", + "changedTime": "2021-08-05T08:32:38.1279741Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9990/providers/Microsoft.Compute/availabilitySets/test-aset2867", - "name": "test-aset2867", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/Microsoft.KeyVault/vaults/track2mltestkeyvault", + "name": "track2mltestkeyvault", + "type": "Microsoft.KeyVault/vaults", "location": "westus2", - "createdTime": "2021-07-12T22:35:11.1451381Z", - "changedTime": "2021-07-12T22:35:11.8315196Z", + "changedTime": "2021-08-05T08:33:56.9954341Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460", - "name": "test-aset1460", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/Microsoft.Storage/storageAccounts/track2mlstorage", + "name": "track2mlstorage", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_LRS", + "tier": "Standard" }, + "kind": "StorageV2", "location": "westus2", - "createdTime": "2021-07-12T22:35:13.3985808Z", - "changedTime": "2021-07-12T22:35:16.5705084Z", + "changedTime": "2021-08-05T08:37:07.5078969Z", "provisioningState": "Succeeded", - "tags": { - "key": "value" - } + "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9956/providers/Microsoft.Compute/availabilitySets/test-aset4461", - "name": "test-aset4461", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/Microsoft.ContainerRegistry/registries/track2mlacr", + "name": "track2mlacr", + "type": "Microsoft.ContainerRegistry/registries", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:15.3435773Z", - "changedTime": "2021-07-12T22:35:15.7934685Z", + "changedTime": "2021-08-05T08:37:52.9025663Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2893/providers/Microsoft.Compute/availabilitySets/test-aset3357", - "name": "test-aset3357", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/microsoft.insights/actiongroups/Application Insights Smart Detection", + "name": "Application Insights Smart Detection", + "type": "microsoft.insights/actiongroups", + "location": "global", + "changedTime": "2021-08-05T08:42:44.6571561Z", + "provisioningState": "Succeeded" + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-ml-common/providers/microsoft.alertsmanagement/smartDetectorAlertRules/Failure Anomalies - track2mlappinsight", + "name": "Failure Anomalies - track2mlappinsight", + "type": "microsoft.alertsmanagement/smartDetectorAlertRules", + "location": "global", + "changedTime": "2021-08-05T08:42:46.9826961Z", + "provisioningState": "Succeeded", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-WorkspaceConnectionOperations874/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:16.1246705Z", - "changedTime": "2021-07-12T22:35:16.5998399Z", + "identity": { + "principalId": "7c450693-45d2-4b0c-9cb8-87c48c0e8b58", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "changedTime": "2021-08-09T02:38:37.6839578Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9956/providers/Microsoft.Compute/availabilitySets/test-aset6019", - "name": "test-aset6019", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-WorkspaceConnectionOperations468/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:16.4545024Z", - "changedTime": "2021-07-12T22:35:16.9005606Z", + "identity": { + "principalId": "ef2e32b1-ff22-4422-9186-265a8b545a39", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "changedTime": "2021-08-09T02:43:29.7697384Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139/providers/Microsoft.Compute/availabilitySets/test-aset6457", - "name": "test-aset6457", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-1982/providers/Microsoft.Storage/storageAccounts/aaa1229", + "name": "aaa1229", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:16.6846369Z", - "changedTime": "2021-07-12T22:35:19.0599999Z", + "kind": "Storage", + "location": "eastus2", + "changedTime": "2021-08-09T06:35:13.6276767Z", "provisioningState": "Succeeded", "tags": { - "key": "value" + "key1": "value1", + "key2": "value2" } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2893/providers/Microsoft.Compute/availabilitySets/test-aset4614", - "name": "test-aset4614", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-2856/providers/Microsoft.Storage/storageAccounts/aaa9996", + "name": "aaa9996", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:17.6726885Z", - "changedTime": "2021-07-12T22:35:18.1501326Z", + "kind": "Storage", + "location": "eastus2", + "changedTime": "2021-08-09T06:44:40.626445Z", "provisioningState": "Succeeded", - "tags": {} + "tags": { + "key1": "value1", + "key2": "value2" + } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1144/providers/Microsoft.Compute/availabilitySets/test-aset6937", - "name": "test-aset6937", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-971/providers/Microsoft.Storage/storageAccounts/aaa9634", + "name": "aaa9634", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:18.0805643Z", - "changedTime": "2021-07-12T22:35:18.5242545Z", + "kind": "Storage", + "location": "eastus2", + "changedTime": "2021-08-09T06:56:28.8662363Z", "provisioningState": "Succeeded", - "tags": {} + "tags": { + "key1": "value1", + "key2": "value2" + } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5925/providers/Microsoft.Compute/availabilitySets/test-aset360", - "name": "test-aset360", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-4197/providers/Microsoft.Storage/storageAccounts/aaa5198", + "name": "aaa5198", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:19.8307393Z", - "changedTime": "2021-07-12T22:35:20.2900404Z", + "kind": "Storage", + "location": "eastus2", + "changedTime": "2021-08-09T07:24:38.8714581Z", "provisioningState": "Succeeded", - "tags": {} + "tags": { + "key1": "value1", + "key2": "value2" + } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6374/providers/Microsoft.Compute/availabilitySets/test-aset5069", - "name": "test-aset5069", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-5702/providers/Microsoft.Storage/storageAccounts/teststorage5522", + "name": "teststorage5522", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:22.7203564Z", - "changedTime": "2021-07-12T22:35:23.1761653Z", + "kind": "Storage", + "location": "eastus2", + "changedTime": "2021-08-09T07:46:26.8281065Z", "provisioningState": "Succeeded", - "tags": {} + "tags": { + "key1": "value1", + "key2": "value2" + } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6377/providers/Microsoft.Compute/availabilitySets/test-aset9023", - "name": "test-aset9023", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testRG-4101/providers/Microsoft.Storage/storageAccounts/teststorage1208", + "name": "teststorage1208", + "type": "Microsoft.Storage/storageAccounts", "sku": { - "name": "Aligned" + "name": "Standard_GRS", + "tier": "Standard" }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:23.8634822Z", - "changedTime": "2021-07-12T22:35:26.7124832Z", + "kind": "Storage", + "location": "eastus2", + "changedTime": "2021-08-09T09:05:33.6998018Z", "provisioningState": "Succeeded", - "tags": {} + "tags": { + "key1": "value1", + "key2": "value2" + } }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8472/providers/Microsoft.Compute/availabilitySets/test-aset7846", - "name": "test-aset7846", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-WorkspaceConnectionOperations8653/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:24.0879677Z", - "changedTime": "2021-07-12T22:35:24.5333857Z", + "identity": { + "principalId": "a4a72e22-1946-40e2-8e3e-5ab2ba2a2e36", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "changedTime": "2021-08-09T13:51:37.5981482Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3934/providers/Microsoft.Compute/availabilitySets/test-aset4013", - "name": "test-aset4013", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-WorkspaceConnectionOperations2816/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:25.1960009Z", - "changedTime": "2021-07-12T22:35:29.2418126Z", + "identity": { + "principalId": "77e751ff-874c-48e8-bac3-2cbf7813c646", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "changedTime": "2021-08-09T13:55:40.2073665Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6907/providers/Microsoft.Compute/availabilitySets/test-aset2758", - "name": "test-aset2758", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-OnlineEndpointTrackedResourceOperations4230/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:25.2990585Z", - "changedTime": "2021-07-12T22:35:27.0221818Z", + "identity": { + "principalId": "a8d935d3-a089-4bc1-8c33-be4b56356e3d", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "changedTime": "2021-08-09T15:28:48.9182576Z", "provisioningState": "Succeeded", - "tags": { - "key": "value" - } + "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1674/providers/Microsoft.Compute/availabilitySets/test-aset2660", - "name": "test-aset2660", - "type": "Microsoft.Compute/availabilitySets", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/test-OnlineEndpointTrackedResourceOperations8203/providers/Microsoft.MachineLearningServices/workspaces/test-workspace", + "name": "test-workspace", + "type": "Microsoft.MachineLearningServices/workspaces", "sku": { - "name": "Aligned" + "name": "Basic", + "tier": "Basic" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:26.519006Z", - "changedTime": "2021-07-12T22:35:26.9769439Z", + "identity": { + "principalId": "52d8c054-b1fd-4784-899c-05be8f26e3c0", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "type": "SystemAssigned" + }, + "changedTime": "2021-08-09T15:29:57.4508649Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6585/providers/Microsoft.Compute/availabilitySets/test-aset5689", - "name": "test-aset5689", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2722/providers/Microsoft.Compute/availabilitySets/test-aset2388", + "name": "test-aset2388", "type": "Microsoft.Compute/availabilitySets", "sku": { "name": "Aligned" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:28.7372429Z", - "changedTime": "2021-07-12T22:35:30.5375091Z", + "changedTime": "2021-08-09T18:01:33.3783994Z", "provisioningState": "Succeeded", - "tags": { - "key": "value" - } + "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3687/providers/Microsoft.Compute/availabilitySets/test-aset2941", - "name": "test-aset2941", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8003/providers/Microsoft.Compute/availabilitySets/test-aset2283", + "name": "test-aset2283", "type": "Microsoft.Compute/availabilitySets", "sku": { "name": "Aligned" }, "location": "westus2", - "createdTime": "2021-07-12T22:35:30.7005465Z", - "changedTime": "2021-07-12T22:35:31.8660762Z", + "changedTime": "2021-08-09T18:01:33.8392723Z", "provisioningState": "Succeeded", "tags": {} }, { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2678/providers/Microsoft.Compute/availabilitySets/test-aset8446", - "name": "test-aset8446", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:31.8146484Z", - "changedTime": "2021-07-12T22:35:32.2590011Z", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/cleanupService/providers/Microsoft.Automation/automationAccounts/cleanupResourcegroup", + "name": "cleanupResourcegroup", + "type": "Microsoft.Automation/automationAccounts", + "location": "eastus2", + "changedTime": "2021-08-02T09:00:20.8857725Z", + "provisioningState": "Succeeded", + "tags": {} + }, + { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/cleanupService/providers/Microsoft.Automation/automationAccounts/cleanupResourcegroup/runbooks/cleanupRunbook", + "name": "cleanupResourcegroup/cleanupRunbook", + "type": "Microsoft.Automation/automationAccounts/runbooks", + "location": "eastus2", + "changedTime": "2021-08-02T09:13:17.2320444Z", "provisioningState": "Succeeded", "tags": {} } ] } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2678/providers/Microsoft.Compute/availabilitySets/test-aset8446?api-version=2021-07-01", - "RequestMethod": "PATCH", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "144", - "Content-Type": "application/json", - "traceparent": "00-1d49f62f36f0eb49acf83fdedc2fa70c-97bf7f9808f7f543-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "62133747ce5f4eb2f0247c0faf05ff75", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:32 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "62133747ce5f4eb2f0247c0faf05ff75", - "x-ms-correlation-request-id": "0f141e1a-f04e-46c1-844e-b392944241aa", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;174,Microsoft.Compute/PutVM30Min;1134", - "x-ms-ratelimit-remaining-subscription-writes": "1186", - "x-ms-request-id": "4f663871-c17f-4119-9406-88c8c23c9623", - "x-ms-routing-request-id": "WESTUS:20210712T223533Z:0f141e1a-f04e-46c1-844e-b392944241aa" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset8446\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2678/providers/Microsoft.Compute/availabilitySets/test-aset8446\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] } ], "Variables": { - "RandomSeed": "1478962693", + "RandomSeed": "296165560", + "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/AddTag().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/AddTag().json deleted file mode 100644 index 78323efecd1d8..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/AddTag().json +++ /dev/null @@ -1,4619 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c1d57b70be3d2be28820e68927c4ab18", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a76355a6-f522-4cad-82a4-6d90842f0cc2", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "a76355a6-f522-4cad-82a4-6d90842f0cc2", - "x-ms-routing-request-id": "WESTUS:20210712T223455Z:a76355a6-f522-4cad-82a4-6d90842f0cc2" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg8441?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "32", - "Content-Type": "application/json", - "traceparent": "00-362a5675bd042344911adabafb5f5687-cafcfb10f2b9544d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3e0e68fd7f34916e1cfc496c208f56c6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "954f6c96-74ae-44f5-bc1b-294a241bd1d9", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "954f6c96-74ae-44f5-bc1b-294a241bd1d9", - "x-ms-routing-request-id": "WESTUS:20210712T223456Z:954f6c96-74ae-44f5-bc1b-294a241bd1d9" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441", - "name": "testrg8441", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-bb20f325be57d54bbbda78e7337afc53-23821e3ec7ae0641-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ffd7f42058e432bc0f131b879bc9b41f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "54667", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b5a402c-516f-4df6-9a19-3f5c855883b9", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "9b5a402c-516f-4df6-9a19-3f5c855883b9", - "x-ms-routing-request-id": "WESTUS:20210712T223456Z:9b5a402c-516f-4df6-9a19-3f5c855883b9" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "West US 3", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315?api-version=2021-07-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "131", - "Content-Type": "application/json", - "traceparent": "00-bb20f325be57d54bbbda78e7337afc53-9895bcfeb8ec9a44-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fa631ada3b3267fc2f21c198bf689090", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "406", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:57 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "fa631ada3b3267fc2f21c198bf689090", - "x-ms-correlation-request-id": "4e1d0d38-e224-4305-970f-7898ed8ec639", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "7d2d419b-9885-4af2-8758-25fbd507ee12", - "x-ms-routing-request-id": "WESTUS:20210712T223458Z:4e1d0d38-e224-4305-970f-7898ed8ec639" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset315\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=createdTime%2CchangedTime%2CprovisioningState\u0026api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-75ccc5edbf451449943fb21264f8cc91-294e96bb74693041-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "75454d94ccf3e4bbf86fcfc3962372a6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "5715", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f7af944-6251-47c9-a547-2716be430bc9", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "9f7af944-6251-47c9-a547-2716be430bc9", - "x-ms-routing-request-id": "WESTUS:20210712T223458Z:9f7af944-6251-47c9-a547-2716be430bc9" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2/providers/Microsoft.ClassicStorage/storageAccounts/ema7925a82c", - "name": "ema7925a82c", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2015-02-20T19:43:15.0632092Z", - "changedTime": "2021-07-12T11:11:34.9848325Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3285b8sydlcm1", - "name": "portalvhds3285b8sydlcm1", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastus", - "createdTime": "2014-05-24T04:55:36.974557Z", - "changedTime": "2021-07-12T13:11:37.9698445Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/storagetestghqqxrrqnr", - "name": "storagetestghqqxrrqnr", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastasia", - "createdTime": "2014-10-23T23:54:52.3824535Z", - "changedTime": "2021-07-12T11:11:41.8364976Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds2wdcfvkv5phc9", - "name": "portalvhds2wdcfvkv5phc9", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2014-05-24T04:55:34.6927361Z", - "changedTime": "2021-07-12T11:11:39.8951663Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2", - "name": "AzSecPackAutoConfigUA-westus2", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus2", - "createdTime": "2021-03-18T21:55:37.839206Z", - "changedTime": "2021-03-18T22:05:38.7997788Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus", - "name": "AzSecPackAutoConfigUA-eastus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "eastus", - "createdTime": "2021-04-27T07:14:50.9621072Z", - "changedTime": "2021-04-27T07:24:53.4570423Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus", - "name": "AzSecPackAutoConfigUA-westus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus", - "createdTime": "2021-06-17T22:32:45.5111313Z", - "changedTime": "2021-06-17T22:42:48.1625939Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/sdkpipeline/providers/Microsoft.DocumentDb/databaseAccounts/sdkcodegen", - "name": "sdkcodegen", - "type": "Microsoft.DocumentDb/databaseAccounts", - "kind": "MongoDB", - "location": "westus", - "identity": { - "type": "None" - }, - "createdTime": "2021-07-07T06:51:11.1964393Z", - "changedTime": "2021-07-07T07:03:04.9723107Z", - "provisioningState": "Succeeded", - "tags": { - "defaultExperience": "Azure Cosmos DB for MongoDB API", - "hidden-cosmos-mmspecial": "" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7572/providers/Microsoft.Compute/availabilitySets/test-aset460", - "name": "test-aset460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:04.6951444Z", - "changedTime": "2021-07-09T07:21:07.1849109Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481/providers/Microsoft.Compute/availabilitySets/test-aset5192", - "name": "test-aset5192", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:07.6835744Z", - "changedTime": "2021-07-09T07:21:10.3067676Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789/providers/Microsoft.Compute/availabilitySets/test-aset1315", - "name": "test-aset1315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:44.4287135Z", - "changedTime": "2021-07-09T18:09:46.8976092Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656/providers/Microsoft.Compute/availabilitySets/test-aset8673", - "name": "test-aset8673", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:48.7922406Z", - "changedTime": "2021-07-09T18:09:50.8818072Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg255/providers/Microsoft.Compute/availabilitySets/test-aset8503", - "name": "test-aset8503", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.3549019Z", - "changedTime": "2021-07-12T22:34:58.2726502Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315", - "name": "test-aset315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.4424611Z", - "changedTime": "2021-07-12T22:34:58.1472582Z", - "provisioningState": "Succeeded", - "tags": {} - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5e988beb01aa9e4e98c57cd462d7f533-d043ac78a66ede42-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "62c58b82fd254dde0153a82615901526", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "263", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01132d12-cde6-438a-b434-ced619965723", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "01132d12-cde6-438a-b434-ced619965723", - "x-ms-routing-request-id": "WESTUS:20210712T223458Z:01132d12-cde6-438a-b434-ced619965723" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315/providers/Microsoft.Resources/tags/default", - "name": "default", - "type": "Microsoft.Resources/tags", - "properties": { - "tags": {} - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "39", - "Content-Type": "application/json", - "traceparent": "00-5e988beb01aa9e4e98c57cd462d7f533-9b26b18ad20dcc49-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "72048ea01b23f69c7dbfbed0bd55792d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "tags": { - "key": "value" - } - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "276", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8527451c-2c6c-45b6-a0a1-88229e2ce019", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "8527451c-2c6c-45b6-a0a1-88229e2ce019", - "x-ms-routing-request-id": "WESTUS:20210712T223459Z:8527451c-2c6c-45b6-a0a1-88229e2ce019" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315/providers/Microsoft.Resources/tags/default", - "name": "default", - "type": "Microsoft.Resources/tags", - "properties": { - "tags": { - "key": "value" - } - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315?api-version=2021-07-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5e988beb01aa9e4e98c57cd462d7f533-e6c302e14f111b49-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c7e87f991d44960d6ef7739f2395ce67", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "458", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c7e87f991d44960d6ef7739f2395ce67", - "x-ms-correlation-request-id": "4ab52e4e-5f88-4df4-a63a-814de64d5099", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31999", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "06c575dc-88be-4ff5-aafd-5559aae3433d", - "x-ms-routing-request-id": "WESTUS:20210712T223459Z:4ab52e4e-5f88-4df4-a63a-814de64d5099" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset315\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2,\r\n", - " \u0022virtualMachines\u0022: []\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "1301537516", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/AddTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/AddTag()Async.json deleted file mode 100644 index 7405b4d5e06d1..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/AddTag()Async.json +++ /dev/null @@ -1,4632 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f7ab9e64709ede18284457b76050b3ac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95351a6e-7db9-42c4-af16-b671b6cf872a", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "95351a6e-7db9-42c4-af16-b671b6cf872a", - "x-ms-routing-request-id": "WESTUS:20210712T223455Z:95351a6e-7db9-42c4-af16-b671b6cf872a" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6694?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "32", - "Content-Type": "application/json", - "traceparent": "00-526ed8fadad50b41a05cc79b75d438f1-53b57f6cb400b440-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "77f51a74cdb5ab74c920fe86e9ba446d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:55 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0fbe431a-bed8-4f19-b54d-1c7a9d8db412", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "0fbe431a-bed8-4f19-b54d-1c7a9d8db412", - "x-ms-routing-request-id": "WESTUS:20210712T223456Z:0fbe431a-bed8-4f19-b54d-1c7a9d8db412" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694", - "name": "testrg6694", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-55d4f71db3c57f4797c15f4d4479d8dc-4669c31bee898b41-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5c3c785d4abdd6b2e7540748b0c4bc6b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "54667", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:55 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "98b659dc-9bca-4f69-a636-cc41f7fa64a7", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "98b659dc-9bca-4f69-a636-cc41f7fa64a7", - "x-ms-routing-request-id": "WESTUS:20210712T223456Z:98b659dc-9bca-4f69-a636-cc41f7fa64a7" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "West US 3", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611?api-version=2021-07-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "131", - "Content-Type": "application/json", - "traceparent": "00-55d4f71db3c57f4797c15f4d4479d8dc-78490cbc1a7ad844-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a3e517a2afe536d04cd4501a583f8913", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "406", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "a3e517a2afe536d04cd4501a583f8913", - "x-ms-correlation-request-id": "02f46ab6-bbb1-450f-99be-0182780b62e6", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1196", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "c41301c2-abce-4e4b-8857-30632ebf5b18", - "x-ms-routing-request-id": "WESTUS:20210712T223458Z:02f46ab6-bbb1-450f-99be-0182780b62e6" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset611\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=createdTime%2CchangedTime%2CprovisioningState\u0026api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-20d2699eb21667418ceceaad10a727c5-03685088cf72c747-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a3461b41ca5fad2fa7060fe8fa977ea8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "6104", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "841c037b-4686-4999-bae1-28d168b0ccef", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-request-id": "841c037b-4686-4999-bae1-28d168b0ccef", - "x-ms-routing-request-id": "WESTUS:20210712T223458Z:841c037b-4686-4999-bae1-28d168b0ccef" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2/providers/Microsoft.ClassicStorage/storageAccounts/ema7925a82c", - "name": "ema7925a82c", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2015-02-20T19:43:15.0632092Z", - "changedTime": "2021-07-12T11:11:34.9848325Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3285b8sydlcm1", - "name": "portalvhds3285b8sydlcm1", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastus", - "createdTime": "2014-05-24T04:55:36.974557Z", - "changedTime": "2021-07-12T13:11:37.9698445Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/storagetestghqqxrrqnr", - "name": "storagetestghqqxrrqnr", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastasia", - "createdTime": "2014-10-23T23:54:52.3824535Z", - "changedTime": "2021-07-12T11:11:41.8364976Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds2wdcfvkv5phc9", - "name": "portalvhds2wdcfvkv5phc9", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2014-05-24T04:55:34.6927361Z", - "changedTime": "2021-07-12T11:11:39.8951663Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2", - "name": "AzSecPackAutoConfigUA-westus2", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus2", - "createdTime": "2021-03-18T21:55:37.839206Z", - "changedTime": "2021-03-18T22:05:38.7997788Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus", - "name": "AzSecPackAutoConfigUA-eastus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "eastus", - "createdTime": "2021-04-27T07:14:50.9621072Z", - "changedTime": "2021-04-27T07:24:53.4570423Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus", - "name": "AzSecPackAutoConfigUA-westus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus", - "createdTime": "2021-06-17T22:32:45.5111313Z", - "changedTime": "2021-06-17T22:42:48.1625939Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/sdkpipeline/providers/Microsoft.DocumentDb/databaseAccounts/sdkcodegen", - "name": "sdkcodegen", - "type": "Microsoft.DocumentDb/databaseAccounts", - "kind": "MongoDB", - "location": "westus", - "identity": { - "type": "None" - }, - "createdTime": "2021-07-07T06:51:11.1964393Z", - "changedTime": "2021-07-07T07:03:04.9723107Z", - "provisioningState": "Succeeded", - "tags": { - "defaultExperience": "Azure Cosmos DB for MongoDB API", - "hidden-cosmos-mmspecial": "" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7572/providers/Microsoft.Compute/availabilitySets/test-aset460", - "name": "test-aset460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:04.6951444Z", - "changedTime": "2021-07-09T07:21:07.1849109Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481/providers/Microsoft.Compute/availabilitySets/test-aset5192", - "name": "test-aset5192", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:07.6835744Z", - "changedTime": "2021-07-09T07:21:10.3067676Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789/providers/Microsoft.Compute/availabilitySets/test-aset1315", - "name": "test-aset1315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:44.4287135Z", - "changedTime": "2021-07-09T18:09:46.8976092Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656/providers/Microsoft.Compute/availabilitySets/test-aset8673", - "name": "test-aset8673", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:48.7922406Z", - "changedTime": "2021-07-09T18:09:50.8818072Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg255/providers/Microsoft.Compute/availabilitySets/test-aset8503", - "name": "test-aset8503", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.3549019Z", - "changedTime": "2021-07-12T22:34:58.2726502Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315", - "name": "test-aset315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.4424611Z", - "changedTime": "2021-07-12T22:34:58.1472582Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611", - "name": "test-aset611", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.6903508Z", - "changedTime": "2021-07-12T22:34:58.4927518Z", - "provisioningState": "Succeeded", - "tags": {} - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3e9e8d85d6b0204ea543d2f701466674-672f09a7b958fa4b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "64fef3cb81d038fb5f146044e157c8e9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "263", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "112dbe4b-bf49-4848-a47c-f61ca228a5f2", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-request-id": "112dbe4b-bf49-4848-a47c-f61ca228a5f2", - "x-ms-routing-request-id": "WESTUS:20210712T223458Z:112dbe4b-bf49-4848-a47c-f61ca228a5f2" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611/providers/Microsoft.Resources/tags/default", - "name": "default", - "type": "Microsoft.Resources/tags", - "properties": { - "tags": {} - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "39", - "Content-Type": "application/json", - "traceparent": "00-3e9e8d85d6b0204ea543d2f701466674-f0f9237ec7afdd4d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3cd9f3bbe6f87fb41b4692685acfd5ab", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "tags": { - "key": "value" - } - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "276", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1bf4d8b-3697-44ce-a121-f45166afbc4a", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "a1bf4d8b-3697-44ce-a121-f45166afbc4a", - "x-ms-routing-request-id": "WESTUS:20210712T223459Z:a1bf4d8b-3697-44ce-a121-f45166afbc4a" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611/providers/Microsoft.Resources/tags/default", - "name": "default", - "type": "Microsoft.Resources/tags", - "properties": { - "tags": { - "key": "value" - } - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611?api-version=2021-07-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-3e9e8d85d6b0204ea543d2f701466674-ea441908f60d8649-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "79ad2522b464bf8b1f0e434a69ebcb50", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "458", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "79ad2522b464bf8b1f0e434a69ebcb50", - "x-ms-correlation-request-id": "76c3da89-f77e-4955-9577-af3cfd00d478", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "cddc9f1b-765b-40cc-82a1-cf742b194192", - "x-ms-routing-request-id": "WESTUS:20210712T223500Z:76c3da89-f77e-4955-9577-af3cfd00d478" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset611\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2,\r\n", - " \u0022virtualMachines\u0022: []\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "996470952", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/Delete().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/Delete().json deleted file mode 100644 index f7e7757023932..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/Delete().json +++ /dev/null @@ -1,4592 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e5d5936cdf45fe4c83451b44086abe75-0794dbbe34cb7248-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c2a3b0bdfd5737b981d089c76b0a4dcb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:34:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e8b0b2a0-87d4-4656-9f03-120048608ce3", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-request-id": "e8b0b2a0-87d4-4656-9f03-120048608ce3", - "x-ms-routing-request-id": "WESTUS:20210712T223500Z:e8b0b2a0-87d4-4656-9f03-120048608ce3" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9419?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "32", - "Content-Type": "application/json", - "traceparent": "00-a5554cf5e1ae2b4f9e96e5bbb941204c-a940538c12f98247-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "52fd5bf7a4b4e8b013ef813b65463a53", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:00 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0870a006-21de-4143-850c-611e2d1935ad", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "0870a006-21de-4143-850c-611e2d1935ad", - "x-ms-routing-request-id": "WESTUS:20210712T223501Z:0870a006-21de-4143-850c-611e2d1935ad" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9419", - "name": "testrg9419", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7339f8ceb710384ea28fa0719b560173-ffd8d4ba33847a46-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c646bb2b3b3c0c132f520c8cb202926f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "54667", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:01 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03159b7e-1caf-46a1-b752-c5468a5c317f", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-request-id": "03159b7e-1caf-46a1-b752-c5468a5c317f", - "x-ms-routing-request-id": "WESTUS:20210712T223501Z:03159b7e-1caf-46a1-b752-c5468a5c317f" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "West US 3", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9419/providers/Microsoft.Compute/availabilitySets/test-aset5315?api-version=2021-07-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "131", - "Content-Type": "application/json", - "traceparent": "00-7339f8ceb710384ea28fa0719b560173-d17541aecf32c945-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c385a20d09fef30bd9430d37fb1b894f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:02 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c385a20d09fef30bd9430d37fb1b894f", - "x-ms-correlation-request-id": "6087681c-74c6-4174-9f76-02ccf812c964", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;228,Microsoft.Compute/PutVM30Min;1188", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "b5d023c1-3e6c-4009-bc8f-af47811d32b8", - "x-ms-routing-request-id": "WESTUS:20210712T223502Z:6087681c-74c6-4174-9f76-02ccf812c964" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset5315\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9419/providers/Microsoft.Compute/availabilitySets/test-aset5315\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=createdTime%2CchangedTime%2CprovisioningState\u0026api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-744632e8e4a9194792ce22e87ee3a5cd-789fb12539192b4c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "a358ccee8fb42222af53ecf82ddb1013", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "7715", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:02 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c193d45b-dfc0-4866-b3b3-8fd096abe5ed", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-request-id": "c193d45b-dfc0-4866-b3b3-8fd096abe5ed", - "x-ms-routing-request-id": "WESTUS:20210712T223502Z:c193d45b-dfc0-4866-b3b3-8fd096abe5ed" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2/providers/Microsoft.ClassicStorage/storageAccounts/ema7925a82c", - "name": "ema7925a82c", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2015-02-20T19:43:15.0632092Z", - "changedTime": "2021-07-12T11:11:34.9848325Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3285b8sydlcm1", - "name": "portalvhds3285b8sydlcm1", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastus", - "createdTime": "2014-05-24T04:55:36.974557Z", - "changedTime": "2021-07-12T13:11:37.9698445Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/storagetestghqqxrrqnr", - "name": "storagetestghqqxrrqnr", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastasia", - "createdTime": "2014-10-23T23:54:52.3824535Z", - "changedTime": "2021-07-12T11:11:41.8364976Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds2wdcfvkv5phc9", - "name": "portalvhds2wdcfvkv5phc9", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2014-05-24T04:55:34.6927361Z", - "changedTime": "2021-07-12T11:11:39.8951663Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2", - "name": "AzSecPackAutoConfigUA-westus2", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus2", - "createdTime": "2021-03-18T21:55:37.839206Z", - "changedTime": "2021-03-18T22:05:38.7997788Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus", - "name": "AzSecPackAutoConfigUA-eastus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "eastus", - "createdTime": "2021-04-27T07:14:50.9621072Z", - "changedTime": "2021-04-27T07:24:53.4570423Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus", - "name": "AzSecPackAutoConfigUA-westus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus", - "createdTime": "2021-06-17T22:32:45.5111313Z", - "changedTime": "2021-06-17T22:42:48.1625939Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/sdkpipeline/providers/Microsoft.DocumentDb/databaseAccounts/sdkcodegen", - "name": "sdkcodegen", - "type": "Microsoft.DocumentDb/databaseAccounts", - "kind": "MongoDB", - "location": "westus", - "identity": { - "type": "None" - }, - "createdTime": "2021-07-07T06:51:11.1964393Z", - "changedTime": "2021-07-07T07:03:04.9723107Z", - "provisioningState": "Succeeded", - "tags": { - "defaultExperience": "Azure Cosmos DB for MongoDB API", - "hidden-cosmos-mmspecial": "" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7572/providers/Microsoft.Compute/availabilitySets/test-aset460", - "name": "test-aset460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:04.6951444Z", - "changedTime": "2021-07-09T07:21:07.1849109Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481/providers/Microsoft.Compute/availabilitySets/test-aset5192", - "name": "test-aset5192", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:07.6835744Z", - "changedTime": "2021-07-09T07:21:10.3067676Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789/providers/Microsoft.Compute/availabilitySets/test-aset1315", - "name": "test-aset1315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:44.4287135Z", - "changedTime": "2021-07-09T18:09:46.8976092Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656/providers/Microsoft.Compute/availabilitySets/test-aset8673", - "name": "test-aset8673", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:48.7922406Z", - "changedTime": "2021-07-09T18:09:50.8818072Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg255/providers/Microsoft.Compute/availabilitySets/test-aset8503", - "name": "test-aset8503", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.3549019Z", - "changedTime": "2021-07-12T22:34:58.2726502Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315", - "name": "test-aset315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.4424611Z", - "changedTime": "2021-07-12T22:34:59.0409998Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611", - "name": "test-aset611", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.6903508Z", - "changedTime": "2021-07-12T22:34:59.6584863Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803/providers/Microsoft.Compute/availabilitySets/test-aset6081", - "name": "test-aset6081", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:59.7465833Z", - "changedTime": "2021-07-12T22:35:01.6411346Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471/providers/Microsoft.Compute/availabilitySets/test-aset242", - "name": "test-aset242", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:00.3333258Z", - "changedTime": "2021-07-12T22:35:01.8087328Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623", - "name": "test-aset623", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:01.7676172Z", - "changedTime": "2021-07-12T22:35:02.5524329Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9419/providers/Microsoft.Compute/availabilitySets/test-aset5315", - "name": "test-aset5315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:02.0132276Z", - "changedTime": "2021-07-12T22:35:02.472629Z", - "provisioningState": "Succeeded", - "tags": {} - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9419/providers/Microsoft.Compute/availabilitySets/test-aset5315?api-version=2021-07-01", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c84fbcd32a7e4e4d8427db5edc7f8423-f356c324fe25814e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6818bdc80023eaeae765dab884b94f7d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Mon, 12 Jul 2021 22:35:04 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "6818bdc80023eaeae765dab884b94f7d", - "x-ms-correlation-request-id": "8f96f31a-2627-4a08-9fd6-2452a70600a7", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-request-id": "99aa69a9-9613-48ad-87c7-39f8117a6075", - "x-ms-routing-request-id": "WESTUS:20210712T223504Z:8f96f31a-2627-4a08-9fd6-2452a70600a7" - }, - "ResponseBody": [] - } - ], - "Variables": { - "RandomSeed": "1429283581", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/Delete()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/Delete()Async.json deleted file mode 100644 index 893837ab817f2..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/Delete()Async.json +++ /dev/null @@ -1,4592 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-873a528bccc39441bad5b2866e7a0f07-051d32cd14f79548-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6f8fb8fcdaa26f1e2d2efbd1cbf7cda0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:00 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dee0af2d-66d2-4ed4-8e11-62c07ad455e7", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-request-id": "dee0af2d-66d2-4ed4-8e11-62c07ad455e7", - "x-ms-routing-request-id": "WESTUS:20210712T223500Z:dee0af2d-66d2-4ed4-8e11-62c07ad455e7" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3368?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "32", - "Content-Type": "application/json", - "traceparent": "00-7e52259fdeb11742a0a9451b6d8bf60f-67a5a97caf35544b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "502a0eca1482db0b23fe7530c094abda", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:02 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "347429b9-0ec0-4df6-b5bb-837119faa6da", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "347429b9-0ec0-4df6-b5bb-837119faa6da", - "x-ms-routing-request-id": "WESTUS:20210712T223502Z:347429b9-0ec0-4df6-b5bb-837119faa6da" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3368", - "name": "testrg3368", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-c1ff6bb2213f0a408e6d49f3c4a0ad00-dd1ed9f9b0afe243-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3d14ab30a124ac0bd8d470801d3613b2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "54667", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:01 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "023e5039-30ff-4bcf-b9a3-8eae3a466645", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "023e5039-30ff-4bcf-b9a3-8eae3a466645", - "x-ms-routing-request-id": "WESTUS:20210712T223502Z:023e5039-30ff-4bcf-b9a3-8eae3a466645" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "West US 3", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3368/providers/Microsoft.Compute/availabilitySets/test-aset1409?api-version=2021-07-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "131", - "Content-Type": "application/json", - "traceparent": "00-c1ff6bb2213f0a408e6d49f3c4a0ad00-f35b1afcf5cb6041-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bd5c3dc87a5284a3937edba83e6d9a50", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:03 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "bd5c3dc87a5284a3937edba83e6d9a50", - "x-ms-correlation-request-id": "61153c31-7b53-469f-a999-225ab91da23e", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;226,Microsoft.Compute/PutVM30Min;1186", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-request-id": "d71dcc57-c7e1-4d10-809a-00dcc9f8eec0", - "x-ms-routing-request-id": "WESTUS:20210712T223503Z:61153c31-7b53-469f-a999-225ab91da23e" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset1409\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3368/providers/Microsoft.Compute/availabilitySets/test-aset1409\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=createdTime%2CchangedTime%2CprovisioningState\u0026api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-88c49d0bb4f66b43b625ba30bb45063f-471f80d4125fc846-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "57f77d611d4eb59c0890a9a5c5626d6b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "7716", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:03 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f74c7be7-0878-40b3-898e-1f922dd8f42b", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "f74c7be7-0878-40b3-898e-1f922dd8f42b", - "x-ms-routing-request-id": "WESTUS:20210712T223504Z:f74c7be7-0878-40b3-898e-1f922dd8f42b" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2/providers/Microsoft.ClassicStorage/storageAccounts/ema7925a82c", - "name": "ema7925a82c", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2015-02-20T19:43:15.0632092Z", - "changedTime": "2021-07-12T11:11:34.9848325Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3285b8sydlcm1", - "name": "portalvhds3285b8sydlcm1", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastus", - "createdTime": "2014-05-24T04:55:36.974557Z", - "changedTime": "2021-07-12T13:11:37.9698445Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/storagetestghqqxrrqnr", - "name": "storagetestghqqxrrqnr", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastasia", - "createdTime": "2014-10-23T23:54:52.3824535Z", - "changedTime": "2021-07-12T11:11:41.8364976Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds2wdcfvkv5phc9", - "name": "portalvhds2wdcfvkv5phc9", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2014-05-24T04:55:34.6927361Z", - "changedTime": "2021-07-12T11:11:39.8951663Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2", - "name": "AzSecPackAutoConfigUA-westus2", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus2", - "createdTime": "2021-03-18T21:55:37.839206Z", - "changedTime": "2021-03-18T22:05:38.7997788Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus", - "name": "AzSecPackAutoConfigUA-eastus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "eastus", - "createdTime": "2021-04-27T07:14:50.9621072Z", - "changedTime": "2021-04-27T07:24:53.4570423Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus", - "name": "AzSecPackAutoConfigUA-westus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus", - "createdTime": "2021-06-17T22:32:45.5111313Z", - "changedTime": "2021-06-17T22:42:48.1625939Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/sdkpipeline/providers/Microsoft.DocumentDb/databaseAccounts/sdkcodegen", - "name": "sdkcodegen", - "type": "Microsoft.DocumentDb/databaseAccounts", - "kind": "MongoDB", - "location": "westus", - "identity": { - "type": "None" - }, - "createdTime": "2021-07-07T06:51:11.1964393Z", - "changedTime": "2021-07-07T07:03:04.9723107Z", - "provisioningState": "Succeeded", - "tags": { - "defaultExperience": "Azure Cosmos DB for MongoDB API", - "hidden-cosmos-mmspecial": "" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7572/providers/Microsoft.Compute/availabilitySets/test-aset460", - "name": "test-aset460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:04.6951444Z", - "changedTime": "2021-07-09T07:21:07.1849109Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481/providers/Microsoft.Compute/availabilitySets/test-aset5192", - "name": "test-aset5192", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:07.6835744Z", - "changedTime": "2021-07-09T07:21:10.3067676Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789/providers/Microsoft.Compute/availabilitySets/test-aset1315", - "name": "test-aset1315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:44.4287135Z", - "changedTime": "2021-07-09T18:09:46.8976092Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656/providers/Microsoft.Compute/availabilitySets/test-aset8673", - "name": "test-aset8673", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:48.7922406Z", - "changedTime": "2021-07-09T18:09:50.8818072Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg255/providers/Microsoft.Compute/availabilitySets/test-aset8503", - "name": "test-aset8503", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.3549019Z", - "changedTime": "2021-07-12T22:34:58.2726502Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315", - "name": "test-aset315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.4424611Z", - "changedTime": "2021-07-12T22:34:59.0409998Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611", - "name": "test-aset611", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.6903508Z", - "changedTime": "2021-07-12T22:34:59.6584863Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803/providers/Microsoft.Compute/availabilitySets/test-aset6081", - "name": "test-aset6081", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:59.7465833Z", - "changedTime": "2021-07-12T22:35:01.6411346Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471/providers/Microsoft.Compute/availabilitySets/test-aset242", - "name": "test-aset242", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:00.3333258Z", - "changedTime": "2021-07-12T22:35:01.8087328Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623", - "name": "test-aset623", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:01.7676172Z", - "changedTime": "2021-07-12T22:35:02.5524329Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3368/providers/Microsoft.Compute/availabilitySets/test-aset1409", - "name": "test-aset1409", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:02.9771066Z", - "changedTime": "2021-07-12T22:35:03.6236689Z", - "provisioningState": "Succeeded", - "tags": {} - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3368/providers/Microsoft.Compute/availabilitySets/test-aset1409?api-version=2021-07-01", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-199c434ba7b54d43a683364be889ca3a-e774435f8a4ccd4a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4189203af26ed02697ef9daed062e938", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Mon, 12 Jul 2021 22:35:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "4189203af26ed02697ef9daed062e938", - "x-ms-correlation-request-id": "98618947-3038-47ce-9994-00b98755a477", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1198", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-request-id": "e58cc739-a2d0-4938-b3c2-3e570bbdf62b", - "x-ms-routing-request-id": "WESTUS:20210712T223505Z:98618947-3038-47ce-9994-00b98755a477" - }, - "ResponseBody": [] - } - ], - "Variables": { - "RandomSeed": "1141858165", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/RemoveTag().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/RemoveTag().json deleted file mode 100644 index 64f9f339dfcc7..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/RemoveTag().json +++ /dev/null @@ -1,4878 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-54c66bf7e27d284f8d2f3f75846d4029-bbc81355ab708447-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8c5487fb16c121c51e995cd7c23560df", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:04 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "efbee01d-8149-43be-bf42-8b37c606635a", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "efbee01d-8149-43be-bf42-8b37c606635a", - "x-ms-routing-request-id": "WESTUS:20210712T223505Z:efbee01d-8149-43be-bf42-8b37c606635a" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6956?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "32", - "Content-Type": "application/json", - "traceparent": "00-ae2dcef55edd224bb1fbd12b763d78da-d2eba8e4ef2f5943-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "07b2c2a3e1f54ade5fb76efac495e9c3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab353096-c280-43eb-a38b-37463ab09470", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-request-id": "ab353096-c280-43eb-a38b-37463ab09470", - "x-ms-routing-request-id": "WESTUS:20210712T223506Z:ab353096-c280-43eb-a38b-37463ab09470" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956", - "name": "testrg6956", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-34a5306ce7c3a54cbea182028c2d89e1-153ef048dc45144b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3317a97b75099d077321318f2445da90", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "54667", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "04e51308-1bdd-4aee-a006-93aed1a75d74", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-request-id": "04e51308-1bdd-4aee-a006-93aed1a75d74", - "x-ms-routing-request-id": "WESTUS:20210712T223506Z:04e51308-1bdd-4aee-a006-93aed1a75d74" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "West US 3", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748?api-version=2021-07-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "131", - "Content-Type": "application/json", - "traceparent": "00-34a5306ce7c3a54cbea182028c2d89e1-b34a82ede228254d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5b37a43f050475a542625e57275a0472", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5b37a43f050475a542625e57275a0472", - "x-ms-correlation-request-id": "ea565324-58de-4c5f-bb9a-77fd4e7ade65", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;221,Microsoft.Compute/PutVM30Min;1181", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "6b8a7572-4e06-49b5-b8be-94c1180e0a10", - "x-ms-routing-request-id": "WESTUS:20210712T223507Z:ea565324-58de-4c5f-bb9a-77fd4e7ade65" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset4748\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=createdTime%2CchangedTime%2CprovisioningState\u0026api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ee4eb25712ff3142a3010df7e8860eb5-ccd181bcfd412245-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f084699367b1753303a1f1a716af7619", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "8497", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0bec87e8-c3f3-429f-aa70-e5a4c129e0f1", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "0bec87e8-c3f3-429f-aa70-e5a4c129e0f1", - "x-ms-routing-request-id": "WESTUS:20210712T223507Z:0bec87e8-c3f3-429f-aa70-e5a4c129e0f1" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2/providers/Microsoft.ClassicStorage/storageAccounts/ema7925a82c", - "name": "ema7925a82c", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2015-02-20T19:43:15.0632092Z", - "changedTime": "2021-07-12T11:11:34.9848325Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3285b8sydlcm1", - "name": "portalvhds3285b8sydlcm1", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastus", - "createdTime": "2014-05-24T04:55:36.974557Z", - "changedTime": "2021-07-12T13:11:37.9698445Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/storagetestghqqxrrqnr", - "name": "storagetestghqqxrrqnr", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastasia", - "createdTime": "2014-10-23T23:54:52.3824535Z", - "changedTime": "2021-07-12T11:11:41.8364976Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds2wdcfvkv5phc9", - "name": "portalvhds2wdcfvkv5phc9", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2014-05-24T04:55:34.6927361Z", - "changedTime": "2021-07-12T11:11:39.8951663Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2", - "name": "AzSecPackAutoConfigUA-westus2", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus2", - "createdTime": "2021-03-18T21:55:37.839206Z", - "changedTime": "2021-03-18T22:05:38.7997788Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus", - "name": "AzSecPackAutoConfigUA-eastus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "eastus", - "createdTime": "2021-04-27T07:14:50.9621072Z", - "changedTime": "2021-04-27T07:24:53.4570423Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus", - "name": "AzSecPackAutoConfigUA-westus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus", - "createdTime": "2021-06-17T22:32:45.5111313Z", - "changedTime": "2021-06-17T22:42:48.1625939Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/sdkpipeline/providers/Microsoft.DocumentDb/databaseAccounts/sdkcodegen", - "name": "sdkcodegen", - "type": "Microsoft.DocumentDb/databaseAccounts", - "kind": "MongoDB", - "location": "westus", - "identity": { - "type": "None" - }, - "createdTime": "2021-07-07T06:51:11.1964393Z", - "changedTime": "2021-07-07T07:03:04.9723107Z", - "provisioningState": "Succeeded", - "tags": { - "defaultExperience": "Azure Cosmos DB for MongoDB API", - "hidden-cosmos-mmspecial": "" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7572/providers/Microsoft.Compute/availabilitySets/test-aset460", - "name": "test-aset460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:04.6951444Z", - "changedTime": "2021-07-09T07:21:07.1849109Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481/providers/Microsoft.Compute/availabilitySets/test-aset5192", - "name": "test-aset5192", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:07.6835744Z", - "changedTime": "2021-07-09T07:21:10.3067676Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789/providers/Microsoft.Compute/availabilitySets/test-aset1315", - "name": "test-aset1315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:44.4287135Z", - "changedTime": "2021-07-09T18:09:46.8976092Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656/providers/Microsoft.Compute/availabilitySets/test-aset8673", - "name": "test-aset8673", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:48.7922406Z", - "changedTime": "2021-07-09T18:09:50.8818072Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg255/providers/Microsoft.Compute/availabilitySets/test-aset8503", - "name": "test-aset8503", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.3549019Z", - "changedTime": "2021-07-12T22:34:58.2726502Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315", - "name": "test-aset315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.4424611Z", - "changedTime": "2021-07-12T22:34:59.0409998Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611", - "name": "test-aset611", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.6903508Z", - "changedTime": "2021-07-12T22:34:59.6584863Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803/providers/Microsoft.Compute/availabilitySets/test-aset6081", - "name": "test-aset6081", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:59.7465833Z", - "changedTime": "2021-07-12T22:35:01.6411346Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471/providers/Microsoft.Compute/availabilitySets/test-aset242", - "name": "test-aset242", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:00.3333258Z", - "changedTime": "2021-07-12T22:35:01.8087328Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623", - "name": "test-aset623", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:01.7676172Z", - "changedTime": "2021-07-12T22:35:02.5524329Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7017/providers/Microsoft.Compute/availabilitySets/test-aset1345", - "name": "test-aset1345", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:05.657807Z", - "changedTime": "2021-07-12T22:35:06.1329684Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3267/providers/Microsoft.Compute/availabilitySets/test-aset7445", - "name": "test-aset7445", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:06.5404471Z", - "changedTime": "2021-07-12T22:35:07.0092802Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748", - "name": "test-aset4748", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:06.9214478Z", - "changedTime": "2021-07-12T22:35:07.3956766Z", - "provisioningState": "Succeeded", - "tags": {} - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-87047b60691605488901e6f2d878fd08-574f79b169dada48-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "997abe1d238b60c80bebb09982e5c787", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Mon, 12 Jul 2021 22:35:07 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d722ded1-197a-4cc9-acd7-defe4921ece9", - "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-request-id": "d722ded1-197a-4cc9-acd7-defe4921ece9", - "x-ms-routing-request-id": "WESTUS:20210712T223508Z:d722ded1-197a-4cc9-acd7-defe4921ece9" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-87047b60691605488901e6f2d878fd08-71a8d995b50c2040-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "bdc3ec2713d5adc15743b325edf136fb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "264", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:07 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d42199a-5ca4-4b39-83ee-79601b17a548", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-request-id": "2d42199a-5ca4-4b39-83ee-79601b17a548", - "x-ms-routing-request-id": "WESTUS:20210712T223508Z:2d42199a-5ca4-4b39-83ee-79601b17a548" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748/providers/Microsoft.Resources/tags/default", - "name": "default", - "type": "Microsoft.Resources/tags", - "properties": { - "tags": {} - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "39", - "Content-Type": "application/json", - "traceparent": "00-87047b60691605488901e6f2d878fd08-4ff63b1585611345-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "eea169f4a14070e6a124e4c6b699f31d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "tags": { - "key": "value" - } - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "277", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b0658290-913b-4a20-867c-6916d8799fcb", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "b0658290-913b-4a20-867c-6916d8799fcb", - "x-ms-routing-request-id": "WESTUS:20210712T223509Z:b0658290-913b-4a20-867c-6916d8799fcb" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748/providers/Microsoft.Resources/tags/default", - "name": "default", - "type": "Microsoft.Resources/tags", - "properties": { - "tags": { - "key": "value" - } - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748?api-version=2021-07-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-87047b60691605488901e6f2d878fd08-24bb129fa7ef7b46-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "29806adab8eb0943fdcd41486fa27219", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "460", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "29806adab8eb0943fdcd41486fa27219", - "x-ms-correlation-request-id": "6d6cb920-4be3-46a6-8b86-941728f46ba4", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31991", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-request-id": "d3bd774c-da08-4b7b-b4c1-0a187c9ad8af", - "x-ms-routing-request-id": "WESTUS:20210712T223509Z:6d6cb920-4be3-46a6-8b86-941728f46ba4" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset4748\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2,\r\n", - " \u0022virtualMachines\u0022: []\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2d15aaf92705d34c9e7fdca561c41438-e31846a52f6c004d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "19a5b5b5d944854606531cb12efaf6bd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "277", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8096e864-d9bd-4685-a829-6ca42f894263", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-request-id": "8096e864-d9bd-4685-a829-6ca42f894263", - "x-ms-routing-request-id": "WESTUS:20210712T223509Z:8096e864-d9bd-4685-a829-6ca42f894263" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748/providers/Microsoft.Resources/tags/default", - "name": "default", - "type": "Microsoft.Resources/tags", - "properties": { - "tags": { - "key": "value" - } - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "26", - "Content-Type": "application/json", - "traceparent": "00-2d15aaf92705d34c9e7fdca561c41438-c5ff94cf49db474a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "834b96500c703b0f2597f1725f9e01fe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "tags": {} - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "264", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5055468e-656b-44b9-b3a0-871c24eff37a", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-request-id": "5055468e-656b-44b9-b3a0-871c24eff37a", - "x-ms-routing-request-id": "WESTUS:20210712T223510Z:5055468e-656b-44b9-b3a0-871c24eff37a" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748/providers/Microsoft.Resources/tags/default", - "name": "default", - "type": "Microsoft.Resources/tags", - "properties": { - "tags": {} - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748?api-version=2021-07-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2d15aaf92705d34c9e7fdca561c41438-110e86a6dcbb7645-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0111cbb2d9f401d924fb23989c92db03", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "436", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "0111cbb2d9f401d924fb23989c92db03", - "x-ms-correlation-request-id": "97ed3f9b-808a-4846-9086-e668b438d916", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31990", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-request-id": "4608c9a7-0a04-4a83-94b8-53bd85c2a249", - "x-ms-routing-request-id": "WESTUS:20210712T223510Z:97ed3f9b-808a-4846-9086-e668b438d916" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset4748\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2,\r\n", - " \u0022virtualMachines\u0022: []\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "405457586", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/RemoveTag()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/RemoveTag()Async.json deleted file mode 100644 index 50ece6fce3aa0..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/RemoveTag()Async.json +++ /dev/null @@ -1,4893 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-f544a079f498fd49baa197d58bc04a1f-6d8305df8f7c4442-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "82d208e575bafe7cca7c0930f9a84ef8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17b9188c-8215-4271-bd15-ef6d336affde", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-request-id": "17b9188c-8215-4271-bd15-ef6d336affde", - "x-ms-routing-request-id": "WESTUS:20210712T223506Z:17b9188c-8215-4271-bd15-ef6d336affde" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg3710?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "32", - "Content-Type": "application/json", - "traceparent": "00-bcfdd9f77613464b926c4ea4f8183921-d606047ada25b040-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "130ec5e7ab454556ee3fd31ae9f14cfd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0275250a-f5bc-45c6-a0c7-0b7e88de9e85", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "0275250a-f5bc-45c6-a0c7-0b7e88de9e85", - "x-ms-routing-request-id": "WESTUS:20210712T223507Z:0275250a-f5bc-45c6-a0c7-0b7e88de9e85" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710", - "name": "testrg3710", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1a5c35327949ed4b9b8da2bafd3fc495-a9f702453e4d7c4e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "240ec2754ba3fbdf5e3793ecd61b14f9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "54667", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:07 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d320397a-44f2-46e1-be06-94145d9fb0bc", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-request-id": "d320397a-44f2-46e1-be06-94145d9fb0bc", - "x-ms-routing-request-id": "WESTUS:20210712T223508Z:d320397a-44f2-46e1-be06-94145d9fb0bc" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "West US 3", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454?api-version=2021-07-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "131", - "Content-Type": "application/json", - "traceparent": "00-1a5c35327949ed4b9b8da2bafd3fc495-fffa0516ea56764f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "14c7fb0c9fdc7b5c3ccb35a9e4e08bbd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "14c7fb0c9fdc7b5c3ccb35a9e4e08bbd", - "x-ms-correlation-request-id": "3944edce-ea7b-48ef-9943-d59f6fd8dfce", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;218,Microsoft.Compute/PutVM30Min;1178", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "da3a3029-77ee-4a0e-9d67-128e53645488", - "x-ms-routing-request-id": "WESTUS:20210712T223509Z:3944edce-ea7b-48ef-9943-d59f6fd8dfce" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset1454\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=createdTime%2CchangedTime%2CprovisioningState\u0026api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-eeabd600c0a8d84e934d7ad8be7e443d-09b2e4b89e1fff45-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f6dd20bfe884d5396692e7d71636177d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "8901", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c1b715d-4edf-4c58-a296-1d1b43fea3df", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-request-id": "5c1b715d-4edf-4c58-a296-1d1b43fea3df", - "x-ms-routing-request-id": "WESTUS:20210712T223509Z:5c1b715d-4edf-4c58-a296-1d1b43fea3df" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2/providers/Microsoft.ClassicStorage/storageAccounts/ema7925a82c", - "name": "ema7925a82c", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2015-02-20T19:43:15.0632092Z", - "changedTime": "2021-07-12T11:11:34.9848325Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3285b8sydlcm1", - "name": "portalvhds3285b8sydlcm1", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastus", - "createdTime": "2014-05-24T04:55:36.974557Z", - "changedTime": "2021-07-12T13:11:37.9698445Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/storagetestghqqxrrqnr", - "name": "storagetestghqqxrrqnr", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastasia", - "createdTime": "2014-10-23T23:54:52.3824535Z", - "changedTime": "2021-07-12T11:11:41.8364976Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds2wdcfvkv5phc9", - "name": "portalvhds2wdcfvkv5phc9", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2014-05-24T04:55:34.6927361Z", - "changedTime": "2021-07-12T11:11:39.8951663Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2", - "name": "AzSecPackAutoConfigUA-westus2", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus2", - "createdTime": "2021-03-18T21:55:37.839206Z", - "changedTime": "2021-03-18T22:05:38.7997788Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus", - "name": "AzSecPackAutoConfigUA-eastus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "eastus", - "createdTime": "2021-04-27T07:14:50.9621072Z", - "changedTime": "2021-04-27T07:24:53.4570423Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus", - "name": "AzSecPackAutoConfigUA-westus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus", - "createdTime": "2021-06-17T22:32:45.5111313Z", - "changedTime": "2021-06-17T22:42:48.1625939Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/sdkpipeline/providers/Microsoft.DocumentDb/databaseAccounts/sdkcodegen", - "name": "sdkcodegen", - "type": "Microsoft.DocumentDb/databaseAccounts", - "kind": "MongoDB", - "location": "westus", - "identity": { - "type": "None" - }, - "createdTime": "2021-07-07T06:51:11.1964393Z", - "changedTime": "2021-07-07T07:03:04.9723107Z", - "provisioningState": "Succeeded", - "tags": { - "defaultExperience": "Azure Cosmos DB for MongoDB API", - "hidden-cosmos-mmspecial": "" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7572/providers/Microsoft.Compute/availabilitySets/test-aset460", - "name": "test-aset460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:04.6951444Z", - "changedTime": "2021-07-09T07:21:07.1849109Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481/providers/Microsoft.Compute/availabilitySets/test-aset5192", - "name": "test-aset5192", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:07.6835744Z", - "changedTime": "2021-07-09T07:21:10.3067676Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789/providers/Microsoft.Compute/availabilitySets/test-aset1315", - "name": "test-aset1315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:44.4287135Z", - "changedTime": "2021-07-09T18:09:46.8976092Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656/providers/Microsoft.Compute/availabilitySets/test-aset8673", - "name": "test-aset8673", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:48.7922406Z", - "changedTime": "2021-07-09T18:09:50.8818072Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg255/providers/Microsoft.Compute/availabilitySets/test-aset8503", - "name": "test-aset8503", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.3549019Z", - "changedTime": "2021-07-12T22:34:58.2726502Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315", - "name": "test-aset315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.4424611Z", - "changedTime": "2021-07-12T22:34:59.0409998Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611", - "name": "test-aset611", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.6903508Z", - "changedTime": "2021-07-12T22:34:59.6584863Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803/providers/Microsoft.Compute/availabilitySets/test-aset6081", - "name": "test-aset6081", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:59.7465833Z", - "changedTime": "2021-07-12T22:35:01.6411346Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471/providers/Microsoft.Compute/availabilitySets/test-aset242", - "name": "test-aset242", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:00.3333258Z", - "changedTime": "2021-07-12T22:35:01.8087328Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623", - "name": "test-aset623", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:01.7676172Z", - "changedTime": "2021-07-12T22:35:02.5524329Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7017/providers/Microsoft.Compute/availabilitySets/test-aset1345", - "name": "test-aset1345", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:05.657807Z", - "changedTime": "2021-07-12T22:35:06.1329684Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3267/providers/Microsoft.Compute/availabilitySets/test-aset7445", - "name": "test-aset7445", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:06.5404471Z", - "changedTime": "2021-07-12T22:35:07.0092802Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748", - "name": "test-aset4748", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:06.9214478Z", - "changedTime": "2021-07-12T22:35:08.9511209Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454", - "name": "test-aset1454", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:08.9137705Z", - "changedTime": "2021-07-12T22:35:09.3991342Z", - "provisioningState": "Succeeded", - "tags": {} - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2abe28d3f49ba24dae45f8039cbe4eaa-eaecf2f0cdf7e947-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f3b9d6ab88e9490fb74de6c4b9e8b9e3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Mon, 12 Jul 2021 22:35:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "57eb53e8-eb11-4d68-aa24-7d605b032218", - "x-ms-ratelimit-remaining-subscription-deletes": "14991", - "x-ms-request-id": "57eb53e8-eb11-4d68-aa24-7d605b032218", - "x-ms-routing-request-id": "WESTUS:20210712T223510Z:57eb53e8-eb11-4d68-aa24-7d605b032218" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2abe28d3f49ba24dae45f8039cbe4eaa-7340175a73ff844c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c3ea11b495034b38a95d2557da6b63f8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "264", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "efac7c30-6173-4503-895e-02872a107f9c", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-request-id": "efac7c30-6173-4503-895e-02872a107f9c", - "x-ms-routing-request-id": "WESTUS:20210712T223510Z:efac7c30-6173-4503-895e-02872a107f9c" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454/providers/Microsoft.Resources/tags/default", - "name": "default", - "type": "Microsoft.Resources/tags", - "properties": { - "tags": {} - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "39", - "Content-Type": "application/json", - "traceparent": "00-2abe28d3f49ba24dae45f8039cbe4eaa-faf92252409ab743-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ebc86800239f363a10933e3702751b7d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "tags": { - "key": "value" - } - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "277", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "efa62cb7-8389-4a8d-abd8-fb8de122143b", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "efa62cb7-8389-4a8d-abd8-fb8de122143b", - "x-ms-routing-request-id": "WESTUS:20210712T223511Z:efa62cb7-8389-4a8d-abd8-fb8de122143b" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454/providers/Microsoft.Resources/tags/default", - "name": "default", - "type": "Microsoft.Resources/tags", - "properties": { - "tags": { - "key": "value" - } - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454?api-version=2021-07-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-2abe28d3f49ba24dae45f8039cbe4eaa-910198eed00fe04f-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "042304d9534c167a9e6d4a8b63b76f4b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "460", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "042304d9534c167a9e6d4a8b63b76f4b", - "x-ms-correlation-request-id": "db0ac719-d7aa-4256-bec8-7c980d1caf1c", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31987", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "150bdb19-54fb-4fea-80b5-4d248e1b6ccf", - "x-ms-routing-request-id": "WESTUS:20210712T223511Z:db0ac719-d7aa-4256-bec8-7c980d1caf1c" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset1454\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2,\r\n", - " \u0022virtualMachines\u0022: []\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cc5fab4a44af694cb31b22035586d835-56d6a7d2ebd57944-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "51c4ede9cd1f9143d6b3b27056014934", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "277", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6cba742d-27c1-462e-9e1d-e1e14f6d66a4", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "6cba742d-27c1-462e-9e1d-e1e14f6d66a4", - "x-ms-routing-request-id": "WESTUS:20210712T223511Z:6cba742d-27c1-462e-9e1d-e1e14f6d66a4" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454/providers/Microsoft.Resources/tags/default", - "name": "default", - "type": "Microsoft.Resources/tags", - "properties": { - "tags": { - "key": "value" - } - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "26", - "Content-Type": "application/json", - "traceparent": "00-cc5fab4a44af694cb31b22035586d835-b6881147d310544a-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "d67ea7415f48acaceeb24d31d9afd359", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "tags": {} - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "264", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8142d63c-9c45-4ec4-b86d-7841071d9d04", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "8142d63c-9c45-4ec4-b86d-7841071d9d04", - "x-ms-routing-request-id": "WESTUS:20210712T223512Z:8142d63c-9c45-4ec4-b86d-7841071d9d04" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454/providers/Microsoft.Resources/tags/default", - "name": "default", - "type": "Microsoft.Resources/tags", - "properties": { - "tags": {} - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454?api-version=2021-07-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cc5fab4a44af694cb31b22035586d835-8cc9e2d5ef632848-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "144df224cab10b5dc0912d98a009bf9d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "436", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:12 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "144df224cab10b5dc0912d98a009bf9d", - "x-ms-correlation-request-id": "3ddf2b6f-6784-4678-b19f-6f7272acf9c0", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31986", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "b2579b4b-213e-4326-a7ff-1ea9ecbf0679", - "x-ms-routing-request-id": "WESTUS:20210712T223512Z:3ddf2b6f-6784-4678-b19f-6f7272acf9c0" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset1454\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2,\r\n", - " \u0022virtualMachines\u0022: []\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "2043030208", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/SetTags().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/SetTags().json deleted file mode 100644 index 495092646f2c3..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/SetTags().json +++ /dev/null @@ -1,4825 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ba99ae022cc656489e733628f1a22190-9c7f2a25d8479d47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "4262e90fc35037291d1b55b4586508a9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6e6e331-2c95-42cb-a0ca-8902c82e1508", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "f6e6e331-2c95-42cb-a0ca-8902c82e1508", - "x-ms-routing-request-id": "WESTUS:20210712T223511Z:f6e6e331-2c95-42cb-a0ca-8902c82e1508" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg9543?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "32", - "Content-Type": "application/json", - "traceparent": "00-c9c0186cda8c624baec6096975da55b9-a630b2fc8fc6144c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "52ea394208f2d0e13f858b4e885ca086", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:12 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71dcce9d-d9d2-4778-9fae-cd70471a1f5a", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "71dcce9d-d9d2-4778-9fae-cd70471a1f5a", - "x-ms-routing-request-id": "WESTUS:20210712T223512Z:71dcce9d-d9d2-4778-9fae-cd70471a1f5a" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543", - "name": "testrg9543", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-b77c09b502b34246a4b8d2e1451c4b54-490636725824ec44-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "273f1312a96b23c6365273f6b3c8454f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "54667", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:12 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84fe492c-883e-4fc3-9783-5a4bb4539267", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-request-id": "84fe492c-883e-4fc3-9783-5a4bb4539267", - "x-ms-routing-request-id": "WESTUS:20210712T223512Z:84fe492c-883e-4fc3-9783-5a4bb4539267" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "West US 3", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460?api-version=2021-07-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "131", - "Content-Type": "application/json", - "traceparent": "00-b77c09b502b34246a4b8d2e1451c4b54-5e1a822796064746-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "698903ff1dd180e171113d9de895bfb4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:14 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "698903ff1dd180e171113d9de895bfb4", - "x-ms-correlation-request-id": "b6a72d16-704c-4f17-8555-a3188569af0d", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;207,Microsoft.Compute/PutVM30Min;1167", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "c4ac6a9f-6de6-4365-b676-634eecf69ec9", - "x-ms-routing-request-id": "WESTUS:20210712T223514Z:b6a72d16-704c-4f17-8555-a3188569af0d" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset1460\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=createdTime%2CchangedTime%2CprovisioningState\u0026api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-0c2253b5452d984fb83fe46942d8d656-9a0738b67202db48-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5988ff461c17f53d31beb5596c293ba1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "10836", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43529dd3-8aa7-410d-ad53-d12c1656f062", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "43529dd3-8aa7-410d-ad53-d12c1656f062", - "x-ms-routing-request-id": "WESTUS:20210712T223514Z:43529dd3-8aa7-410d-ad53-d12c1656f062" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2/providers/Microsoft.ClassicStorage/storageAccounts/ema7925a82c", - "name": "ema7925a82c", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2015-02-20T19:43:15.0632092Z", - "changedTime": "2021-07-12T11:11:34.9848325Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3285b8sydlcm1", - "name": "portalvhds3285b8sydlcm1", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastus", - "createdTime": "2014-05-24T04:55:36.974557Z", - "changedTime": "2021-07-12T13:11:37.9698445Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/storagetestghqqxrrqnr", - "name": "storagetestghqqxrrqnr", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastasia", - "createdTime": "2014-10-23T23:54:52.3824535Z", - "changedTime": "2021-07-12T11:11:41.8364976Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds2wdcfvkv5phc9", - "name": "portalvhds2wdcfvkv5phc9", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2014-05-24T04:55:34.6927361Z", - "changedTime": "2021-07-12T11:11:39.8951663Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2", - "name": "AzSecPackAutoConfigUA-westus2", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus2", - "createdTime": "2021-03-18T21:55:37.839206Z", - "changedTime": "2021-03-18T22:05:38.7997788Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus", - "name": "AzSecPackAutoConfigUA-eastus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "eastus", - "createdTime": "2021-04-27T07:14:50.9621072Z", - "changedTime": "2021-04-27T07:24:53.4570423Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus", - "name": "AzSecPackAutoConfigUA-westus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus", - "createdTime": "2021-06-17T22:32:45.5111313Z", - "changedTime": "2021-06-17T22:42:48.1625939Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/sdkpipeline/providers/Microsoft.DocumentDb/databaseAccounts/sdkcodegen", - "name": "sdkcodegen", - "type": "Microsoft.DocumentDb/databaseAccounts", - "kind": "MongoDB", - "location": "westus", - "identity": { - "type": "None" - }, - "createdTime": "2021-07-07T06:51:11.1964393Z", - "changedTime": "2021-07-07T07:03:04.9723107Z", - "provisioningState": "Succeeded", - "tags": { - "defaultExperience": "Azure Cosmos DB for MongoDB API", - "hidden-cosmos-mmspecial": "" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7572/providers/Microsoft.Compute/availabilitySets/test-aset460", - "name": "test-aset460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:04.6951444Z", - "changedTime": "2021-07-09T07:21:07.1849109Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481/providers/Microsoft.Compute/availabilitySets/test-aset5192", - "name": "test-aset5192", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:07.6835744Z", - "changedTime": "2021-07-09T07:21:10.3067676Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789/providers/Microsoft.Compute/availabilitySets/test-aset1315", - "name": "test-aset1315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:44.4287135Z", - "changedTime": "2021-07-09T18:09:46.8976092Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656/providers/Microsoft.Compute/availabilitySets/test-aset8673", - "name": "test-aset8673", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:48.7922406Z", - "changedTime": "2021-07-09T18:09:50.8818072Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg255/providers/Microsoft.Compute/availabilitySets/test-aset8503", - "name": "test-aset8503", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.3549019Z", - "changedTime": "2021-07-12T22:34:58.2726502Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315", - "name": "test-aset315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.4424611Z", - "changedTime": "2021-07-12T22:34:59.0409998Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611", - "name": "test-aset611", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.6903508Z", - "changedTime": "2021-07-12T22:34:59.6584863Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803/providers/Microsoft.Compute/availabilitySets/test-aset6081", - "name": "test-aset6081", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:59.7465833Z", - "changedTime": "2021-07-12T22:35:01.6411346Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471/providers/Microsoft.Compute/availabilitySets/test-aset242", - "name": "test-aset242", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:00.3333258Z", - "changedTime": "2021-07-12T22:35:01.8087328Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623", - "name": "test-aset623", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:01.7676172Z", - "changedTime": "2021-07-12T22:35:02.5524329Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7017/providers/Microsoft.Compute/availabilitySets/test-aset1345", - "name": "test-aset1345", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:05.657807Z", - "changedTime": "2021-07-12T22:35:06.1329684Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3267/providers/Microsoft.Compute/availabilitySets/test-aset7445", - "name": "test-aset7445", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:06.5404471Z", - "changedTime": "2021-07-12T22:35:07.0092802Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748", - "name": "test-aset4748", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:06.9214478Z", - "changedTime": "2021-07-12T22:35:09.7711081Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454", - "name": "test-aset1454", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:08.9137705Z", - "changedTime": "2021-07-12T22:35:12.2634382Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6500/providers/Microsoft.Compute/availabilitySets/test-aset102", - "name": "test-aset102", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:09.5159536Z", - "changedTime": "2021-07-12T22:35:10.323048Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9664/providers/Microsoft.Compute/availabilitySets/test-aset893", - "name": "test-aset893", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:10.0681296Z", - "changedTime": "2021-07-12T22:35:10.5692018Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8035/providers/Microsoft.Compute/availabilitySets/test-aset886", - "name": "test-aset886", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:10.6852163Z", - "changedTime": "2021-07-12T22:35:11.2486836Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9990/providers/Microsoft.Compute/availabilitySets/test-aset2867", - "name": "test-aset2867", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:11.1451381Z", - "changedTime": "2021-07-12T22:35:11.8315196Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460", - "name": "test-aset1460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:13.3985808Z", - "changedTime": "2021-07-12T22:35:14.3834358Z", - "provisioningState": "Succeeded", - "tags": {} - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8c9bdcf86e1d5343a50616679db9ff80-8a611ad1ff90f740-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "6ac7be93507535e52cf945a2612c1297", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Mon, 12 Jul 2021 22:35:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f0b88be1-4cc6-4607-8e91-46dae1389174", - "x-ms-ratelimit-remaining-subscription-deletes": "14983", - "x-ms-request-id": "f0b88be1-4cc6-4607-8e91-46dae1389174", - "x-ms-routing-request-id": "WESTUS:20210712T223515Z:f0b88be1-4cc6-4607-8e91-46dae1389174" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8c9bdcf86e1d5343a50616679db9ff80-8468efe532ec4547-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "e8568085650c119d0b5dc3aa147d23fa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "264", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2eb0e635-4c6d-4f4b-bd6e-d27303634ce2", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "2eb0e635-4c6d-4f4b-bd6e-d27303634ce2", - "x-ms-routing-request-id": "WESTUS:20210712T223516Z:2eb0e635-4c6d-4f4b-bd6e-d27303634ce2" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460/providers/Microsoft.Resources/tags/default", - "name": "default", - "type": "Microsoft.Resources/tags", - "properties": { - "tags": {} - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "39", - "Content-Type": "application/json", - "traceparent": "00-8c9bdcf86e1d5343a50616679db9ff80-a1c93ffd60a24641-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b0211af32112f64719522d1dd79a9305", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "tags": { - "key": "value" - } - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "277", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "845a04ae-035c-4c74-be0d-3c597af90641", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-request-id": "845a04ae-035c-4c74-be0d-3c597af90641", - "x-ms-routing-request-id": "WESTUS:20210712T223516Z:845a04ae-035c-4c74-be0d-3c597af90641" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460/providers/Microsoft.Resources/tags/default", - "name": "default", - "type": "Microsoft.Resources/tags", - "properties": { - "tags": { - "key": "value" - } - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460?api-version=2021-07-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-8c9bdcf86e1d5343a50616679db9ff80-d432037574c48a48-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ecd41eac52d32d9420b55e178c3b21ae", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "460", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ecd41eac52d32d9420b55e178c3b21ae", - "x-ms-correlation-request-id": "c9437eca-6d45-4cbf-b2a4-552d55a790d2", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31985", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "2d9ccacf-b71c-4278-8028-65ef79eea09a", - "x-ms-routing-request-id": "WESTUS:20210712T223516Z:c9437eca-6d45-4cbf-b2a4-552d55a790d2" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset1460\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2,\r\n", - " \u0022virtualMachines\u0022: []\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "195675395", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/SetTags()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/SetTags()Async.json deleted file mode 100644 index a8152ca915d78..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/SetTags()Async.json +++ /dev/null @@ -1,4879 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-52d36076c5c4b54fb36f65acc6caa4a5-9ef56fbc589b4043-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "62bc39a80cc19de38b937b8081cbf5ce", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3413ac33-09b2-4295-bd23-90e462c2957d", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-request-id": "3413ac33-09b2-4295-bd23-90e462c2957d", - "x-ms-routing-request-id": "WESTUS:20210712T223513Z:3413ac33-09b2-4295-bd23-90e462c2957d" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg5139?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "32", - "Content-Type": "application/json", - "traceparent": "00-32024eac8808964f85045e6171b44a91-c43dc9123d971d4c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "0953be5d30066a5ae627a736f6f9c6fe", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:14 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "54f75148-c59b-4ea6-a357-20ce1866249b", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-request-id": "54f75148-c59b-4ea6-a357-20ce1866249b", - "x-ms-routing-request-id": "WESTUS:20210712T223515Z:54f75148-c59b-4ea6-a357-20ce1866249b" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139", - "name": "testrg5139", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ba2735ec8e6fbb41b36e9874664b228e-85b4d508cd705b49-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "763e52808424edaddf5ed4ffdb214efd", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "54667", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:14 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6603cce9-6e06-4bbd-a285-e8d6c03584a6", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-request-id": "6603cce9-6e06-4bbd-a285-e8d6c03584a6", - "x-ms-routing-request-id": "WESTUS:20210712T223515Z:6603cce9-6e06-4bbd-a285-e8d6c03584a6" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "West US 3", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139/providers/Microsoft.Compute/availabilitySets/test-aset6457?api-version=2021-07-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "131", - "Content-Type": "application/json", - "traceparent": "00-ba2735ec8e6fbb41b36e9874664b228e-00fa99e2eb29e54d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7b37376fa2106108f7dae53c669599b5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:17 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7b37376fa2106108f7dae53c669599b5", - "x-ms-correlation-request-id": "4afbb1d2-51ca-4205-a908-582d8333e13c", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;201,Microsoft.Compute/PutVM30Min;1161", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-request-id": "c11d8faa-aa4a-45ae-8868-5f250b314e83", - "x-ms-routing-request-id": "WESTUS:20210712T223517Z:4afbb1d2-51ca-4205-a908-582d8333e13c" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset6457\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139/providers/Microsoft.Compute/availabilitySets/test-aset6457\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=createdTime%2CchangedTime%2CprovisioningState\u0026api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-7c2db84ec00dc147ab30aa74ef2458b3-36195ecfc0947847-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c1863959828eddbb49dc7e499e70864a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "12413", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b98887cc-70b9-42c9-960d-c00c940536b3", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "b98887cc-70b9-42c9-960d-c00c940536b3", - "x-ms-routing-request-id": "WESTUS:20210712T223517Z:b98887cc-70b9-42c9-960d-c00c940536b3" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2/providers/Microsoft.ClassicStorage/storageAccounts/ema7925a82c", - "name": "ema7925a82c", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2015-02-20T19:43:15.0632092Z", - "changedTime": "2021-07-12T11:11:34.9848325Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3285b8sydlcm1", - "name": "portalvhds3285b8sydlcm1", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastus", - "createdTime": "2014-05-24T04:55:36.974557Z", - "changedTime": "2021-07-12T13:11:37.9698445Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/storagetestghqqxrrqnr", - "name": "storagetestghqqxrrqnr", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastasia", - "createdTime": "2014-10-23T23:54:52.3824535Z", - "changedTime": "2021-07-12T11:11:41.8364976Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds2wdcfvkv5phc9", - "name": "portalvhds2wdcfvkv5phc9", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2014-05-24T04:55:34.6927361Z", - "changedTime": "2021-07-12T11:11:39.8951663Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2", - "name": "AzSecPackAutoConfigUA-westus2", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus2", - "createdTime": "2021-03-18T21:55:37.839206Z", - "changedTime": "2021-03-18T22:05:38.7997788Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus", - "name": "AzSecPackAutoConfigUA-eastus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "eastus", - "createdTime": "2021-04-27T07:14:50.9621072Z", - "changedTime": "2021-04-27T07:24:53.4570423Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus", - "name": "AzSecPackAutoConfigUA-westus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus", - "createdTime": "2021-06-17T22:32:45.5111313Z", - "changedTime": "2021-06-17T22:42:48.1625939Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/sdkpipeline/providers/Microsoft.DocumentDb/databaseAccounts/sdkcodegen", - "name": "sdkcodegen", - "type": "Microsoft.DocumentDb/databaseAccounts", - "kind": "MongoDB", - "location": "westus", - "identity": { - "type": "None" - }, - "createdTime": "2021-07-07T06:51:11.1964393Z", - "changedTime": "2021-07-07T07:03:04.9723107Z", - "provisioningState": "Succeeded", - "tags": { - "defaultExperience": "Azure Cosmos DB for MongoDB API", - "hidden-cosmos-mmspecial": "" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7572/providers/Microsoft.Compute/availabilitySets/test-aset460", - "name": "test-aset460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:04.6951444Z", - "changedTime": "2021-07-09T07:21:07.1849109Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481/providers/Microsoft.Compute/availabilitySets/test-aset5192", - "name": "test-aset5192", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:07.6835744Z", - "changedTime": "2021-07-09T07:21:10.3067676Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789/providers/Microsoft.Compute/availabilitySets/test-aset1315", - "name": "test-aset1315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:44.4287135Z", - "changedTime": "2021-07-09T18:09:46.8976092Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656/providers/Microsoft.Compute/availabilitySets/test-aset8673", - "name": "test-aset8673", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:48.7922406Z", - "changedTime": "2021-07-09T18:09:50.8818072Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg255/providers/Microsoft.Compute/availabilitySets/test-aset8503", - "name": "test-aset8503", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.3549019Z", - "changedTime": "2021-07-12T22:34:58.2726502Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315", - "name": "test-aset315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.4424611Z", - "changedTime": "2021-07-12T22:34:59.0409998Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611", - "name": "test-aset611", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.6903508Z", - "changedTime": "2021-07-12T22:34:59.6584863Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803/providers/Microsoft.Compute/availabilitySets/test-aset6081", - "name": "test-aset6081", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:59.7465833Z", - "changedTime": "2021-07-12T22:35:01.6411346Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471/providers/Microsoft.Compute/availabilitySets/test-aset242", - "name": "test-aset242", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:00.3333258Z", - "changedTime": "2021-07-12T22:35:01.8087328Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623", - "name": "test-aset623", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:01.7676172Z", - "changedTime": "2021-07-12T22:35:02.5524329Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7017/providers/Microsoft.Compute/availabilitySets/test-aset1345", - "name": "test-aset1345", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:05.657807Z", - "changedTime": "2021-07-12T22:35:06.1329684Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3267/providers/Microsoft.Compute/availabilitySets/test-aset7445", - "name": "test-aset7445", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:06.5404471Z", - "changedTime": "2021-07-12T22:35:07.0092802Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748", - "name": "test-aset4748", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:06.9214478Z", - "changedTime": "2021-07-12T22:35:09.7711081Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454", - "name": "test-aset1454", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:08.9137705Z", - "changedTime": "2021-07-12T22:35:12.2634382Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6500/providers/Microsoft.Compute/availabilitySets/test-aset102", - "name": "test-aset102", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:09.5159536Z", - "changedTime": "2021-07-12T22:35:10.323048Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9664/providers/Microsoft.Compute/availabilitySets/test-aset893", - "name": "test-aset893", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:10.0681296Z", - "changedTime": "2021-07-12T22:35:10.5692018Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8035/providers/Microsoft.Compute/availabilitySets/test-aset886", - "name": "test-aset886", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:10.6852163Z", - "changedTime": "2021-07-12T22:35:11.2486836Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9990/providers/Microsoft.Compute/availabilitySets/test-aset2867", - "name": "test-aset2867", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:11.1451381Z", - "changedTime": "2021-07-12T22:35:11.8315196Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460", - "name": "test-aset1460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:13.3985808Z", - "changedTime": "2021-07-12T22:35:16.5705084Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9956/providers/Microsoft.Compute/availabilitySets/test-aset4461", - "name": "test-aset4461", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:15.3435773Z", - "changedTime": "2021-07-12T22:35:15.7934685Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2893/providers/Microsoft.Compute/availabilitySets/test-aset3357", - "name": "test-aset3357", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:16.1246705Z", - "changedTime": "2021-07-12T22:35:16.5998399Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9956/providers/Microsoft.Compute/availabilitySets/test-aset6019", - "name": "test-aset6019", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:16.4545024Z", - "changedTime": "2021-07-12T22:35:16.9005606Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139/providers/Microsoft.Compute/availabilitySets/test-aset6457", - "name": "test-aset6457", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:16.6846369Z", - "changedTime": "2021-07-12T22:35:17.4126914Z", - "provisioningState": "Succeeded", - "tags": {} - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139/providers/Microsoft.Compute/availabilitySets/test-aset6457/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-00646e1d9a7fd448b95a91c4df263261-8206fef13b0d5c40-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "257d1ec5abd67b6dfefcd5f47b36db8c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Mon, 12 Jul 2021 22:35:17 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63707cc1-dc45-4f0d-82cc-cb4fe119220c", - "x-ms-ratelimit-remaining-subscription-deletes": "14985", - "x-ms-request-id": "63707cc1-dc45-4f0d-82cc-cb4fe119220c", - "x-ms-routing-request-id": "WESTUS:20210712T223518Z:63707cc1-dc45-4f0d-82cc-cb4fe119220c" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139/providers/Microsoft.Compute/availabilitySets/test-aset6457/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-00646e1d9a7fd448b95a91c4df263261-1d6de547130cbe47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "2de3decfd80eff26fa6d59b375f09b35", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "264", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:17 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5868a5f6-5dd8-4def-86d0-6dac3c8264af", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-request-id": "5868a5f6-5dd8-4def-86d0-6dac3c8264af", - "x-ms-routing-request-id": "WESTUS:20210712T223518Z:5868a5f6-5dd8-4def-86d0-6dac3c8264af" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139/providers/Microsoft.Compute/availabilitySets/test-aset6457/providers/Microsoft.Resources/tags/default", - "name": "default", - "type": "Microsoft.Resources/tags", - "properties": { - "tags": {} - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139/providers/Microsoft.Compute/availabilitySets/test-aset6457/providers/Microsoft.Resources/tags/default?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "39", - "Content-Type": "application/json", - "traceparent": "00-00646e1d9a7fd448b95a91c4df263261-5e2169c78c2ff44d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "670cdc94e5ecae30cb0ac391acc76213", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "tags": { - "key": "value" - } - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "277", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:18 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f662b2b2-70c8-42a0-98c7-67ac6faa0b5f", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "f662b2b2-70c8-42a0-98c7-67ac6faa0b5f", - "x-ms-routing-request-id": "WESTUS:20210712T223519Z:f662b2b2-70c8-42a0-98c7-67ac6faa0b5f" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139/providers/Microsoft.Compute/availabilitySets/test-aset6457/providers/Microsoft.Resources/tags/default", - "name": "default", - "type": "Microsoft.Resources/tags", - "properties": { - "tags": { - "key": "value" - } - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139/providers/Microsoft.Compute/availabilitySets/test-aset6457?api-version=2021-07-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-00646e1d9a7fd448b95a91c4df263261-b88109bc1fe87743-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c079f100598dec3cf87e2b6951ba060d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "460", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:18 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "c079f100598dec3cf87e2b6951ba060d", - "x-ms-correlation-request-id": "177066eb-f8b8-4b7a-9673-70f972a610b0", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31984", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-request-id": "8300a15d-f7a6-4776-abe3-1c7a5a78f6d6", - "x-ms-routing-request-id": "WESTUS:20210712T223519Z:177066eb-f8b8-4b7a-9673-70f972a610b0" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset6457\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139/providers/Microsoft.Compute/availabilitySets/test-aset6457\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2,\r\n", - " \u0022virtualMachines\u0022: []\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "732672590", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/StartDelete().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/StartDelete().json deleted file mode 100644 index 67d9ec19c3f1a..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/StartDelete().json +++ /dev/null @@ -1,4804 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1427b3accde63249bf41f91a38d24329-07bd8259a4f7b842-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "be4e8f128d35e5375582bf0911e351f2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:17 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30497ba1-13e9-4e2a-9614-34cb4ff6b5ec", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-request-id": "30497ba1-13e9-4e2a-9614-34cb4ff6b5ec", - "x-ms-routing-request-id": "WESTUS:20210712T223518Z:30497ba1-13e9-4e2a-9614-34cb4ff6b5ec" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg2153?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "32", - "Content-Type": "application/json", - "traceparent": "00-fa1af347ab628a458233ae985534c268-b56863e80edf6b4b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "fcbe75c13b2d8e68dd8c732882832c2d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:18 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "afb8e8c4-d46e-4bd2-84dd-2bf24f4baff3", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-request-id": "afb8e8c4-d46e-4bd2-84dd-2bf24f4baff3", - "x-ms-routing-request-id": "WESTUS:20210712T223519Z:afb8e8c4-d46e-4bd2-84dd-2bf24f4baff3" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2153", - "name": "testrg2153", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-14bafb9da5f7ca4d827a1ea8acd5f20c-e6ec77cf40e60f44-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "8121ca4b31cd1710946c09f987ddf83f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "54667", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:18 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e3ad987-bb8e-400b-b1dc-964ee3d7501f", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-request-id": "6e3ad987-bb8e-400b-b1dc-964ee3d7501f", - "x-ms-routing-request-id": "WESTUS:20210712T223519Z:6e3ad987-bb8e-400b-b1dc-964ee3d7501f" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "West US 3", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2153/providers/Microsoft.Compute/availabilitySets/test-aset896?api-version=2021-07-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "131", - "Content-Type": "application/json", - "traceparent": "00-14bafb9da5f7ca4d827a1ea8acd5f20c-e55c2cf27cb33a48-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "31595ed1e538e6542f5800c3bdd2ff93", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "406", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:20 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "31595ed1e538e6542f5800c3bdd2ff93", - "x-ms-correlation-request-id": "f2cea9d3-00b7-4c43-8f8e-7b91c7cefb64", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;195,Microsoft.Compute/PutVM30Min;1155", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "cf624ffc-f46a-44f4-83ce-b50e2179221c", - "x-ms-routing-request-id": "WESTUS:20210712T223521Z:f2cea9d3-00b7-4c43-8f8e-7b91c7cefb64" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset896\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2153/providers/Microsoft.Compute/availabilitySets/test-aset896\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=createdTime%2CchangedTime%2CprovisioningState\u0026api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4dc79c1eff872f408a6a6c6d1c788d2a-837cf3dbbb6a2947-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "24b1e87bfbd265b7763b5275304c5ac1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "13986", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:20 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cbabc9f8-b37b-4ed2-a14b-b2e6dd016454", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-request-id": "cbabc9f8-b37b-4ed2-a14b-b2e6dd016454", - "x-ms-routing-request-id": "WESTUS:20210712T223521Z:cbabc9f8-b37b-4ed2-a14b-b2e6dd016454" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2/providers/Microsoft.ClassicStorage/storageAccounts/ema7925a82c", - "name": "ema7925a82c", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2015-02-20T19:43:15.0632092Z", - "changedTime": "2021-07-12T11:11:34.9848325Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3285b8sydlcm1", - "name": "portalvhds3285b8sydlcm1", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastus", - "createdTime": "2014-05-24T04:55:36.974557Z", - "changedTime": "2021-07-12T13:11:37.9698445Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/storagetestghqqxrrqnr", - "name": "storagetestghqqxrrqnr", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastasia", - "createdTime": "2014-10-23T23:54:52.3824535Z", - "changedTime": "2021-07-12T11:11:41.8364976Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds2wdcfvkv5phc9", - "name": "portalvhds2wdcfvkv5phc9", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2014-05-24T04:55:34.6927361Z", - "changedTime": "2021-07-12T11:11:39.8951663Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2", - "name": "AzSecPackAutoConfigUA-westus2", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus2", - "createdTime": "2021-03-18T21:55:37.839206Z", - "changedTime": "2021-03-18T22:05:38.7997788Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus", - "name": "AzSecPackAutoConfigUA-eastus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "eastus", - "createdTime": "2021-04-27T07:14:50.9621072Z", - "changedTime": "2021-04-27T07:24:53.4570423Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus", - "name": "AzSecPackAutoConfigUA-westus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus", - "createdTime": "2021-06-17T22:32:45.5111313Z", - "changedTime": "2021-06-17T22:42:48.1625939Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/sdkpipeline/providers/Microsoft.DocumentDb/databaseAccounts/sdkcodegen", - "name": "sdkcodegen", - "type": "Microsoft.DocumentDb/databaseAccounts", - "kind": "MongoDB", - "location": "westus", - "identity": { - "type": "None" - }, - "createdTime": "2021-07-07T06:51:11.1964393Z", - "changedTime": "2021-07-07T07:03:04.9723107Z", - "provisioningState": "Succeeded", - "tags": { - "defaultExperience": "Azure Cosmos DB for MongoDB API", - "hidden-cosmos-mmspecial": "" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7572/providers/Microsoft.Compute/availabilitySets/test-aset460", - "name": "test-aset460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:04.6951444Z", - "changedTime": "2021-07-09T07:21:07.1849109Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481/providers/Microsoft.Compute/availabilitySets/test-aset5192", - "name": "test-aset5192", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:07.6835744Z", - "changedTime": "2021-07-09T07:21:10.3067676Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789/providers/Microsoft.Compute/availabilitySets/test-aset1315", - "name": "test-aset1315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:44.4287135Z", - "changedTime": "2021-07-09T18:09:46.8976092Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656/providers/Microsoft.Compute/availabilitySets/test-aset8673", - "name": "test-aset8673", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:48.7922406Z", - "changedTime": "2021-07-09T18:09:50.8818072Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg255/providers/Microsoft.Compute/availabilitySets/test-aset8503", - "name": "test-aset8503", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.3549019Z", - "changedTime": "2021-07-12T22:34:58.2726502Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315", - "name": "test-aset315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.4424611Z", - "changedTime": "2021-07-12T22:34:59.0409998Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611", - "name": "test-aset611", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.6903508Z", - "changedTime": "2021-07-12T22:34:59.6584863Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803/providers/Microsoft.Compute/availabilitySets/test-aset6081", - "name": "test-aset6081", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:59.7465833Z", - "changedTime": "2021-07-12T22:35:01.6411346Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471/providers/Microsoft.Compute/availabilitySets/test-aset242", - "name": "test-aset242", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:00.3333258Z", - "changedTime": "2021-07-12T22:35:01.8087328Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623", - "name": "test-aset623", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:01.7676172Z", - "changedTime": "2021-07-12T22:35:02.5524329Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7017/providers/Microsoft.Compute/availabilitySets/test-aset1345", - "name": "test-aset1345", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:05.657807Z", - "changedTime": "2021-07-12T22:35:06.1329684Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3267/providers/Microsoft.Compute/availabilitySets/test-aset7445", - "name": "test-aset7445", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:06.5404471Z", - "changedTime": "2021-07-12T22:35:07.0092802Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748", - "name": "test-aset4748", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:06.9214478Z", - "changedTime": "2021-07-12T22:35:09.7711081Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454", - "name": "test-aset1454", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:08.9137705Z", - "changedTime": "2021-07-12T22:35:12.2634382Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6500/providers/Microsoft.Compute/availabilitySets/test-aset102", - "name": "test-aset102", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:09.5159536Z", - "changedTime": "2021-07-12T22:35:10.323048Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9664/providers/Microsoft.Compute/availabilitySets/test-aset893", - "name": "test-aset893", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:10.0681296Z", - "changedTime": "2021-07-12T22:35:10.5692018Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8035/providers/Microsoft.Compute/availabilitySets/test-aset886", - "name": "test-aset886", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:10.6852163Z", - "changedTime": "2021-07-12T22:35:11.2486836Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9990/providers/Microsoft.Compute/availabilitySets/test-aset2867", - "name": "test-aset2867", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:11.1451381Z", - "changedTime": "2021-07-12T22:35:11.8315196Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460", - "name": "test-aset1460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:13.3985808Z", - "changedTime": "2021-07-12T22:35:16.5705084Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9956/providers/Microsoft.Compute/availabilitySets/test-aset4461", - "name": "test-aset4461", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:15.3435773Z", - "changedTime": "2021-07-12T22:35:15.7934685Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2893/providers/Microsoft.Compute/availabilitySets/test-aset3357", - "name": "test-aset3357", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:16.1246705Z", - "changedTime": "2021-07-12T22:35:16.5998399Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9956/providers/Microsoft.Compute/availabilitySets/test-aset6019", - "name": "test-aset6019", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:16.4545024Z", - "changedTime": "2021-07-12T22:35:16.9005606Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139/providers/Microsoft.Compute/availabilitySets/test-aset6457", - "name": "test-aset6457", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:16.6846369Z", - "changedTime": "2021-07-12T22:35:19.0599999Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2893/providers/Microsoft.Compute/availabilitySets/test-aset4614", - "name": "test-aset4614", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:17.6726885Z", - "changedTime": "2021-07-12T22:35:18.1501326Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1144/providers/Microsoft.Compute/availabilitySets/test-aset6937", - "name": "test-aset6937", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:18.0805643Z", - "changedTime": "2021-07-12T22:35:18.5242545Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5925/providers/Microsoft.Compute/availabilitySets/test-aset360", - "name": "test-aset360", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:19.8307393Z", - "changedTime": "2021-07-12T22:35:20.2900404Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2153/providers/Microsoft.Compute/availabilitySets/test-aset896", - "name": "test-aset896", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:20.2625477Z", - "changedTime": "2021-07-12T22:35:20.7123412Z", - "provisioningState": "Succeeded", - "tags": {} - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2153/providers/Microsoft.Compute/availabilitySets/test-aset896?api-version=2021-07-01", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-5a14e9ead7f1334cb4ad0f7a2d2161c9-63cd770414acaf49-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "661c766d7245e86e6a1582534c858799", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Mon, 12 Jul 2021 22:35:21 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "661c766d7245e86e6a1582534c858799", - "x-ms-correlation-request-id": "64c23c5f-636f-41c6-a4aa-2d45c3c6961d", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;235,Microsoft.Compute/DeleteVM30Min;1195", - "x-ms-ratelimit-remaining-subscription-deletes": "14981", - "x-ms-request-id": "6b3db719-8e84-4fb9-b512-2fc05ed17677", - "x-ms-routing-request-id": "WESTUS:20210712T223522Z:64c23c5f-636f-41c6-a4aa-2d45c3c6961d" - }, - "ResponseBody": [] - } - ], - "Variables": { - "RandomSeed": "1975457016", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/StartDelete()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/StartDelete()Async.json deleted file mode 100644 index dc1344609783f..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/StartDelete()Async.json +++ /dev/null @@ -1,4817 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-e23584e64451d24c867825c72cd84d60-ee9bb65b83a59841-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5cb684d932c9f82fe91e9177f2c75d28", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:20 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1bc120f4-3942-4517-9d00-adf162800f4f", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-request-id": "1bc120f4-3942-4517-9d00-adf162800f4f", - "x-ms-routing-request-id": "WESTUS:20210712T223520Z:1bc120f4-3942-4517-9d00-adf162800f4f" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg7079?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "32", - "Content-Type": "application/json", - "traceparent": "00-b1d5738e6ef5984f8497b73faae70159-bb0e59545085b340-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f7521f299a1f78215dab50d5b15f8f4b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:21 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0b6b27c-5c47-40f3-83f9-5da731a098f0", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-request-id": "d0b6b27c-5c47-40f3-83f9-5da731a098f0", - "x-ms-routing-request-id": "WESTUS:20210712T223521Z:d0b6b27c-5c47-40f3-83f9-5da731a098f0" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7079", - "name": "testrg7079", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-fdf8c57650cbbd4babe947cedfac9525-3f414f4f7b80b64e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "593015d9c5587fb64e9b38b339ef88a5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "54667", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:21 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2da01f06-5353-48b9-aa1e-759554b92926", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "2da01f06-5353-48b9-aa1e-759554b92926", - "x-ms-routing-request-id": "WESTUS:20210712T223522Z:2da01f06-5353-48b9-aa1e-759554b92926" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "West US 3", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7079/providers/Microsoft.Compute/availabilitySets/test-aset6257?api-version=2021-07-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "131", - "Content-Type": "application/json", - "traceparent": "00-fdf8c57650cbbd4babe947cedfac9525-130c61b29667b043-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5c5147e0b9ee94e9e36c87df2238be02", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "5c5147e0b9ee94e9e36c87df2238be02", - "x-ms-correlation-request-id": "8db61d32-23b1-4dd9-8994-a2a633588dec", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;193,Microsoft.Compute/PutVM30Min;1153", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-request-id": "252f7122-d055-45bc-bfc3-ccb123b4c3d8", - "x-ms-routing-request-id": "WESTUS:20210712T223523Z:8db61d32-23b1-4dd9-8994-a2a633588dec" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset6257\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7079/providers/Microsoft.Compute/availabilitySets/test-aset6257\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=createdTime%2CchangedTime%2CprovisioningState\u0026api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-ddfc98f71b73684e9512445e4e6aff5c-f890d9925a3aeb4c-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "17d02fc7ee3d1f642b9b76ec3ed75c16", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "14379", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4426b73e-b040-4fa2-ba55-d22def2f73a6", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-request-id": "4426b73e-b040-4fa2-ba55-d22def2f73a6", - "x-ms-routing-request-id": "WESTUS:20210712T223523Z:4426b73e-b040-4fa2-ba55-d22def2f73a6" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2/providers/Microsoft.ClassicStorage/storageAccounts/ema7925a82c", - "name": "ema7925a82c", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2015-02-20T19:43:15.0632092Z", - "changedTime": "2021-07-12T11:11:34.9848325Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3285b8sydlcm1", - "name": "portalvhds3285b8sydlcm1", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastus", - "createdTime": "2014-05-24T04:55:36.974557Z", - "changedTime": "2021-07-12T13:11:37.9698445Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/storagetestghqqxrrqnr", - "name": "storagetestghqqxrrqnr", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastasia", - "createdTime": "2014-10-23T23:54:52.3824535Z", - "changedTime": "2021-07-12T11:11:41.8364976Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds2wdcfvkv5phc9", - "name": "portalvhds2wdcfvkv5phc9", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2014-05-24T04:55:34.6927361Z", - "changedTime": "2021-07-12T11:11:39.8951663Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2", - "name": "AzSecPackAutoConfigUA-westus2", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus2", - "createdTime": "2021-03-18T21:55:37.839206Z", - "changedTime": "2021-03-18T22:05:38.7997788Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus", - "name": "AzSecPackAutoConfigUA-eastus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "eastus", - "createdTime": "2021-04-27T07:14:50.9621072Z", - "changedTime": "2021-04-27T07:24:53.4570423Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus", - "name": "AzSecPackAutoConfigUA-westus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus", - "createdTime": "2021-06-17T22:32:45.5111313Z", - "changedTime": "2021-06-17T22:42:48.1625939Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/sdkpipeline/providers/Microsoft.DocumentDb/databaseAccounts/sdkcodegen", - "name": "sdkcodegen", - "type": "Microsoft.DocumentDb/databaseAccounts", - "kind": "MongoDB", - "location": "westus", - "identity": { - "type": "None" - }, - "createdTime": "2021-07-07T06:51:11.1964393Z", - "changedTime": "2021-07-07T07:03:04.9723107Z", - "provisioningState": "Succeeded", - "tags": { - "defaultExperience": "Azure Cosmos DB for MongoDB API", - "hidden-cosmos-mmspecial": "" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7572/providers/Microsoft.Compute/availabilitySets/test-aset460", - "name": "test-aset460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:04.6951444Z", - "changedTime": "2021-07-09T07:21:07.1849109Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481/providers/Microsoft.Compute/availabilitySets/test-aset5192", - "name": "test-aset5192", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:07.6835744Z", - "changedTime": "2021-07-09T07:21:10.3067676Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789/providers/Microsoft.Compute/availabilitySets/test-aset1315", - "name": "test-aset1315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:44.4287135Z", - "changedTime": "2021-07-09T18:09:46.8976092Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656/providers/Microsoft.Compute/availabilitySets/test-aset8673", - "name": "test-aset8673", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:48.7922406Z", - "changedTime": "2021-07-09T18:09:50.8818072Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg255/providers/Microsoft.Compute/availabilitySets/test-aset8503", - "name": "test-aset8503", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.3549019Z", - "changedTime": "2021-07-12T22:34:58.2726502Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315", - "name": "test-aset315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.4424611Z", - "changedTime": "2021-07-12T22:34:59.0409998Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611", - "name": "test-aset611", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.6903508Z", - "changedTime": "2021-07-12T22:34:59.6584863Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803/providers/Microsoft.Compute/availabilitySets/test-aset6081", - "name": "test-aset6081", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:59.7465833Z", - "changedTime": "2021-07-12T22:35:01.6411346Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471/providers/Microsoft.Compute/availabilitySets/test-aset242", - "name": "test-aset242", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:00.3333258Z", - "changedTime": "2021-07-12T22:35:01.8087328Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623", - "name": "test-aset623", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:01.7676172Z", - "changedTime": "2021-07-12T22:35:02.5524329Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7017/providers/Microsoft.Compute/availabilitySets/test-aset1345", - "name": "test-aset1345", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:05.657807Z", - "changedTime": "2021-07-12T22:35:06.1329684Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3267/providers/Microsoft.Compute/availabilitySets/test-aset7445", - "name": "test-aset7445", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:06.5404471Z", - "changedTime": "2021-07-12T22:35:07.0092802Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748", - "name": "test-aset4748", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:06.9214478Z", - "changedTime": "2021-07-12T22:35:09.7711081Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454", - "name": "test-aset1454", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:08.9137705Z", - "changedTime": "2021-07-12T22:35:12.2634382Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6500/providers/Microsoft.Compute/availabilitySets/test-aset102", - "name": "test-aset102", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:09.5159536Z", - "changedTime": "2021-07-12T22:35:10.323048Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9664/providers/Microsoft.Compute/availabilitySets/test-aset893", - "name": "test-aset893", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:10.0681296Z", - "changedTime": "2021-07-12T22:35:10.5692018Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8035/providers/Microsoft.Compute/availabilitySets/test-aset886", - "name": "test-aset886", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:10.6852163Z", - "changedTime": "2021-07-12T22:35:11.2486836Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9990/providers/Microsoft.Compute/availabilitySets/test-aset2867", - "name": "test-aset2867", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:11.1451381Z", - "changedTime": "2021-07-12T22:35:11.8315196Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460", - "name": "test-aset1460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:13.3985808Z", - "changedTime": "2021-07-12T22:35:16.5705084Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9956/providers/Microsoft.Compute/availabilitySets/test-aset4461", - "name": "test-aset4461", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:15.3435773Z", - "changedTime": "2021-07-12T22:35:15.7934685Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2893/providers/Microsoft.Compute/availabilitySets/test-aset3357", - "name": "test-aset3357", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:16.1246705Z", - "changedTime": "2021-07-12T22:35:16.5998399Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9956/providers/Microsoft.Compute/availabilitySets/test-aset6019", - "name": "test-aset6019", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:16.4545024Z", - "changedTime": "2021-07-12T22:35:16.9005606Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139/providers/Microsoft.Compute/availabilitySets/test-aset6457", - "name": "test-aset6457", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:16.6846369Z", - "changedTime": "2021-07-12T22:35:19.0599999Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2893/providers/Microsoft.Compute/availabilitySets/test-aset4614", - "name": "test-aset4614", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:17.6726885Z", - "changedTime": "2021-07-12T22:35:18.1501326Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1144/providers/Microsoft.Compute/availabilitySets/test-aset6937", - "name": "test-aset6937", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:18.0805643Z", - "changedTime": "2021-07-12T22:35:18.5242545Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5925/providers/Microsoft.Compute/availabilitySets/test-aset360", - "name": "test-aset360", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:19.8307393Z", - "changedTime": "2021-07-12T22:35:20.2900404Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6374/providers/Microsoft.Compute/availabilitySets/test-aset5069", - "name": "test-aset5069", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:22.7203564Z", - "changedTime": "2021-07-12T22:35:23.1761653Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7079/providers/Microsoft.Compute/availabilitySets/test-aset6257", - "name": "test-aset6257", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:22.9910596Z", - "changedTime": "2021-07-12T22:35:23.4426885Z", - "provisioningState": "Succeeded", - "tags": {} - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7079/providers/Microsoft.Compute/availabilitySets/test-aset6257?api-version=2021-07-01", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-a07f441e527b774dba3925d569c6f144-8143bc6909fe8648-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "9a8735dc4001e6ad77f7c077e9eaaa1d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Mon, 12 Jul 2021 22:35:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "9a8735dc4001e6ad77f7c077e9eaaa1d", - "x-ms-correlation-request-id": "ea93d18b-5aaf-469f-9119-5389f9f007b8", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/DeleteVM3Min;234,Microsoft.Compute/DeleteVM30Min;1194", - "x-ms-ratelimit-remaining-subscription-deletes": "14977", - "x-ms-request-id": "d7002ead-8851-4491-9310-9000bf6fee01", - "x-ms-routing-request-id": "WESTUS:20210712T223525Z:ea93d18b-5aaf-469f-9119-5389f9f007b8" - }, - "ResponseBody": [] - } - ], - "Variables": { - "RandomSeed": "1735156871", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/StartUpdate().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/StartUpdate().json deleted file mode 100644 index 0625ac25196a7..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/StartUpdate().json +++ /dev/null @@ -1,4888 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1c8f0889742e4a4b883ea205abaf501e-868d21e7ff9bd64d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "abbf817f8c4cd0af72dab7afe24137c1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:22 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8650736e-93b0-47e7-b969-7164da97a7c0", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-request-id": "8650736e-93b0-47e7-b969-7164da97a7c0", - "x-ms-routing-request-id": "WESTUS:20210712T223523Z:8650736e-93b0-47e7-b969-7164da97a7c0" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6907?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "32", - "Content-Type": "application/json", - "traceparent": "00-9bd6b52ffb04cc48a02a30157f00b294-87266f18aa875545-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c2ea972c36c2e3617b534020646594f3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b3e676a-8db7-4b19-957a-bb5002f6f4de", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "2b3e676a-8db7-4b19-957a-bb5002f6f4de", - "x-ms-routing-request-id": "WESTUS:20210712T223524Z:2b3e676a-8db7-4b19-957a-bb5002f6f4de" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6907", - "name": "testrg6907", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-1fccc9853d99564e876c3569f7e54ca6-a6d8d74b1eeab845-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b004c03df19d5653101930e774b9ad54", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "54667", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9916fa0-03bb-4bd2-94d2-2e68d812dd85", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "a9916fa0-03bb-4bd2-94d2-2e68d812dd85", - "x-ms-routing-request-id": "WESTUS:20210712T223524Z:a9916fa0-03bb-4bd2-94d2-2e68d812dd85" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "West US 3", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6907/providers/Microsoft.Compute/availabilitySets/test-aset2758?api-version=2021-07-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "131", - "Content-Type": "application/json", - "traceparent": "00-1fccc9853d99564e876c3569f7e54ca6-9c9cd9b31660a64e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "ea3eec31bdf75d4bc8d1396eb00d7522", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:25 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "ea3eec31bdf75d4bc8d1396eb00d7522", - "x-ms-correlation-request-id": "997837be-26a7-41ec-9824-dd572e12905c", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;188,Microsoft.Compute/PutVM30Min;1148", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-request-id": "17cdc8de-1e30-4b13-865d-3cfce8a0329a", - "x-ms-routing-request-id": "WESTUS:20210712T223526Z:997837be-26a7-41ec-9824-dd572e12905c" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset2758\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6907/providers/Microsoft.Compute/availabilitySets/test-aset2758\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=createdTime%2CchangedTime%2CprovisioningState\u0026api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-34587d24706859428744aeca35108dcf-4ca24d659552c24d-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7933cc930856804475a7e8cbb8e4a603", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "15551", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:25 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c8ac21f-7e06-4a70-b197-144015ecee1a", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-request-id": "3c8ac21f-7e06-4a70-b197-144015ecee1a", - "x-ms-routing-request-id": "WESTUS:20210712T223526Z:3c8ac21f-7e06-4a70-b197-144015ecee1a" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2/providers/Microsoft.ClassicStorage/storageAccounts/ema7925a82c", - "name": "ema7925a82c", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2015-02-20T19:43:15.0632092Z", - "changedTime": "2021-07-12T11:11:34.9848325Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3285b8sydlcm1", - "name": "portalvhds3285b8sydlcm1", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastus", - "createdTime": "2014-05-24T04:55:36.974557Z", - "changedTime": "2021-07-12T13:11:37.9698445Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/storagetestghqqxrrqnr", - "name": "storagetestghqqxrrqnr", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastasia", - "createdTime": "2014-10-23T23:54:52.3824535Z", - "changedTime": "2021-07-12T11:11:41.8364976Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds2wdcfvkv5phc9", - "name": "portalvhds2wdcfvkv5phc9", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2014-05-24T04:55:34.6927361Z", - "changedTime": "2021-07-12T11:11:39.8951663Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2", - "name": "AzSecPackAutoConfigUA-westus2", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus2", - "createdTime": "2021-03-18T21:55:37.839206Z", - "changedTime": "2021-03-18T22:05:38.7997788Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus", - "name": "AzSecPackAutoConfigUA-eastus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "eastus", - "createdTime": "2021-04-27T07:14:50.9621072Z", - "changedTime": "2021-04-27T07:24:53.4570423Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus", - "name": "AzSecPackAutoConfigUA-westus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus", - "createdTime": "2021-06-17T22:32:45.5111313Z", - "changedTime": "2021-06-17T22:42:48.1625939Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/sdkpipeline/providers/Microsoft.DocumentDb/databaseAccounts/sdkcodegen", - "name": "sdkcodegen", - "type": "Microsoft.DocumentDb/databaseAccounts", - "kind": "MongoDB", - "location": "westus", - "identity": { - "type": "None" - }, - "createdTime": "2021-07-07T06:51:11.1964393Z", - "changedTime": "2021-07-07T07:03:04.9723107Z", - "provisioningState": "Succeeded", - "tags": { - "defaultExperience": "Azure Cosmos DB for MongoDB API", - "hidden-cosmos-mmspecial": "" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7572/providers/Microsoft.Compute/availabilitySets/test-aset460", - "name": "test-aset460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:04.6951444Z", - "changedTime": "2021-07-09T07:21:07.1849109Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481/providers/Microsoft.Compute/availabilitySets/test-aset5192", - "name": "test-aset5192", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:07.6835744Z", - "changedTime": "2021-07-09T07:21:10.3067676Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789/providers/Microsoft.Compute/availabilitySets/test-aset1315", - "name": "test-aset1315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:44.4287135Z", - "changedTime": "2021-07-09T18:09:46.8976092Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656/providers/Microsoft.Compute/availabilitySets/test-aset8673", - "name": "test-aset8673", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:48.7922406Z", - "changedTime": "2021-07-09T18:09:50.8818072Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg255/providers/Microsoft.Compute/availabilitySets/test-aset8503", - "name": "test-aset8503", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.3549019Z", - "changedTime": "2021-07-12T22:34:58.2726502Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315", - "name": "test-aset315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.4424611Z", - "changedTime": "2021-07-12T22:34:59.0409998Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611", - "name": "test-aset611", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.6903508Z", - "changedTime": "2021-07-12T22:34:59.6584863Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803/providers/Microsoft.Compute/availabilitySets/test-aset6081", - "name": "test-aset6081", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:59.7465833Z", - "changedTime": "2021-07-12T22:35:01.6411346Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471/providers/Microsoft.Compute/availabilitySets/test-aset242", - "name": "test-aset242", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:00.3333258Z", - "changedTime": "2021-07-12T22:35:01.8087328Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623", - "name": "test-aset623", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:01.7676172Z", - "changedTime": "2021-07-12T22:35:02.5524329Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7017/providers/Microsoft.Compute/availabilitySets/test-aset1345", - "name": "test-aset1345", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:05.657807Z", - "changedTime": "2021-07-12T22:35:06.1329684Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3267/providers/Microsoft.Compute/availabilitySets/test-aset7445", - "name": "test-aset7445", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:06.5404471Z", - "changedTime": "2021-07-12T22:35:07.0092802Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748", - "name": "test-aset4748", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:06.9214478Z", - "changedTime": "2021-07-12T22:35:09.7711081Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454", - "name": "test-aset1454", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:08.9137705Z", - "changedTime": "2021-07-12T22:35:12.2634382Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6500/providers/Microsoft.Compute/availabilitySets/test-aset102", - "name": "test-aset102", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:09.5159536Z", - "changedTime": "2021-07-12T22:35:10.323048Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9664/providers/Microsoft.Compute/availabilitySets/test-aset893", - "name": "test-aset893", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:10.0681296Z", - "changedTime": "2021-07-12T22:35:10.5692018Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8035/providers/Microsoft.Compute/availabilitySets/test-aset886", - "name": "test-aset886", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:10.6852163Z", - "changedTime": "2021-07-12T22:35:11.2486836Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9990/providers/Microsoft.Compute/availabilitySets/test-aset2867", - "name": "test-aset2867", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:11.1451381Z", - "changedTime": "2021-07-12T22:35:11.8315196Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460", - "name": "test-aset1460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:13.3985808Z", - "changedTime": "2021-07-12T22:35:16.5705084Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9956/providers/Microsoft.Compute/availabilitySets/test-aset4461", - "name": "test-aset4461", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:15.3435773Z", - "changedTime": "2021-07-12T22:35:15.7934685Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2893/providers/Microsoft.Compute/availabilitySets/test-aset3357", - "name": "test-aset3357", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:16.1246705Z", - "changedTime": "2021-07-12T22:35:16.5998399Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9956/providers/Microsoft.Compute/availabilitySets/test-aset6019", - "name": "test-aset6019", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:16.4545024Z", - "changedTime": "2021-07-12T22:35:16.9005606Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139/providers/Microsoft.Compute/availabilitySets/test-aset6457", - "name": "test-aset6457", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:16.6846369Z", - "changedTime": "2021-07-12T22:35:19.0599999Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2893/providers/Microsoft.Compute/availabilitySets/test-aset4614", - "name": "test-aset4614", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:17.6726885Z", - "changedTime": "2021-07-12T22:35:18.1501326Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1144/providers/Microsoft.Compute/availabilitySets/test-aset6937", - "name": "test-aset6937", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:18.0805643Z", - "changedTime": "2021-07-12T22:35:18.5242545Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5925/providers/Microsoft.Compute/availabilitySets/test-aset360", - "name": "test-aset360", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:19.8307393Z", - "changedTime": "2021-07-12T22:35:20.2900404Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6374/providers/Microsoft.Compute/availabilitySets/test-aset5069", - "name": "test-aset5069", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:22.7203564Z", - "changedTime": "2021-07-12T22:35:23.1761653Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6377/providers/Microsoft.Compute/availabilitySets/test-aset9023", - "name": "test-aset9023", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:23.8634822Z", - "changedTime": "2021-07-12T22:35:25.1603757Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8472/providers/Microsoft.Compute/availabilitySets/test-aset7846", - "name": "test-aset7846", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:24.0879677Z", - "changedTime": "2021-07-12T22:35:24.5333857Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3934/providers/Microsoft.Compute/availabilitySets/test-aset4013", - "name": "test-aset4013", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:25.1960009Z", - "changedTime": "2021-07-12T22:35:25.8031556Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6907/providers/Microsoft.Compute/availabilitySets/test-aset2758", - "name": "test-aset2758", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:25.2990585Z", - "changedTime": "2021-07-12T22:35:25.746556Z", - "provisioningState": "Succeeded", - "tags": {} - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6907/providers/Microsoft.Compute/availabilitySets/test-aset2758?api-version=2021-07-01", - "RequestMethod": "PATCH", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "144", - "Content-Type": "application/json", - "traceparent": "00-69a7d9334bd7db48be4ad3ef9948868a-32801354b14ff64e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cd2b0ea336b6cb975c97548b0b2e2ccb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "cd2b0ea336b6cb975c97548b0b2e2ccb", - "x-ms-correlation-request-id": "eaa4bdef-b8df-491b-b606-3cfdb845565e", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;183,Microsoft.Compute/PutVM30Min;1143", - "x-ms-ratelimit-remaining-subscription-writes": "1183", - "x-ms-request-id": "2d6af893-8e6f-4ac2-8985-8e03213250d8", - "x-ms-routing-request-id": "WESTUS:20210712T223527Z:eaa4bdef-b8df-491b-b606-3cfdb845565e" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset2758\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6907/providers/Microsoft.Compute/availabilitySets/test-aset2758\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "1307234193", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/StartUpdate()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/StartUpdate()Async.json deleted file mode 100644 index 04f243055441d..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/GenericResourceExpandedOperationsTests/StartUpdate()Async.json +++ /dev/null @@ -1,4916 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-da367356961d104695f06889debce351-f60408be4645b54e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "c73e64288182f5cfff5815cba9d8cbf7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "468", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:25 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7497576-10f1-4262-9d36-968c420fcabc", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-request-id": "c7497576-10f1-4262-9d36-968c420fcabc", - "x-ms-routing-request-id": "WESTUS:20210712T223526Z:c7497576-10f1-4262-9d36-968c420fcabc" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourcegroups/testrg6585?api-version=2019-10-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "32", - "Content-Type": "application/json", - "traceparent": "00-19564d171431c942b9f3031b4cc8ee39-7caab0a1eed3f441-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5002ca1bd473db6798890c40a7824d65", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "location": "westus2", - "tags": {} - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "228", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1896cdcc-fe40-471b-b7e7-4cace07d413b", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-request-id": "1896cdcc-fe40-471b-b7e7-4cace07d413b", - "x-ms-routing-request-id": "WESTUS:20210712T223527Z:1896cdcc-fe40-471b-b7e7-4cace07d413b" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6585", - "name": "testrg6585", - "type": "Microsoft.Resources/resourceGroups", - "location": "westus2", - "tags": {}, - "properties": { - "provisioningState": "Succeeded" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute?api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-cf3f60b61d460a4b96795548883a476d-6cb08ebdbf33ca47-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "df1f7edbbbf592b523201a0f9c95fcf3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "54667", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad8b18b1-8130-4746-b96d-04b8ad5f2420", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-request-id": "ad8b18b1-8130-4746-b96d-04b8ad5f2420", - "x-ms-routing-request-id": "WESTUS:20210712T223527Z:ad8b18b1-8130-4746-b96d-04b8ad5f2420" - }, - "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/providers/Microsoft.Compute", - "namespace": "Microsoft.Compute", - "authorizations": [ - { - "applicationId": "60e6cd67-9c8c-4951-9b3c-23c25a2169af", - "roleDefinitionId": "e4770acb-272e-4dc8-87f3-12f44a612224" - }, - { - "applicationId": "a303894e-f1d8-4a37-bf10-67aa654a0596", - "roleDefinitionId": "903ac751-8ad5-4e5a-bfc2-5e49f450a241" - }, - { - "applicationId": "a8b6bf88-1d1a-4626-b040-9a729ea93c65", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "184909ca-69f1-4368-a6a7-c558ee6eb0bd", - "roleDefinitionId": "45c8267c-80ba-4b96-9a43-115b8f49fccd" - }, - { - "applicationId": "5e5e43d4-54da-4211-86a4-c6e7f3715801", - "roleDefinitionId": "ffcd6e5b-8772-457d-bb17-89703c03428f" - }, - { - "applicationId": "ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "372140e0-b3b7-4226-8ef9-d57986796201", - "roleDefinitionId": "cb17cddc-dbac-4ae0-ae79-8db34eddfca0" - }, - { - "applicationId": "b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab", - "roleDefinitionId": "6efa92ca-56b6-40af-a468-5e3d2b5232f0" - }, - { - "applicationId": "579d9c9d-4c83-4efc-8124-7eba65ed3356", - "roleDefinitionId": "8c99c4ce-d744-4597-a2f0-0a0044d67560" - } - ], - "resourceTypes": [ - { - "resourceType": "availabilitySets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachineScaleSets/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2015-06-15", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/extensions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/virtualMachines/networkInterfaces", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-09-01", - "2016-08-01", - "2016-07-01", - "2016-06-01", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "virtualMachineScaleSets/publicIPAddresses", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations", - "locations": [], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-10-30-preview", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/vmSizes", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/runCommands", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/usages", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachines", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/virtualMachineScaleSets", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "locations/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "operations", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones", - "locations": [], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/edgeZones/publishers", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2020-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "restorePointCollections", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "restorePointCollections/restorePoints", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30" - ], - "capabilities": "None" - }, - { - "resourceType": "proximityPlacementGroups", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "sshPublicKeys", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "virtualMachines/metricDefinitions", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "West US 3", - "Jio India West" - ], - "apiVersions": [ - "2014-04-01" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/spotEvictionRates", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/spotPriceHistory", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01" - ], - "defaultApiVersion": "2020-06-01", - "capabilities": "None" - }, - { - "resourceType": "locations/sharedGalleries", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-09-30", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview", - "2016-03-30", - "2015-06-15", - "2015-05-01-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2017-03-09-profile", - "apiVersion": "2016-03-30" - }, - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2017-12-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "sharedVMImages", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "sharedVMImages/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "defaultApiVersion": "2017-10-15-preview", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/artifactPublishers", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central" - ], - "apiVersions": [ - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/capsoperations", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01", - "2017-10-15-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "galleries/images/versions", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/galleries", - "locations": [ - "West Central US", - "South Central US", - "East US 2", - "Southeast Asia", - "West Europe", - "West US", - "East US", - "Canada Central", - "North Europe", - "North Central US", - "Brazil South", - "UK West", - "West India", - "East Asia", - "Australia East", - "Japan East", - "Korea South", - "West US 2", - "Canada East", - "UK South", - "Central India", - "South India", - "Australia Southeast", - "Japan West", - "Korea Central", - "France Central", - "Central US", - "Australia Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-09-30", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-06-01" - ], - "defaultApiVersion": "2018-06-01", - "capabilities": "None" - }, - { - "resourceType": "disks", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "snapshots", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-30", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/diskoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01", - "2019-03-01", - "2018-09-30", - "2018-06-01", - "2018-04-01", - "2017-03-30", - "2016-04-30-preview" - ], - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "None" - }, - { - "resourceType": "diskEncryptionSets", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01", - "2019-11-01", - "2019-07-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SystemAssignedResourceIdentity, SupportsTags, SupportsLocation" - }, - { - "resourceType": "diskAccesses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-04-01", - "2020-12-01", - "2020-09-30", - "2020-06-30", - "2020-05-01" - ], - "defaultApiVersion": "2020-06-30", - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "cloudServices/roles", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/csoperations", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsVersions", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "locations/cloudServiceOsFamilies", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01" - ], - "defaultApiVersion": "2021-03-01", - "capabilities": "None" - }, - { - "resourceType": "cloudServices/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/roleInstances/networkInterfaces", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "cloudServices/publicIPAddresses", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-03-01", - "2020-10-01-preview" - ], - "capabilities": "None" - }, - { - "resourceType": "images", - "locations": [ - "Southeast Asia", - "East US 2", - "Central US", - "West Europe", - "East US", - "North Central US", - "South Central US", - "West US", - "North Europe", - "East Asia", - "Brazil South", - "West US 2", - "West Central US", - "UK West", - "UK South", - "Japan East", - "Japan West", - "Canada Central", - "Canada East", - "Central India", - "South India", - "Australia East", - "Australia Southeast", - "Korea Central", - "Korea South", - "West India", - "France Central", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01", - "2017-03-30", - "2016-08-30", - "2016-04-30-preview" - ], - "defaultApiVersion": "2020-06-01", - "apiProfiles": [ - { - "profileVersion": "2018-03-01-hybrid", - "apiVersion": "2017-03-30" - }, - { - "profileVersion": "2018-06-01-profile", - "apiVersion": "2018-04-01" - } - ], - "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation" - }, - { - "resourceType": "locations/logAnalytics", - "locations": [ - "East US", - "East US 2", - "West US", - "Central US", - "North Central US", - "South Central US", - "North Europe", - "West Europe", - "East Asia", - "Southeast Asia", - "Japan East", - "Japan West", - "Australia East", - "Australia Southeast", - "Australia Central", - "Brazil South", - "South India", - "Central India", - "West India", - "Canada Central", - "Canada East", - "West US 2", - "West Central US", - "UK South", - "UK West", - "Korea Central", - "Korea South", - "France Central", - "South Africa North", - "UAE North", - "Switzerland North", - "Germany West Central", - "Norway East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01", - "2018-06-01", - "2018-04-01", - "2017-12-01" - ], - "capabilities": "None" - }, - { - "resourceType": "hostGroups", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - }, - { - "resourceType": "hostGroups/hosts", - "locations": [ - "Central US", - "East US 2", - "West Europe", - "Southeast Asia", - "France Central", - "North Europe", - "West US 2", - "East US", - "UK South", - "Japan East", - "Japan West", - "East Asia", - "North Central US", - "South Central US", - "Canada East", - "Korea Central", - "Brazil South", - "UK West", - "Canada Central", - "West US", - "West Central US", - "Central India", - "South India", - "Australia Southeast", - "Korea South", - "West India", - "South Africa North", - "UAE North", - "Australia Central", - "Switzerland North", - "Germany West Central", - "Norway East", - "Australia East", - "Jio India West", - "West US 3" - ], - "apiVersions": [ - "2021-07-01", - "2021-04-01", - "2021-03-01", - "2020-12-01", - "2020-06-01", - "2019-12-01", - "2019-07-01", - "2019-03-01", - "2018-10-01" - ], - "defaultApiVersion": "2020-06-01", - "zoneMappings": [ - { - "location": "East US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "France Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Southeast Asia", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "West US 2", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "North Europe", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "East US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "UK South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Japan East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Australia East", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "South Africa North", - "zones": [] - }, - { - "location": "South Central US", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Canada Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Germany West Central", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Brazil South", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Central India", - "zones": [] - }, - { - "location": "Korea Central", - "zones": [] - }, - { - "location": "West US 3", - "zones": [ - "2", - "1", - "3" - ] - }, - { - "location": "Norway East", - "zones": [] - }, - { - "location": "East Asia", - "zones": [] - }, - { - "location": "Switzerland North", - "zones": [] - } - ], - "capabilities": "SupportsTags, SupportsLocation" - } - ], - "registrationState": "Registered", - "registrationPolicy": "RegistrationRequired" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6585/providers/Microsoft.Compute/availabilitySets/test-aset5689?api-version=2021-07-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "131", - "Content-Type": "application/json", - "traceparent": "00-cf3f60b61d460a4b96795548883a476d-ba762850efc3f842-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "1c442760b5b1d68febeaf7c2b458d6c7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "tags": {} - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "408", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:28 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "1c442760b5b1d68febeaf7c2b458d6c7", - "x-ms-correlation-request-id": "42631539-8d48-4e1d-bc16-8211f2066085", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;181,Microsoft.Compute/PutVM30Min;1141", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-request-id": "af2650ad-2b31-44ac-a0ef-2c17f68b1742", - "x-ms-routing-request-id": "WESTUS:20210712T223529Z:42631539-8d48-4e1d-bc16-8211f2066085" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset5689\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6585/providers/Microsoft.Compute/availabilitySets/test-aset5689\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {},\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resources?$expand=createdTime%2CchangedTime%2CprovisioningState\u0026api-version=2019-10-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4a6261dfc91d7a4ca898674b6d56f4a3-85702ae6c6e6194e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "5a464c0f490926d9ee48f30bc3f2ddcb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "16346", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:29 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31729792-4815-4dac-a069-fdaae8e376c5", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-request-id": "31729792-4815-4dac-a069-fdaae8e376c5", - "x-ms-routing-request-id": "WESTUS:20210712T223529Z:31729792-4815-4dac-a069-fdaae8e376c5" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AutoRestResources2/providers/Microsoft.ClassicStorage/storageAccounts/ema7925a82c", - "name": "ema7925a82c", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2015-02-20T19:43:15.0632092Z", - "changedTime": "2021-07-12T11:11:34.9848325Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds3285b8sydlcm1", - "name": "portalvhds3285b8sydlcm1", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastus", - "createdTime": "2014-05-24T04:55:36.974557Z", - "changedTime": "2021-07-12T13:11:37.9698445Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-EastAsia/providers/Microsoft.ClassicStorage/storageAccounts/storagetestghqqxrrqnr", - "name": "storagetestghqqxrrqnr", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "eastasia", - "createdTime": "2014-10-23T23:54:52.3824535Z", - "changedTime": "2021-07-12T11:11:41.8364976Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/Default-Storage-WestUS/providers/Microsoft.ClassicStorage/storageAccounts/portalvhds2wdcfvkv5phc9", - "name": "portalvhds2wdcfvkv5phc9", - "type": "Microsoft.ClassicStorage/storageAccounts", - "location": "westus", - "createdTime": "2014-05-24T04:55:34.6927361Z", - "changedTime": "2021-07-12T11:11:39.8951663Z", - "provisioningState": "Succeeded" - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus2", - "name": "AzSecPackAutoConfigUA-westus2", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus2", - "createdTime": "2021-03-18T21:55:37.839206Z", - "changedTime": "2021-03-18T22:05:38.7997788Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus", - "name": "AzSecPackAutoConfigUA-eastus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "eastus", - "createdTime": "2021-04-27T07:14:50.9621072Z", - "changedTime": "2021-04-27T07:24:53.4570423Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-westus", - "name": "AzSecPackAutoConfigUA-westus", - "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "westus", - "createdTime": "2021-06-17T22:32:45.5111313Z", - "changedTime": "2021-06-17T22:42:48.1625939Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/sdkpipeline/providers/Microsoft.DocumentDb/databaseAccounts/sdkcodegen", - "name": "sdkcodegen", - "type": "Microsoft.DocumentDb/databaseAccounts", - "kind": "MongoDB", - "location": "westus", - "identity": { - "type": "None" - }, - "createdTime": "2021-07-07T06:51:11.1964393Z", - "changedTime": "2021-07-07T07:03:04.9723107Z", - "provisioningState": "Succeeded", - "tags": { - "defaultExperience": "Azure Cosmos DB for MongoDB API", - "hidden-cosmos-mmspecial": "" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7572/providers/Microsoft.Compute/availabilitySets/test-aset460", - "name": "test-aset460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:04.6951444Z", - "changedTime": "2021-07-09T07:21:07.1849109Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7481/providers/Microsoft.Compute/availabilitySets/test-aset5192", - "name": "test-aset5192", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T07:11:07.6835744Z", - "changedTime": "2021-07-09T07:21:10.3067676Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2789/providers/Microsoft.Compute/availabilitySets/test-aset1315", - "name": "test-aset1315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:44.4287135Z", - "changedTime": "2021-07-09T18:09:46.8976092Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6656/providers/Microsoft.Compute/availabilitySets/test-aset8673", - "name": "test-aset8673", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-09T17:59:48.7922406Z", - "changedTime": "2021-07-09T18:09:50.8818072Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg255/providers/Microsoft.Compute/availabilitySets/test-aset8503", - "name": "test-aset8503", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.3549019Z", - "changedTime": "2021-07-12T22:34:58.2726502Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8441/providers/Microsoft.Compute/availabilitySets/test-aset315", - "name": "test-aset315", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.4424611Z", - "changedTime": "2021-07-12T22:34:59.0409998Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6694/providers/Microsoft.Compute/availabilitySets/test-aset611", - "name": "test-aset611", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:57.6903508Z", - "changedTime": "2021-07-12T22:34:59.6584863Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6803/providers/Microsoft.Compute/availabilitySets/test-aset6081", - "name": "test-aset6081", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:34:59.7465833Z", - "changedTime": "2021-07-12T22:35:01.6411346Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3471/providers/Microsoft.Compute/availabilitySets/test-aset242", - "name": "test-aset242", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:00.3333258Z", - "changedTime": "2021-07-12T22:35:01.8087328Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5542/providers/Microsoft.Compute/availabilitySets/test-aset623", - "name": "test-aset623", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:01.7676172Z", - "changedTime": "2021-07-12T22:35:02.5524329Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg7017/providers/Microsoft.Compute/availabilitySets/test-aset1345", - "name": "test-aset1345", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:05.657807Z", - "changedTime": "2021-07-12T22:35:06.1329684Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3267/providers/Microsoft.Compute/availabilitySets/test-aset7445", - "name": "test-aset7445", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:06.5404471Z", - "changedTime": "2021-07-12T22:35:07.0092802Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6956/providers/Microsoft.Compute/availabilitySets/test-aset4748", - "name": "test-aset4748", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:06.9214478Z", - "changedTime": "2021-07-12T22:35:09.7711081Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3710/providers/Microsoft.Compute/availabilitySets/test-aset1454", - "name": "test-aset1454", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:08.9137705Z", - "changedTime": "2021-07-12T22:35:12.2634382Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6500/providers/Microsoft.Compute/availabilitySets/test-aset102", - "name": "test-aset102", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:09.5159536Z", - "changedTime": "2021-07-12T22:35:10.323048Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9664/providers/Microsoft.Compute/availabilitySets/test-aset893", - "name": "test-aset893", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:10.0681296Z", - "changedTime": "2021-07-12T22:35:10.5692018Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8035/providers/Microsoft.Compute/availabilitySets/test-aset886", - "name": "test-aset886", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:10.6852163Z", - "changedTime": "2021-07-12T22:35:11.2486836Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9990/providers/Microsoft.Compute/availabilitySets/test-aset2867", - "name": "test-aset2867", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:11.1451381Z", - "changedTime": "2021-07-12T22:35:11.8315196Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9543/providers/Microsoft.Compute/availabilitySets/test-aset1460", - "name": "test-aset1460", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:13.3985808Z", - "changedTime": "2021-07-12T22:35:16.5705084Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9956/providers/Microsoft.Compute/availabilitySets/test-aset4461", - "name": "test-aset4461", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:15.3435773Z", - "changedTime": "2021-07-12T22:35:15.7934685Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2893/providers/Microsoft.Compute/availabilitySets/test-aset3357", - "name": "test-aset3357", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:16.1246705Z", - "changedTime": "2021-07-12T22:35:16.5998399Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg9956/providers/Microsoft.Compute/availabilitySets/test-aset6019", - "name": "test-aset6019", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:16.4545024Z", - "changedTime": "2021-07-12T22:35:16.9005606Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5139/providers/Microsoft.Compute/availabilitySets/test-aset6457", - "name": "test-aset6457", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:16.6846369Z", - "changedTime": "2021-07-12T22:35:19.0599999Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg2893/providers/Microsoft.Compute/availabilitySets/test-aset4614", - "name": "test-aset4614", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:17.6726885Z", - "changedTime": "2021-07-12T22:35:18.1501326Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1144/providers/Microsoft.Compute/availabilitySets/test-aset6937", - "name": "test-aset6937", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:18.0805643Z", - "changedTime": "2021-07-12T22:35:18.5242545Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg5925/providers/Microsoft.Compute/availabilitySets/test-aset360", - "name": "test-aset360", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:19.8307393Z", - "changedTime": "2021-07-12T22:35:20.2900404Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6374/providers/Microsoft.Compute/availabilitySets/test-aset5069", - "name": "test-aset5069", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:22.7203564Z", - "changedTime": "2021-07-12T22:35:23.1761653Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6377/providers/Microsoft.Compute/availabilitySets/test-aset9023", - "name": "test-aset9023", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:23.8634822Z", - "changedTime": "2021-07-12T22:35:26.7124832Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg8472/providers/Microsoft.Compute/availabilitySets/test-aset7846", - "name": "test-aset7846", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:24.0879677Z", - "changedTime": "2021-07-12T22:35:24.5333857Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg3934/providers/Microsoft.Compute/availabilitySets/test-aset4013", - "name": "test-aset4013", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:25.1960009Z", - "changedTime": "2021-07-12T22:35:29.2418126Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6907/providers/Microsoft.Compute/availabilitySets/test-aset2758", - "name": "test-aset2758", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:25.2990585Z", - "changedTime": "2021-07-12T22:35:27.0221818Z", - "provisioningState": "Succeeded", - "tags": { - "key": "value" - } - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg1674/providers/Microsoft.Compute/availabilitySets/test-aset2660", - "name": "test-aset2660", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:26.519006Z", - "changedTime": "2021-07-12T22:35:26.9769439Z", - "provisioningState": "Succeeded", - "tags": {} - }, - { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6585/providers/Microsoft.Compute/availabilitySets/test-aset5689", - "name": "test-aset5689", - "type": "Microsoft.Compute/availabilitySets", - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "createdTime": "2021-07-12T22:35:28.7372429Z", - "changedTime": "2021-07-12T22:35:29.1826193Z", - "provisioningState": "Succeeded", - "tags": {} - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6585/providers/Microsoft.Compute/availabilitySets/test-aset5689?api-version=2021-07-01", - "RequestMethod": "PATCH", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "Content-Length": "144", - "Content-Type": "application/json", - "traceparent": "00-be2be2886fdba84b8ab92f10d6d5d3ac-56dc2d238129ad4b-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210712.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7ca9534aae98a71b0235cff265dc891f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": { - "properties": { - "platformUpdateDomainCount": 5, - "platformFaultDomainCount": 2 - }, - "sku": { - "name": "Aligned" - }, - "location": "westus2", - "tags": { - "key": "value" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "432", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 12 Jul 2021 22:35:31 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-client-request-id": "7ca9534aae98a71b0235cff265dc891f", - "x-ms-correlation-request-id": "3c9520e1-2a1f-4fd3-ab3a-fbc7634b0d75", - "x-ms-ratelimit-remaining-resource": "Microsoft.Compute/PutVM3Min;179,Microsoft.Compute/PutVM30Min;1139", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-request-id": "3f9aab16-fbc5-4127-aadd-8b139b995931", - "x-ms-routing-request-id": "WESTUS:20210712T223532Z:3c9520e1-2a1f-4fd3-ab3a-fbc7634b0d75" - }, - "ResponseBody": [ - "{\r\n", - " \u0022name\u0022: \u0022test-aset5689\u0022,\r\n", - " \u0022id\u0022: \u0022/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c/resourceGroups/testrg6585/providers/Microsoft.Compute/availabilitySets/test-aset5689\u0022,\r\n", - " \u0022type\u0022: \u0022Microsoft.Compute/availabilitySets\u0022,\r\n", - " \u0022location\u0022: \u0022westus2\u0022,\r\n", - " \u0022tags\u0022: {\r\n", - " \u0022key\u0022: \u0022value\u0022\r\n", - " },\r\n", - " \u0022properties\u0022: {\r\n", - " \u0022platformUpdateDomainCount\u0022: 5,\r\n", - " \u0022platformFaultDomainCount\u0022: 2\r\n", - " },\r\n", - " \u0022sku\u0022: {\r\n", - " \u0022name\u0022: \u0022Aligned\u0022\r\n", - " }\r\n", - "}" - ] - } - ], - "Variables": { - "RandomSeed": "1420235423", - "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/PredefinedTagOperationsTests/NoDataValidation.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/PredefinedTagOperationsTests/NoDataValidation.json new file mode 100644 index 0000000000000..45ad6d836698b --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/PredefinedTagOperationsTests/NoDataValidation.json @@ -0,0 +1,54 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2ca0829c93c7657f98148cd9607c6ec7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Aug 2021 17:25:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "af1045c0-765a-4c90-b8af-dfddfc071a13", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "af1045c0-765a-4c90-b8af-dfddfc071a13", + "x-ms-routing-request-id": "WESTUS2:20210809T172512Z:af1045c0-765a-4c90-b8af-dfddfc071a13" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + } + ], + "Variables": { + "RandomSeed": "2053601029", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ProviderOperationsTests/NoDataValidation.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ProviderOperationsTests/NoDataValidation.json new file mode 100644 index 0000000000000..d70f5fafa9686 --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ProviderOperationsTests/NoDataValidation.json @@ -0,0 +1,54 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2b11c5e0fcc3b3cb0e685be1716085bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Aug 2021 17:26:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2f967d8b-ad15-453a-afd8-561610dcdddf", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "2f967d8b-ad15-453a-afd8-561610dcdddf", + "x-ms-routing-request-id": "WESTUS2:20210809T172652Z:2f967d8b-ad15-453a-afd8-561610dcdddf" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + } + ], + "Variables": { + "RandomSeed": "1504008441", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ResourceGroupOperationsTests/NoDataValidation.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ResourceGroupOperationsTests/NoDataValidation.json new file mode 100644 index 0000000000000..e5869085a3e6b --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/ResourceGroupOperationsTests/NoDataValidation.json @@ -0,0 +1,54 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8b082ce09199083e2fb6e0b7287e4c61", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Aug 2021 17:27:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "725c14b8-a4f8-4232-bdd8-4825f7582971", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "725c14b8-a4f8-4232-bdd8-4825f7582971", + "x-ms-routing-request-id": "WESTUS2:20210809T172752Z:725c14b8-a4f8-4232-bdd8-4825f7582971" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + } + ], + "Variables": { + "RandomSeed": "2004714502", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/Get()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/CheckIfExists.json similarity index 74% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/Get()Async.json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/CheckIfExists.json index e7b5b8bd6012e..1da04571d323c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/Get()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/CheckIfExists.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210728.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3e85fc12538b48dd9a8b265a4e852d47", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ae413ca1c3bbd033aeaa6aa177b6cedc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 28 Jul 2021 22:23:12 GMT", + "Date": "Tue, 10 Aug 2021 21:42:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d41346e-15e4-4dd1-bd1b-47302300f96d", + "x-ms-correlation-request-id": "bebd7b23-f703-4b22-bcd0-de18f6fe70f1", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "6d41346e-15e4-4dd1-bd1b-47302300f96d", - "x-ms-routing-request-id": "WESTUS2:20210728T222312Z:6d41346e-15e4-4dd1-bd1b-47302300f96d" + "x-ms-request-id": "bebd7b23-f703-4b22-bcd0-de18f6fe70f1", + "x-ms-routing-request-id": "WESTUS2:20210810T214203Z:bebd7b23-f703-4b22-bcd0-de18f6fe70f1" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -46,88 +46,88 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000?api-version=2019-11-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-c480104ed0827343a5e431b31b5d0e46-06e4fe028712fa41-00", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210728.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "35d84112dc513ac26fb053d476335d71", + "traceparent": "00-26be1ed42c24ef41a91f9fe520ff87fd-529ac463bef6b34b-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e33cdbfb1931d29a8ce2dd4dac71363a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "468", + "Content-Length": "129", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 28 Jul 2021 22:23:12 GMT", + "Date": "Tue, 10 Aug 2021 21:42:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f60d1da9-f4b1-4ed4-a254-726b6827551f", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "f60d1da9-f4b1-4ed4-a254-726b6827551f", - "x-ms-routing-request-id": "WESTUS2:20210728T222313Z:f60d1da9-f4b1-4ed4-a254-726b6827551f" + "x-ms-correlation-request-id": "16e869aa-19df-4be1-a386-be652c384391", + "x-ms-failure-cause": "gateway", + "x-ms-request-id": "16e869aa-19df-4be1-a386-be652c384391", + "x-ms-routing-request-id": "WESTUS2:20210810T214203Z:16e869aa-19df-4be1-a386-be652c384391" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" + "error": { + "code": "SubscriptionNotFound", + "message": "The subscription \u002700000000-0000-0000-0000-000000000000\u0027 could not be found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000?api-version=2019-11-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1daa1e459aef9048966e0877a13c44b0-7fcc4997e59a6d48-00", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210728.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "20f3eed7a160ab5f44022722c7f8f681", + "traceparent": "00-5e88dfdb9dec7f4fae8e2f2a6ad5f94f-0a7a3ace2eba884a-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2a6271adfe8d0b1de8b930f4d6f23e6f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "129", + "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 28 Jul 2021 22:23:12 GMT", + "Date": "Tue, 10 Aug 2021 21:42:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4b1a738a-1b43-48cb-ad14-95d80a418ff2", - "x-ms-failure-cause": "gateway", - "x-ms-request-id": "4b1a738a-1b43-48cb-ad14-95d80a418ff2", - "x-ms-routing-request-id": "WESTUS2:20210728T222313Z:4b1a738a-1b43-48cb-ad14-95d80a418ff2" + "x-ms-correlation-request-id": "cc372e89-f3ad-438e-87bf-5f868ee5fb9c", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-request-id": "cc372e89-f3ad-438e-87bf-5f868ee5fb9c", + "x-ms-routing-request-id": "WESTUS2:20210810T214203Z:cc372e89-f3ad-438e-87bf-5f868ee5fb9c" }, "ResponseBody": { - "error": { - "code": "SubscriptionNotFound", - "message": "The subscription \u002700000000-0000-0000-0000-000000000000\u0027 could not be found." + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" } } } ], "Variables": { - "RandomSeed": "1163362173", + "RandomSeed": "940979987", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/Get().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/CheckIfExistsAsync.json similarity index 71% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/Get().json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/CheckIfExistsAsync.json index 09b0e35c60021..5da1d00dbd9aa 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/Get().json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/CheckIfExistsAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210728.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "3e85fc12538b48dd9a8b265a4e852d47", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "30354a338ca3b0710b444342baccb6ef", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 28 Jul 2021 22:23:02 GMT", + "Date": "Tue, 10 Aug 2021 21:42:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "934d552c-d93b-4ad9-9aa8-5a403a016170", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "934d552c-d93b-4ad9-9aa8-5a403a016170", - "x-ms-routing-request-id": "WESTUS2:20210728T222303Z:934d552c-d93b-4ad9-9aa8-5a403a016170" + "x-ms-correlation-request-id": "870ecdde-89bd-43cf-a7b2-1371fd11feb6", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-request-id": "870ecdde-89bd-43cf-a7b2-1371fd11feb6", + "x-ms-routing-request-id": "WESTUS2:20210810T214205Z:870ecdde-89bd-43cf-a7b2-1371fd11feb6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -46,88 +46,88 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000?api-version=2019-11-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f8019ec9ffc15f46b822ef578a058585-a6112f418185824c-00", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210728.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "35d84112dc513ac26fb053d476335d71", + "traceparent": "00-c7d3ba420624cc498a2c0d673b5998e9-8b148a5f389ea542-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "39cab9ba16e96bdf5a25332620238d18", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "468", + "Content-Length": "129", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 28 Jul 2021 22:23:02 GMT", + "Date": "Tue, 10 Aug 2021 21:42:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e47f2cc-f015-45d9-8e6f-49869d11ae99", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "4e47f2cc-f015-45d9-8e6f-49869d11ae99", - "x-ms-routing-request-id": "WESTUS2:20210728T222303Z:4e47f2cc-f015-45d9-8e6f-49869d11ae99" + "x-ms-correlation-request-id": "c335844e-687d-4a2c-9173-00f668a7e47b", + "x-ms-failure-cause": "gateway", + "x-ms-request-id": "c335844e-687d-4a2c-9173-00f668a7e47b", + "x-ms-routing-request-id": "WESTUS2:20210810T214205Z:c335844e-687d-4a2c-9173-00f668a7e47b" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" + "error": { + "code": "SubscriptionNotFound", + "message": "The subscription \u002700000000-0000-0000-0000-000000000000\u0027 could not be found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000?api-version=2019-11-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8221d94b5c5aae47b4939f9668ec0ccd-e5ab8c2020bafc41-00", - "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210728.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "20f3eed7a160ab5f44022722c7f8f681", + "traceparent": "00-00d5ed02741a204eac4c5a30bab73b9a-c918f6944299c54b-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "47ea1af65b435bc6e359dc5f1eec9c3f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "129", + "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 28 Jul 2021 22:23:02 GMT", + "Date": "Tue, 10 Aug 2021 21:42:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9cf5e14b-90f6-4cc5-b9bd-2bdf9c9e0257", - "x-ms-failure-cause": "gateway", - "x-ms-request-id": "9cf5e14b-90f6-4cc5-b9bd-2bdf9c9e0257", - "x-ms-routing-request-id": "WESTUS2:20210728T222303Z:9cf5e14b-90f6-4cc5-b9bd-2bdf9c9e0257" + "x-ms-correlation-request-id": "f1af9071-a87d-4e44-805f-c84ed25d5766", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-request-id": "f1af9071-a87d-4e44-805f-c84ed25d5766", + "x-ms-routing-request-id": "WESTUS2:20210810T214205Z:f1af9071-a87d-4e44-805f-c84ed25d5766" }, "ResponseBody": { - "error": { - "code": "SubscriptionNotFound", - "message": "The subscription \u002700000000-0000-0000-0000-000000000000\u0027 could not be found." + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" } } } ], "Variables": { - "RandomSeed": "1163362173", + "RandomSeed": "156438306", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/CheckIfExists()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/Get.json similarity index 68% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/CheckIfExists()Async.json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/Get.json index 74bb58560c576..71ca19a15c03a 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/CheckIfExists()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/Get.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "7e0577636c638b7c9318cc0499ffecdd", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e346028f196371816b9ef83344a28821", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Jul 2021 17:22:07 GMT", + "Date": "Tue, 10 Aug 2021 21:42:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f124406f-67df-4541-9ae2-dfdd76aa3712", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-request-id": "f124406f-67df-4541-9ae2-dfdd76aa3712", - "x-ms-routing-request-id": "WESTUS2:20210721T172208Z:f124406f-67df-4541-9ae2-dfdd76aa3712" + "x-ms-correlation-request-id": "79176202-71a3-4077-a2f6-07c1ca1f3798", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-request-id": "79176202-71a3-4077-a2f6-07c1ca1f3798", + "x-ms-routing-request-id": "WESTUS2:20210810T214204Z:79176202-71a3-4077-a2f6-07c1ca1f3798" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -46,88 +46,88 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000?api-version=2019-11-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-6b917d30c975214687676f0ecd66650f-212ff00fd7383046-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "b56de7d6fbab1311ce4c014fbed781bc", + "traceparent": "00-8604806ab513ae4aaea0a82a2d0b0bfd-b7d183bb99962849-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "313e38a6f48bbb56479b8a9f55cfbaf9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "129", + "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Jul 2021 17:22:07 GMT", + "Date": "Tue, 10 Aug 2021 21:42:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30c72044-f68b-4cd1-a50c-8063aad5d330", - "x-ms-failure-cause": "gateway", - "x-ms-request-id": "30c72044-f68b-4cd1-a50c-8063aad5d330", - "x-ms-routing-request-id": "WESTUS2:20210721T172208Z:30c72044-f68b-4cd1-a50c-8063aad5d330" + "x-ms-correlation-request-id": "997bcab6-3719-4f8e-9a5e-ebda624ea152", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-request-id": "997bcab6-3719-4f8e-9a5e-ebda624ea152", + "x-ms-routing-request-id": "WESTUS2:20210810T214204Z:997bcab6-3719-4f8e-9a5e-ebda624ea152" }, "ResponseBody": { - "error": { - "code": "SubscriptionNotFound", - "message": "The subscription \u002700000000-0000-0000-0000-000000000000\u0027 could not be found." + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000?api-version=2019-11-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-4e20701c05a98e47accd3f34bf06ec22-8bdcfe2c1215c74e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "f6bcf4a6bb2961d220767ee06d13d64f", + "traceparent": "00-1e9adf924f30074fa208cd457d73a092-abf4a79c880cf84b-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "26de94e31e25871174a3643a3bad64c2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "468", + "Content-Length": "129", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Jul 2021 17:22:07 GMT", + "Date": "Tue, 10 Aug 2021 21:42:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd8e285a-efbc-4899-ac0c-0057daf9a3e2", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-request-id": "dd8e285a-efbc-4899-ac0c-0057daf9a3e2", - "x-ms-routing-request-id": "WESTUS2:20210721T172208Z:dd8e285a-efbc-4899-ac0c-0057daf9a3e2" + "x-ms-correlation-request-id": "73b93d0c-a93b-41ac-8096-cd42de8be970", + "x-ms-failure-cause": "gateway", + "x-ms-request-id": "73b93d0c-a93b-41ac-8096-cd42de8be970", + "x-ms-routing-request-id": "WESTUS2:20210810T214204Z:73b93d0c-a93b-41ac-8096-cd42de8be970" }, "ResponseBody": { - "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "tags": { - "tagKey1": "tagValue1", - "tagKey2": "tagValue2" - }, - "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" + "error": { + "code": "SubscriptionNotFound", + "message": "The subscription \u002700000000-0000-0000-0000-000000000000\u0027 could not be found." } } } ], "Variables": { - "RandomSeed": "156632161", + "RandomSeed": "215064588", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/GetAsync.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/GetAsync.json new file mode 100644 index 0000000000000..3379adf6ef9cb --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/GetAsync.json @@ -0,0 +1,134 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fde37928c5137150de3c4ca44369dec7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Aug 2021 21:42:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "36482d4a-9b08-4fa5-8d77-641ca73f28e6", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-request-id": "36482d4a-9b08-4fa5-8d77-641ca73f28e6", + "x-ms-routing-request-id": "WESTUS2:20210810T214205Z:36482d4a-9b08-4fa5-8d77-641ca73f28e6" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-5bffe8d9d6e0d04e98fbd9e7e5f7155a-accc8cd52dab824c-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c2cb4cd7a87b075d2c4b515c91b73a97", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Aug 2021 21:42:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1441cb69-71cb-4588-9cb1-bd65e17b1cc4", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-request-id": "1441cb69-71cb-4588-9cb1-bd65e17b1cc4", + "x-ms-routing-request-id": "WESTUS2:20210810T214205Z:1441cb69-71cb-4588-9cb1-bd65e17b1cc4" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-07d55d1ba874004f93a5680d998089ef-c46464a32233c24b-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9a3cdc70705303bf964a54e4b6be6021", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "129", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Aug 2021 21:42:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2b4200fc-218d-48d2-96b9-b6f7f2ca8ce3", + "x-ms-failure-cause": "gateway", + "x-ms-request-id": "2b4200fc-218d-48d2-96b9-b6f7f2ca8ce3", + "x-ms-routing-request-id": "WESTUS2:20210810T214205Z:2b4200fc-218d-48d2-96b9-b6f7f2ca8ce3" + }, + "ResponseBody": { + "error": { + "code": "SubscriptionNotFound", + "message": "The subscription \u002700000000-0000-0000-0000-000000000000\u0027 could not be found." + } + } + } + ], + "Variables": { + "RandomSeed": "388322589", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/List().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/List.json similarity index 53% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/List().json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/List.json index 6a0acad5defda..b749b540d2b0c 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/List().json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/List.json @@ -1,41 +1,42 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab?api-version=2019-11-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210511.1", - "(.NET Core 4.6.29916.01; Microsoft Windows 10.0.19043 )" - ], - "x-ms-client-request-id": "5453eacbe2431579248c8478b9b439da", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "18a50666345904013b67f46604614395", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "403", + "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 03:18:08 GMT", + "Date": "Tue, 10 Aug 2021 21:42:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd083a2b-b0af-4968-bb7f-3da78e782608", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "cd083a2b-b0af-4968-bb7f-3da78e782608", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210511T031809Z:cd083a2b-b0af-4968-bb7f-3da78e782608" + "x-ms-correlation-request-id": "905647dd-a16a-4062-8b69-5d3252203e08", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-request-id": "905647dd-a16a-4062-8b69-5d3252203e08", + "x-ms-routing-request-id": "WESTUS2:20210810T214204Z:905647dd-a16a-4062-8b69-5d3252203e08" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -50,39 +51,40 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-f6229a3f96255c4eb4f86e2292a6e05d-0700d5af5c03f94a-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210511.1", - "(.NET Core 4.6.29916.01; Microsoft Windows 10.0.19043 )" - ], - "x-ms-client-request-id": "774b9a80b2f57c1039c6584c410ddf04", + "traceparent": "00-3e7b17c9778f7d4686ad29702d17e6fe-8c0f0f19ce395949-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a579e9f40a3402923c26162ce568cba2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "450", + "Content-Length": "515", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 03:18:08 GMT", + "Date": "Tue, 10 Aug 2021 21:42:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0590023d-85d8-4ab0-8877-3aa9c95303eb", + "x-ms-correlation-request-id": "50b4112c-1f88-4c5b-9309-fbec2e282f9a", "x-ms-ratelimit-remaining-tenant-reads": "11999", - "x-ms-request-id": "0590023d-85d8-4ab0-8877-3aa9c95303eb", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210511T031809Z:0590023d-85d8-4ab0-8877-3aa9c95303eb" + "x-ms-request-id": "50b4112c-1f88-4c5b-9309-fbec2e282f9a", + "x-ms-routing-request-id": "WESTUS2:20210810T214204Z:50b4112c-1f88-4c5b-9309-fbec2e282f9a" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -99,7 +101,8 @@ } ], "Variables": { - "RandomSeed": "1379336306", - "SUBSCRIPTION_ID": "0accec26-d6de-4757-8e74-d080f38eaaab" + "RandomSeed": "20701901", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/List()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/ListAsync.json similarity index 52% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/List()Async.json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/ListAsync.json index 220dfb884b96d..9bc9d81ea7378 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/List()Async.json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/ListAsync.json @@ -1,41 +1,42 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab?api-version=2019-11-01", + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210511.1", - "(.NET Core 4.6.29916.01; Microsoft Windows 10.0.19043 )" - ], - "x-ms-client-request-id": "746f9c8720e5d4879bdb08737441bf80", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "659a4e0ba79843f0db0c3f75788b7163", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "403", + "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 03:18:08 GMT", + "Date": "Tue, 10 Aug 2021 21:42:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c358a8b3-21ed-486b-88ec-b41aa81274c6", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "c358a8b3-21ed-486b-88ec-b41aa81274c6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210511T031809Z:c358a8b3-21ed-486b-88ec-b41aa81274c6" + "x-ms-correlation-request-id": "05d7acff-3e75-4d93-a221-3dfad4d5cd40", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-request-id": "05d7acff-3e75-4d93-a221-3dfad4d5cd40", + "x-ms-routing-request-id": "WESTUS2:20210810T214206Z:05d7acff-3e75-4d93-a221-3dfad4d5cd40" }, "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -50,39 +51,40 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1f68e51d5a6c4a4791c139f6b8491242-9fbfd39c762f0b4d-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210511.1", - "(.NET Core 4.6.29916.01; Microsoft Windows 10.0.19043 )" - ], - "x-ms-client-request-id": "a0e6efaab7aa9630d58fda4f254d492e", + "traceparent": "00-a4835ec5544d8b4385e00d9e2dca117a-dfe98997507ead4b-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a2056a012c92ac1b4fafb2b3b0bc9ec1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "450", + "Content-Length": "515", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 11 May 2021 03:18:09 GMT", + "Date": "Tue, 10 Aug 2021 21:42:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "255c71bc-04c5-491c-ba8a-79e915153372", - "x-ms-ratelimit-remaining-tenant-reads": "11999", - "x-ms-request-id": "255c71bc-04c5-491c-ba8a-79e915153372", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210511T031809Z:255c71bc-04c5-491c-ba8a-79e915153372" + "x-ms-correlation-request-id": "9df9b16e-b2d6-4081-ab85-9d551ecbc959", + "x-ms-ratelimit-remaining-tenant-reads": "11998", + "x-ms-request-id": "9df9b16e-b2d6-4081-ab85-9d551ecbc959", + "x-ms-routing-request-id": "WESTUS2:20210810T214206Z:9df9b16e-b2d6-4081-ab85-9d551ecbc959" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", "authorizationSource": "RoleBased", "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", "state": "Enabled", "subscriptionPolicies": { "locationPlacementId": "Internal_2014-09-01", @@ -99,7 +101,8 @@ } ], "Variables": { - "RandomSeed": "1153084172", - "SUBSCRIPTION_ID": "0accec26-d6de-4757-8e74-d080f38eaaab" + "RandomSeed": "2109559266", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } } \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/TryGet().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/TryGet().json deleted file mode 100644 index ec3dbe17f8d52..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/TryGet().json +++ /dev/null @@ -1,134 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210517.1", - "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" - ], - "x-ms-client-request-id": "5f67e6e5bbb1c55597815398f29990ac", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "403", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 08:25:20 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10f2b5d6-16a7-4547-ba12-229860122de6", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-request-id": "10f2b5d6-16a7-4547-ba12-229860122de6", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210517T082521Z:10f2b5d6-16a7-4547-ba12-229860122de6" - }, - "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-06bfb33bbc7d2d4489e43a23ead2498e-6fd10317b668374d-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210517.1", - "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" - ], - "x-ms-client-request-id": "b8265557a1ecc6e90c040fa3e146cc6e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "129", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 08:25:21 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7f4014d-2a63-400d-9bdc-a6c5cda0465a", - "x-ms-failure-cause": "gateway", - "x-ms-request-id": "d7f4014d-2a63-400d-9bdc-a6c5cda0465a", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210517T082521Z:d7f4014d-2a63-400d-9bdc-a6c5cda0465a" - }, - "ResponseBody": { - "error": { - "code": "SubscriptionNotFound", - "message": "The subscription \u002700000000-0000-0000-0000-000000000000\u0027 could not be found." - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-4810d819e42ad0458a57dffa1021a9d3-651986ce304d5c49-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210517.1", - "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" - ], - "x-ms-client-request-id": "3b2da0aa02b8733139640f6caaabd042", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "403", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 08:25:21 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e66f2064-23e5-42ac-a89a-2e43fa7f47b0", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-request-id": "e66f2064-23e5-42ac-a89a-2e43fa7f47b0", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210517T082521Z:e66f2064-23e5-42ac-a89a-2e43fa7f47b0" - }, - "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - } - ], - "Variables": { - "RandomSeed": "89275053", - "SUBSCRIPTION_ID": "0accec26-d6de-4757-8e74-d080f38eaaab" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/TryGet()Async.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/TryGet()Async.json deleted file mode 100644 index b63c86764ec6f..0000000000000 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/TryGet()Async.json +++ /dev/null @@ -1,134 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210517.1", - "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" - ], - "x-ms-client-request-id": "08e27b197f19770c22c185089ff3893e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "403", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 08:56:40 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4c7ae5a-c0f9-4724-b86b-80495b91dbc9", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-request-id": "c4c7ae5a-c0f9-4724-b86b-80495b91dbc9", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210517T085640Z:c4c7ae5a-c0f9-4724-b86b-80495b91dbc9" - }, - "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-147c0ff04cf1964db885c9fd13e7daec-92ce39d13d1dcd4b-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210517.1", - "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" - ], - "x-ms-client-request-id": "6b14fde4e729027e18626b6369a0981c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "129", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 08:56:40 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77762705-5daa-4b46-93d2-0bd6594b7ce3", - "x-ms-failure-cause": "gateway", - "x-ms-request-id": "77762705-5daa-4b46-93d2-0bd6594b7ce3", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210517T085640Z:77762705-5daa-4b46-93d2-0bd6594b7ce3" - }, - "ResponseBody": { - "error": { - "code": "SubscriptionNotFound", - "message": "The subscription \u002700000000-0000-0000-0000-000000000000\u0027 could not be found." - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab?api-version=2019-11-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Authorization": "Sanitized", - "traceparent": "00-51756dffa3e4694c8096bd575d743b97-4c68a7fb73e20443-00", - "User-Agent": [ - "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210517.1", - "(.NET Core 4.6.30015.01; Microsoft Windows 10.0.19043 )" - ], - "x-ms-client-request-id": "95a7da9e5805e6d4261573917aa2e17a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "403", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 17 May 2021 08:56:40 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "69a924b1-6272-4a68-b74c-9017cfbb5693", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-request-id": "69a924b1-6272-4a68-b74c-9017cfbb5693", - "x-ms-routing-request-id": "SOUTHEASTASIA:20210517T085641Z:69a924b1-6272-4a68-b74c-9017cfbb5693" - }, - "ResponseBody": { - "id": "/subscriptions/0accec26-d6de-4757-8e74-d080f38eaaab", - "authorizationSource": "RoleBased", - "managedByTenants": [], - "subscriptionId": "0accec26-d6de-4757-8e74-d080f38eaaab", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "displayName": "ACR - TEST - China Team", - "state": "Enabled", - "subscriptionPolicies": { - "locationPlacementId": "Internal_2014-09-01", - "quotaId": "Internal_2014-09-01", - "spendingLimit": "Off" - } - } - } - ], - "Variables": { - "RandomSeed": "463410310", - "SUBSCRIPTION_ID": "0accec26-d6de-4757-8e74-d080f38eaaab" - } -} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/TryGet.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/TryGet.json new file mode 100644 index 0000000000000..23946efdd181d --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/TryGet.json @@ -0,0 +1,134 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "81b01a32db2cc6d24c0f55d82e56d562", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Aug 2021 21:42:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "20f8a37a-0900-447e-91f3-9cabdc94aab5", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-request-id": "20f8a37a-0900-447e-91f3-9cabdc94aab5", + "x-ms-routing-request-id": "WESTUS2:20210810T214204Z:20f8a37a-0900-447e-91f3-9cabdc94aab5" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-937eb678b87cd446936a48c3cc25781f-4c910337f6c0114d-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b4ec5acac99b0bd19a5c61beeca7bdb7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "129", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Aug 2021 21:42:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ae521236-e0c1-407e-aafb-df931f2d1465", + "x-ms-failure-cause": "gateway", + "x-ms-request-id": "ae521236-e0c1-407e-aafb-df931f2d1465", + "x-ms-routing-request-id": "WESTUS2:20210810T214205Z:ae521236-e0c1-407e-aafb-df931f2d1465" + }, + "ResponseBody": { + "error": { + "code": "SubscriptionNotFound", + "message": "The subscription \u002700000000-0000-0000-0000-000000000000\u0027 could not be found." + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "traceparent": "00-e2a82daa20901d4c83144e8a5a4dc2d3-c3fb6fdec155504c-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c5f809d575851dabdca110c12179bbf0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Aug 2021 21:42:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fdc5a160-3f2c-42a0-874e-2ca2b77d273c", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-request-id": "fdc5a160-3f2c-42a0-874e-2ca2b77d273c", + "x-ms-routing-request-id": "WESTUS2:20210810T214205Z:fdc5a160-3f2c-42a0-874e-2ca2b77d273c" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + } + ], + "Variables": { + "RandomSeed": "126007643", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/CheckIfExists().json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/TryGetAsync.json similarity index 69% rename from sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/CheckIfExists().json rename to sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/TryGetAsync.json index c28fa3abf048e..1b7815622a4e0 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/CheckIfExists().json +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionContainerTests/TryGetAsync.json @@ -6,8 +6,8 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "276fbbe0798c4f2b72096af8059fed8d", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "24801b9abc24e07d4f59e063c41ce7dc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -16,15 +16,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Jul 2021 17:22:07 GMT", + "Date": "Tue, 10 Aug 2021 21:42:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac16e260-cb68-4f24-bd61-378085eca005", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-request-id": "ac16e260-cb68-4f24-bd61-378085eca005", - "x-ms-routing-request-id": "WESTUS2:20210721T172208Z:ac16e260-cb68-4f24-bd61-378085eca005" + "x-ms-correlation-request-id": "dfe51d57-1685-4044-b712-9b634b2df5f6", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-request-id": "dfe51d57-1685-4044-b712-9b634b2df5f6", + "x-ms-routing-request-id": "WESTUS2:20210810T214206Z:dfe51d57-1685-4044-b712-9b634b2df5f6" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -51,9 +51,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-8f6957a7dddbcb43a9cb4d5188f78e28-42a1b992b151864e-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "cc630670efd277e717ef8e413c75ea35", + "traceparent": "00-db74db5d3a42834aa15faee9faf50289-925264717a682049-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e79f5d7d7a8266bf06dccfedb56521f0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -62,15 +62,15 @@ "Cache-Control": "no-cache", "Content-Length": "129", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Jul 2021 17:22:07 GMT", + "Date": "Tue, 10 Aug 2021 21:42:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe96da2a-1081-466d-b12f-5759fc921dfd", + "x-ms-correlation-request-id": "f658f650-1cde-4511-aa71-5aec5357677a", "x-ms-failure-cause": "gateway", - "x-ms-request-id": "fe96da2a-1081-466d-b12f-5759fc921dfd", - "x-ms-routing-request-id": "WESTUS2:20210721T172208Z:fe96da2a-1081-466d-b12f-5759fc921dfd" + "x-ms-request-id": "f658f650-1cde-4511-aa71-5aec5357677a", + "x-ms-routing-request-id": "WESTUS2:20210810T214206Z:f658f650-1cde-4511-aa71-5aec5357677a" }, "ResponseBody": { "error": { @@ -85,9 +85,9 @@ "RequestHeaders": { "Accept": "application/json", "Authorization": "Sanitized", - "traceparent": "00-1e4224b99f1daa4abd4523b8014c8c7d-40cc645cc871e346-00", - "User-Agent": "azsdk-net-ResourceManager.Core/1.0.0-alpha.20210721.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", - "x-ms-client-request-id": "89ec8bc3873e721f91d9fab6256fb885", + "traceparent": "00-8e7bf8667f8fa148bb4f9b23b50f0cbb-85c9337f05170042-00", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210810.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "02b145273835fa1ec25613dc0360e888", "x-ms-return-client-request-id": "true" }, "RequestBody": null, @@ -96,15 +96,15 @@ "Cache-Control": "no-cache", "Content-Length": "468", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Jul 2021 17:22:07 GMT", + "Date": "Tue, 10 Aug 2021 21:42:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38ad480e-581e-4bde-88cd-b8883728f48c", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-request-id": "38ad480e-581e-4bde-88cd-b8883728f48c", - "x-ms-routing-request-id": "WESTUS2:20210721T172208Z:38ad480e-581e-4bde-88cd-b8883728f48c" + "x-ms-correlation-request-id": "455a066d-2514-4236-9fa9-eb3da37063d9", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-request-id": "455a066d-2514-4236-9fa9-eb3da37063d9", + "x-ms-routing-request-id": "WESTUS2:20210810T214206Z:455a066d-2514-4236-9fa9-eb3da37063d9" }, "ResponseBody": { "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", @@ -127,7 +127,7 @@ } ], "Variables": { - "RandomSeed": "702366739", + "RandomSeed": "1196372113", "RESOURCE_MANAGER_URL": null, "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" } diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionOperationsTests/NoDataValidation.json b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionOperationsTests/NoDataValidation.json new file mode 100644 index 0000000000000..4dc493b33581a --- /dev/null +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/SessionRecords/SubscriptionOperationsTests/NoDataValidation.json @@ -0,0 +1,54 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c?api-version=2019-11-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "User-Agent": "azsdk-net-ResourceManager/1.0.0-alpha.20210809.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7ff966cd2acde4e5135d662e6954824e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "468", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Aug 2021 17:29:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0bdec293-e8a2-4e88-b4a0-d16768309c7b", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-request-id": "0bdec293-e8a2-4e88-b4a0-d16768309c7b", + "x-ms-routing-request-id": "WESTUS:20210809T172937Z:0bdec293-e8a2-4e88-b4a0-d16768309c7b" + }, + "ResponseBody": { + "id": "/subscriptions/db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "authorizationSource": "RoleBased", + "managedByTenants": [], + "tags": { + "tagKey1": "tagValue1", + "tagKey2": "tagValue2" + }, + "subscriptionId": "db1ab6f0-4769-4b27-930e-01e2ef9c123c", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "displayName": ".NET Mgmt SDK Test with TTL = 1 Day", + "state": "Enabled", + "subscriptionPolicies": { + "locationPlacementId": "Internal_2014-09-01", + "quotaId": "Internal_2014-09-01", + "spendingLimit": "Off" + } + } + } + ], + "Variables": { + "RandomSeed": "1420003475", + "RESOURCE_MANAGER_URL": null, + "SUBSCRIPTION_ID": "db1ab6f0-4769-4b27-930e-01e2ef9c123c" + } +} \ No newline at end of file diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/Unit/GenericResourceDataTests.cs b/sdk/resourcemanager/Azure.ResourceManager/tests/Unit/GenericResourceDataTests.cs index 65a1757637aaf..ff068d38b3491 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/Unit/GenericResourceDataTests.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/Unit/GenericResourceDataTests.cs @@ -20,7 +20,7 @@ public void SerializationTestType1() ResourceIdentifier id = Id; Plan plan = new Plan("NameForPlan", "PublisherForPlan", "ProductForPlan", "PromotionCodeForPlan", "VersionForPlan"); Sku sku = new Sku("NameForSku", "TierForSku", "SizeForSku", "FamilyForSku", "ModelForSku", 15464547); - GenericResourceData data = new GenericResourceData(id, id.Name, id.ResourceType, Location.EastUS, null, plan, null, "KindForResource", "ManagedByForResource", sku, null); + GenericResourceData data = new GenericResourceData(id, id.Name, id.ResourceType, Location.EastUS, null, plan, null, "KindForResource", "ManagedByForResource", sku, null, null, null, null); var json = JsonHelper.SerializePropertiesToString(data, indented: true) + Environment.NewLine; Assert.AreEqual(expected, json); @@ -35,7 +35,7 @@ public void SerializationTestType2() var kind = "KindForResource"; var managedBy = "ManagedByForResource"; var sku = new Sku("NameForSku", "TierForSku", "SizeForSku", "FamilyForSku", "ModelForSku", 15464547); - GenericResourceData genericResource = new GenericResourceData(id, id.Name, id.ResourceType, Location.EastUS, null, plan, null, kind, managedBy, sku, null); + GenericResourceData genericResource = new GenericResourceData(id, id.Name, id.ResourceType, Location.EastUS, null, plan, null, kind, managedBy, sku, null, null, null, null); genericResource.Tags.Add("key1", "value1"); genericResource.Tags.Add("key2", "value2"); @@ -48,7 +48,7 @@ public void InvalidSerializationTest() { string expected = "{\"properties\":{\"location\":\"eastus\",\"tags\":{}}}"; ResourceIdentifier id = Id; - GenericResourceData data = new GenericResourceData(id, id.Name, id.ResourceType, Location.EastUS, null, null, null, null, null, null, null); + GenericResourceData data = new GenericResourceData(id, id.Name, id.ResourceType, Location.EastUS, null, null, null, null, null, null, null, null, null, null); var json = JsonHelper.SerializePropertiesToString(data); Assert.AreEqual(expected, json); diff --git a/sdk/resourcemanager/Azure.ResourceManager/tests/Unit/ResourceListOperationsTest.cs b/sdk/resourcemanager/Azure.ResourceManager/tests/Unit/ResourceListOperationsTest.cs index 1aecf3a8668fc..8545ddfcf2642 100644 --- a/sdk/resourcemanager/Azure.ResourceManager/tests/Unit/ResourceListOperationsTest.cs +++ b/sdk/resourcemanager/Azure.ResourceManager/tests/Unit/ResourceListOperationsTest.cs @@ -39,7 +39,7 @@ private static GenericResourceData GetGenericResource( string location) { ResourceIdentifier id = $"/subscriptions/{Guid.NewGuid().ToString()}/resourceGroups/myResourceGroup/providers/Microsoft.Widgets/widgets/myWidget"; - return new GenericResourceData(id, id.Name, id.ResourceType, location, tags, plan, null, kind, managedBy, sku, null); + return new GenericResourceData(id, id.Name, id.ResourceType, location, tags, plan, null, kind, managedBy, sku, null, null, null, null); } } } diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/CHANGELOG.md b/sdk/schemaregistry/Azure.Data.SchemaRegistry/CHANGELOG.md index 7c5296c5890b4..9ad9bee024ff7 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/CHANGELOG.md +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/CHANGELOG.md @@ -1,7 +1,7 @@ # Release History -## 1.0.0-beta.3 (Unreleased) - +## 1.0.0-beta.3 (2021-08-16) +- Added caching to `SchemaRegistryClient` ## 1.0.0-beta.2 (2020-09-22) - Fixed schema encoding issue diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/README.md b/sdk/schemaregistry/Azure.Data.SchemaRegistry/README.md index cbc27d3aede0b..5cd7d97ceb54e 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/README.md +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/README.md @@ -9,7 +9,7 @@ Azure Schema Registry is a schema repository service hosted by Azure Event Hubs, Install the Azure Schema Registry client library for .NET with [NuGet][nuget]: ```bash -dotnet add package Azure.Data.SchemaRegistry --version 1.0.0-beta.1 +dotnet add package --prerelease Azure.Data.SchemaRegistry ``` ### Prerequisites @@ -78,7 +78,7 @@ We guarantee that all client instance methods are thread-safe and independent of ## Examples -The following shows examples of what is available through the SchemaRegistryClient. There are both sync and async methods available for these client operations. +The following shows examples of what is available through the `SchemaRegistryClient`. There are both sync and async methods available for these client operations. * [Register a schema](#register-a-schema) * [Retrieve a schema ID](#retrieve-a-schema-id) @@ -86,7 +86,7 @@ The following shows examples of what is available through the SchemaRegistryClie ### Register a schema -Register a schema to be stored in the Azure Schema Registry. +Register a schema to be stored in the Azure Schema Registry. When registering a schema, the `SchemaProperties` will be cached in the `SchemaRegistryClient` instance, so that any subsequent calls to `GetSchemaId` and `GetSchema` corresponding to the same schema can use the cached value rather than going to the service. ```C# Snippet:SchemaRegistryRegisterSchema string schemaName = "employeeSample"; @@ -108,7 +108,7 @@ Response schemaProperties = client.RegisterSchema(groupName, s ### Retrieve a schema ID -Retrieve a previously registered schema ID from the Azure Schema Registry. +Retrieve a previously registered schema ID from the Azure Schema Registry. When looking up the schema Id, the `SchemaProperties` will be cached in the `SchemaRegistryClient` instance, so that subsequent requests for this schema do not need to go the service. ```C# Snippet:SchemaRegistryRetrieveSchemaId string schemaName = "employeeSample"; @@ -125,17 +125,17 @@ string schemaContent = @" ] }"; -Response schemaProperties = client.GetSchemaId(groupName, schemaName, schemaType, schemaContent); -string schemaId = schemaProperties.Value.Id; +SchemaProperties schemaProperties = client.GetSchemaId(groupName, schemaName, schemaType, schemaContent); +string schemaId = schemaProperties.Id; ``` ### Retrieve a schema -Retrieve a previously registered schema's content from the Azure Schema Registry. +Retrieve a previously registered schema's content from the Azure Schema Registry. When looking up the schema content by schema ID, the `SchemaProperties` will be cached in the `SchemaRegistryClient` instance so that subsequent requests for this schema ID do not need to go the service. ```C# Snippet:SchemaRegistryRetrieveSchema -Response schemaProperties = client.GetSchema(schemaId); -string schemaContent = schemaProperties.Value.Content; +SchemaProperties schemaProperties = client.GetSchema(schemaId); +string schemaContent = schemaProperties.Content; ``` ## Troubleshooting diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/api/Azure.Data.SchemaRegistry.netstandard2.0.cs b/sdk/schemaregistry/Azure.Data.SchemaRegistry/api/Azure.Data.SchemaRegistry.netstandard2.0.cs index f07f29199284b..9259253c32323 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/api/Azure.Data.SchemaRegistry.netstandard2.0.cs +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/api/Azure.Data.SchemaRegistry.netstandard2.0.cs @@ -11,10 +11,10 @@ public partial class SchemaRegistryClient protected SchemaRegistryClient() { } public SchemaRegistryClient(string endpoint, Azure.Core.TokenCredential credential) { } public SchemaRegistryClient(string endpoint, Azure.Core.TokenCredential credential, Azure.Data.SchemaRegistry.SchemaRegistryClientOptions options) { } - public virtual Azure.Response GetSchema(string schemaId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> GetSchemaAsync(string schemaId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response GetSchemaId(string groupName, string schemaName, Azure.Data.SchemaRegistry.SerializationType serializationType, string schemaContent, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task> GetSchemaIdAsync(string groupName, string schemaName, Azure.Data.SchemaRegistry.SerializationType serializationType, string schemaContent, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Data.SchemaRegistry.SchemaProperties GetSchema(string schemaId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.ValueTask GetSchemaAsync(string schemaId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Data.SchemaRegistry.SchemaProperties GetSchemaId(string groupName, string schemaName, Azure.Data.SchemaRegistry.SerializationType serializationType, string schemaContent, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.ValueTask GetSchemaIdAsync(string groupName, string schemaName, Azure.Data.SchemaRegistry.SerializationType serializationType, string schemaContent, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response RegisterSchema(string groupName, string schemaName, Azure.Data.SchemaRegistry.SerializationType serializationType, string schemaContent, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> RegisterSchemaAsync(string groupName, string schemaName, Azure.Data.SchemaRegistry.SerializationType serializationType, string schemaContent, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/src/SchemaRegistryClient.cs b/sdk/schemaregistry/Azure.Data.SchemaRegistry/src/SchemaRegistryClient.cs index f819647e3ff78..b94ede01e7823 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/src/SchemaRegistryClient.cs +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/src/SchemaRegistryClient.cs @@ -2,13 +2,12 @@ // Licensed under the MIT License. using System; -using System.Globalization; -using System.Text.Encodings.Web; -using System.Text.Json; +using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using Azure.Core; using Azure.Core.Pipeline; +using Azure.Data.SchemaRegistry.Models; namespace Azure.Data.SchemaRegistry { @@ -21,6 +20,9 @@ public class SchemaRegistryClient internal SchemaRestClient RestClient { get; } private const string CredentialScope = "https://eventhubs.azure.net/.default"; + private readonly Dictionary _schemaIdToPropertiesMap = new(); + private readonly Dictionary<(string, string, string, SerializationType), SchemaProperties> _contentToPropertiesMap = new(); + /// /// Initializes a new instance of the . /// @@ -68,22 +70,14 @@ internal SchemaRegistryClient(ClientDiagnostics clientDiagnostics, HttpPipeline /// The string representation of the schema's content. /// The cancellation token for the operation. /// The properties of the schema. - public virtual async Task> RegisterSchemaAsync(string groupName, string schemaName, SerializationType serializationType, string schemaContent, CancellationToken cancellationToken = default) - { - using DiagnosticScope scope = _clientDiagnostics.CreateScope(RegisterSchemaScopeName); - scope.Start(); - try - { - var response = await RestClient.RegisterAsync(groupName, schemaName, serializationType, schemaContent, cancellationToken).ConfigureAwait(false); - var properties = new SchemaProperties(schemaContent, response.Headers.Location, response.Headers.SerializationType, response.Headers.SchemaId, response.Headers.SchemaVersion); - return Response.FromValue(properties, response); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } + public virtual async Task> RegisterSchemaAsync( + string groupName, + string schemaName, + SerializationType serializationType, + string schemaContent, + CancellationToken cancellationToken = default) => + await RegisterSchemaInternalAsync(groupName, schemaName, serializationType, schemaContent, true, cancellationToken) + .ConfigureAwait(false); /// /// Registers a schema with the SchemaRegistry service. @@ -96,14 +90,41 @@ public virtual async Task> RegisterSchemaAsync(string /// The string representation of the schema's content. /// The cancellation token for the operation. /// The properties of the schema. - public virtual Response RegisterSchema(string groupName, string schemaName, SerializationType serializationType, string schemaContent, CancellationToken cancellationToken = default) + public virtual Response RegisterSchema( + string groupName, + string schemaName, + SerializationType serializationType, + string schemaContent, + CancellationToken cancellationToken = default) => + RegisterSchemaInternalAsync(groupName, schemaName, serializationType, schemaContent, false, cancellationToken) + .EnsureCompleted(); + + private async Task> RegisterSchemaInternalAsync( + string groupName, + string schemaName, + SerializationType serializationType, + string schemaContent, + bool async, + CancellationToken cancellationToken = default) { using DiagnosticScope scope = _clientDiagnostics.CreateScope(RegisterSchemaScopeName); scope.Start(); try { - var response = RestClient.Register(groupName, schemaName, serializationType, schemaContent, cancellationToken); + ResponseWithHeaders response; + if (async) + { + response = await RestClient.RegisterAsync(groupName, schemaName, serializationType, schemaContent, cancellationToken).ConfigureAwait(false); + } + else + { + response = RestClient.Register(groupName, schemaName, serializationType, schemaContent, cancellationToken); + } + var properties = new SchemaProperties(schemaContent, response.Headers.Location, response.Headers.SerializationType, response.Headers.SchemaId, response.Headers.SchemaVersion); + _schemaIdToPropertiesMap[properties.Id] = properties; + _contentToPropertiesMap[(groupName, schemaName, schemaContent, serializationType)] = properties; + return Response.FromValue(properties, response); } catch (Exception e) @@ -122,22 +143,16 @@ public virtual Response RegisterSchema(string groupName, strin /// The string representation of the schema's content. /// The cancellation token for the operation. /// The properties of the schema, including the schema ID provided by the service. - public virtual async Task> GetSchemaIdAsync(string groupName, string schemaName, SerializationType serializationType, string schemaContent, CancellationToken cancellationToken = default) - { - using DiagnosticScope scope = _clientDiagnostics.CreateScope(GetSchemaIdScopeName); - scope.Start(); - try - { - var response = await RestClient.QueryIdByContentAsync(groupName, schemaName, serializationType, schemaContent, cancellationToken).ConfigureAwait(false); - var properties = new SchemaProperties(schemaContent, response.Headers.Location, response.Headers.SerializationType, response.Headers.SchemaId, response.Headers.SchemaVersion); - return Response.FromValue(properties, response); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } +#pragma warning disable AZC0015 // Unexpected client method return type. + public virtual async ValueTask GetSchemaIdAsync( + string groupName, + string schemaName, + SerializationType serializationType, + string schemaContent, + CancellationToken cancellationToken = default) => +#pragma warning restore AZC0015 // Unexpected client method return type. + await GetSchemaIdInternalAsync(groupName, schemaName, serializationType, schemaContent, true, cancellationToken) + .ConfigureAwait(false); /// /// Gets the schema ID associated with the schema from the SchemaRegistry service. @@ -148,15 +163,50 @@ public virtual async Task> GetSchemaIdAsync(string gr /// The string representation of the schema's content. /// The cancellation token for the operation. /// The properties of the schema, including the schema ID provided by the service. - public virtual Response GetSchemaId(string groupName, string schemaName, SerializationType serializationType, string schemaContent, CancellationToken cancellationToken = default) +#pragma warning disable AZC0015 // Unexpected client method return type. + public virtual SchemaProperties GetSchemaId( + string groupName, + string schemaName, + SerializationType serializationType, + string schemaContent, + CancellationToken cancellationToken = default) => +#pragma warning restore AZC0015 // Unexpected client method return type. + GetSchemaIdInternalAsync(groupName, schemaName, serializationType, schemaContent, false, cancellationToken).EnsureCompleted(); + + private async ValueTask GetSchemaIdInternalAsync( + string groupName, + string schemaName, + SerializationType serializationType, + string schemaContent, + bool async, + CancellationToken cancellationToken) { + if (_contentToPropertiesMap.TryGetValue( + (groupName, schemaName, schemaContent, serializationType), + out SchemaProperties schema)) + { + return schema; + } + using DiagnosticScope scope = _clientDiagnostics.CreateScope(GetSchemaIdScopeName); scope.Start(); try { - var response = RestClient.QueryIdByContent(groupName, schemaName, serializationType, schemaContent, cancellationToken); + ResponseWithHeaders response; + if (async) + { + response = await RestClient.QueryIdByContentAsync(groupName, schemaName, serializationType, schemaContent, cancellationToken).ConfigureAwait(false); + } + else + { + response = RestClient.QueryIdByContent(groupName, schemaName, serializationType, schemaContent, cancellationToken); + } + var properties = new SchemaProperties(schemaContent, response.Headers.Location, response.Headers.SerializationType, response.Headers.SchemaId, response.Headers.SchemaVersion); - return Response.FromValue(properties, response); + _schemaIdToPropertiesMap[properties.Id] = properties; + _contentToPropertiesMap[(groupName, schemaName, schemaContent, serializationType)] = properties; + + return properties; } catch (Exception e) { @@ -171,22 +221,10 @@ public virtual Response GetSchemaId(string groupName, string s /// The schema ID of the the schema from the SchemaRegistry. /// The cancellation token for the operation. /// The properties of the schema, including the schema content provided by the service. - public virtual async Task> GetSchemaAsync(string schemaId, CancellationToken cancellationToken = default) - { - using DiagnosticScope scope = _clientDiagnostics.CreateScope(GetSchemaScopeName); - scope.Start(); - try - { - var response = await RestClient.GetByIdAsync(schemaId, cancellationToken).ConfigureAwait(false); - var properties = new SchemaProperties(response.Value, response.Headers.Location, response.Headers.SerializationType, response.Headers.SchemaId, response.Headers.SchemaVersion); - return Response.FromValue(properties, response); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } - } +#pragma warning disable AZC0015 // Unexpected client method return type. + public virtual async ValueTask GetSchemaAsync(string schemaId, CancellationToken cancellationToken = default) => +#pragma warning restore AZC0015 // Unexpected client method return type. + await GetSchemaInternalAsync(schemaId, true, cancellationToken).ConfigureAwait(false); /// /// Gets the schema content associated with the schema ID from the SchemaRegistry service. @@ -194,15 +232,36 @@ public virtual async Task> GetSchemaAsync(string sche /// The schema ID of the the schema from the SchemaRegistry. /// The cancellation token for the operation. /// The properties of the schema, including the schema content provided by the service. - public virtual Response GetSchema(string schemaId, CancellationToken cancellationToken = default) +#pragma warning disable AZC0015 // Unexpected client method return type. + public virtual SchemaProperties GetSchema(string schemaId, CancellationToken cancellationToken = default) => +#pragma warning restore AZC0015 // Unexpected client method return type. + GetSchemaInternalAsync(schemaId, false, cancellationToken).EnsureCompleted(); + + private async ValueTask GetSchemaInternalAsync(string schemaId, bool async, CancellationToken cancellationToken) { + if (_schemaIdToPropertiesMap.TryGetValue(schemaId, out SchemaProperties schema)) + { + return schema; + } + using DiagnosticScope scope = _clientDiagnostics.CreateScope(GetSchemaScopeName); scope.Start(); try { - var response = RestClient.GetById(schemaId, cancellationToken); + ResponseWithHeaders response; + if (async) + { + response = await RestClient.GetByIdAsync(schemaId, cancellationToken).ConfigureAwait(false); + } + else + { + response = RestClient.GetById(schemaId, cancellationToken); + } + var properties = new SchemaProperties(response.Value, response.Headers.Location, response.Headers.SerializationType, response.Headers.SchemaId, response.Headers.SchemaVersion); - return Response.FromValue(properties, response); + _schemaIdToPropertiesMap[schemaId] = properties; + + return properties; } catch (Exception e) { diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/Samples/Sample01_ReadmeSnippets.cs b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/Samples/Sample01_ReadmeSnippets.cs index 5635a9ea565f4..3245a1a507b17 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/Samples/Sample01_ReadmeSnippets.cs +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/Samples/Sample01_ReadmeSnippets.cs @@ -79,8 +79,8 @@ public void RetrieveSchemaId() ] }"; - Response schemaProperties = client.GetSchemaId(groupName, schemaName, schemaType, schemaContent); - string schemaId = schemaProperties.Value.Id; + SchemaProperties schemaProperties = client.GetSchemaId(groupName, schemaName, schemaType, schemaContent); + string schemaId = schemaProperties.Id; #endregion Assert.AreEqual(_schemaProperties.Id, schemaId); @@ -93,8 +93,8 @@ public void RetrieveSchema() var schemaId = _schemaProperties.Id; #region Snippet:SchemaRegistryRetrieveSchema - Response schemaProperties = client.GetSchema(schemaId); - string schemaContent = schemaProperties.Value.Content; + SchemaProperties schemaProperties = client.GetSchema(schemaId); + string schemaContent = schemaProperties.Content; #endregion Assert.AreEqual(Regex.Replace(_schemaProperties.Content, @"\s+", string.Empty), schemaContent); diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SchemaRegistryClientLiveTests.cs b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SchemaRegistryClientLiveTests.cs index 1d5bb2d7b6f3a..59b27da89185a 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SchemaRegistryClientLiveTests.cs +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SchemaRegistryClientLiveTests.cs @@ -25,7 +25,7 @@ private SchemaRegistryClient CreateClient() => private const string SchemaContent = "{\"type\" : \"record\",\"namespace\" : \"TestSchema\",\"name\" : \"Employee\",\"fields\" : [{ \"name\" : \"Name\" , \"type\" : \"string\" },{ \"name\" : \"Age\", \"type\" : \"int\" }]}"; - [Test] + [RecordedTest] public async Task CanRegisterSchema() { var client = CreateClient(); @@ -33,14 +33,27 @@ public async Task CanRegisterSchema() var groupName = TestEnvironment.SchemaRegistryGroup; var schemaType = SerializationType.Avro; - var schemaProperties = await client.RegisterSchemaAsync(groupName, schemaName, schemaType, SchemaContent); - Assert.IsNotNull(schemaProperties.Value); - Assert.IsNotNull(schemaProperties.Value.Id); - Assert.IsTrue(Guid.TryParse(schemaProperties.Value.Id, out Guid _)); - Assert.AreEqual(SchemaContent, schemaProperties.Value.Content); + SchemaProperties registerProperties = await client.RegisterSchemaAsync(groupName, schemaName, schemaType, SchemaContent); + AssertSchemaProperties(registerProperties); + + // this should be a cached lookup + var schemaProperties = await client.GetSchemaIdAsync(groupName, schemaName, schemaType, SchemaContent); + AssertSchemaProperties(schemaProperties); + AssertPropertiesAreEqual(registerProperties, schemaProperties); + + // this should be an uncached lookup + var client2 = CreateClient(); + schemaProperties = await client2.GetSchemaIdAsync(groupName, schemaName, schemaType, SchemaContent); + AssertSchemaProperties(schemaProperties); + AssertPropertiesAreEqual(registerProperties, schemaProperties); + + // this should be a cached lookup + schemaProperties = await client2.GetSchemaIdAsync(groupName, schemaName, schemaType, SchemaContent); + AssertSchemaProperties(schemaProperties); + AssertPropertiesAreEqual(registerProperties, schemaProperties); } - [Test] + [RecordedTest] public async Task CanGetSchemaId() { var client = CreateClient(); @@ -48,15 +61,27 @@ public async Task CanGetSchemaId() var groupName = TestEnvironment.SchemaRegistryGroup; var schemaType = SerializationType.Avro; - await client.RegisterSchemaAsync(groupName, schemaName, schemaType, SchemaContent); + SchemaProperties registerProperties = await client.RegisterSchemaAsync(groupName, schemaName, schemaType, SchemaContent); + AssertSchemaProperties(registerProperties); + + // this should be a cached lookup var schemaProperties = await client.GetSchemaIdAsync(groupName, schemaName, schemaType, SchemaContent); - Assert.IsNotNull(schemaProperties.Value); - Assert.IsNotNull(schemaProperties.Value.Id); - Assert.IsTrue(Guid.TryParse(schemaProperties.Value.Id, out Guid _)); - Assert.AreEqual(SchemaContent, schemaProperties.Value.Content); + AssertSchemaProperties(schemaProperties); + AssertPropertiesAreEqual(registerProperties, schemaProperties); + + // this should be an uncached lookup + var client2 = CreateClient(); + schemaProperties = await client2.GetSchemaIdAsync(groupName, schemaName, schemaType, SchemaContent); + AssertSchemaProperties(schemaProperties); + AssertPropertiesAreEqual(registerProperties, schemaProperties); + + // this should be a cached lookup + schemaProperties = await client2.GetSchemaIdAsync(groupName, schemaName, schemaType, SchemaContent); + AssertSchemaProperties(schemaProperties); + AssertPropertiesAreEqual(registerProperties, schemaProperties); } - [Test] + [RecordedTest] public async Task CanGetSchema() { var client = CreateClient(); @@ -65,14 +90,41 @@ public async Task CanGetSchema() var schemaType = SerializationType.Avro; var registerProperties = await client.RegisterSchemaAsync(groupName, schemaName, schemaType, SchemaContent); - Assert.IsNotNull(registerProperties.Value.Id); - Assert.IsTrue(Guid.TryParse(registerProperties.Value.Id, out Guid _)); + AssertSchemaProperties(registerProperties); + // this should be a cached lookup var schemaProperties = await client.GetSchemaAsync(registerProperties.Value.Id); - Assert.IsNotNull(schemaProperties.Value); - Assert.IsNotNull(schemaProperties.Value.Id); - Assert.IsTrue(Guid.TryParse(schemaProperties.Value.Id, out Guid _)); - Assert.AreEqual(Regex.Replace(SchemaContent, @"\s+", string.Empty), schemaProperties.Value.Content); + AssertSchemaProperties(schemaProperties); + AssertPropertiesAreEqual(registerProperties, schemaProperties); + + // this should be an uncached lookup + var client2 = CreateClient(); + schemaProperties = await client2.GetSchemaAsync(registerProperties.Value.Id); + AssertSchemaProperties(schemaProperties); + AssertPropertiesAreEqual(registerProperties, schemaProperties); + + // this should be a cached lookup + schemaProperties = await client2.GetSchemaAsync(registerProperties.Value.Id); + AssertSchemaProperties(schemaProperties); + AssertPropertiesAreEqual(registerProperties, schemaProperties); + } + + private void AssertSchemaProperties(SchemaProperties properties) + { + Assert.IsNotNull(properties); + Assert.IsNotNull(properties.Id); + Assert.IsTrue(Guid.TryParse(properties.Id, out Guid _)); + Assert.AreEqual( + Regex.Replace(SchemaContent, @"\s+", string.Empty), + Regex.Replace(properties.Content, @"\s+", string.Empty)); + } + + private void AssertPropertiesAreEqual(SchemaProperties registerProperties, SchemaProperties schemaProperties) + { + Assert.AreEqual( + Regex.Replace(registerProperties.Content, @"\s+", string.Empty), + Regex.Replace(schemaProperties.Content, @"\s+", string.Empty)); + Assert.AreEqual(registerProperties.Id, schemaProperties.Id); } } } diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanGetSchema.json b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanGetSchema.json index 08e03c50759d1..e144f8566e4f6 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanGetSchema.json +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanGetSchema.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1?api-version=2020-09-01-preview", + "RequestUri": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1?api-version=2020-09-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -10,8 +10,8 @@ "Content-Type": "text/plain; charset=utf-8", "Serialization-Type": "avro", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20201028.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20210811.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "a9bb4e4bb92bb7199b81a2fe15c1bf1d", "x-ms-return-client-request-id": "true" @@ -20,30 +20,30 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 28 Oct 2020 17:58:40 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/1?api-version=2020-09-01-preview", - "Schema-Id": "b2753fd0374840799be019956ccdc029", - "Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/b2753fd0374840799be019956ccdc029?api-version=2020-09-01-preview", + "Date": "Wed, 11 Aug 2021 19:30:37 GMT", + "Location": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1/versions/1?api-version=2020-09-01-preview", + "Schema-Id": "df9f8210598b40a88675e68c541506b7", + "Schema-Id-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/getschemabyid/df9f8210598b40a88675e68c541506b7?api-version=2020-09-01-preview", "Schema-Version": "1", - "Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2020-09-01-preview", + "Schema-Versions-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/azsdk_net_test_group/schemas/test1/versions?api-version=2020-09-01-preview", "Serialization-Type": "Avro", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", "Transfer-Encoding": "chunked" }, "ResponseBody": { - "id": "b2753fd0374840799be019956ccdc029" + "id": "df9f8210598b40a88675e68c541506b7" } }, { - "RequestUri": "https://sr-playground.servicebus.windows.net/$schemagroups/getSchemaById/b2753fd0374840799be019956ccdc029?api-version=2020-09-01-preview", + "RequestUri": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/getSchemaById/df9f8210598b40a88675e68c541506b7?api-version=2020-09-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "text/plain; charset=utf-8", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20201028.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20210811.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "789557cb0beea63b2b639b6c79b01992", "x-ms-return-client-request-id": "true" @@ -52,12 +52,12 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 28 Oct 2020 17:58:40 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/1?api-version=2020-09-01-preview", - "Schema-Id": "b2753fd0374840799be019956ccdc029", - "Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/b2753fd0374840799be019956ccdc029?api-version=2020-09-01-preview", + "Date": "Wed, 11 Aug 2021 19:30:37 GMT", + "Location": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1/versions/1?api-version=2020-09-01-preview", + "Schema-Id": "df9f8210598b40a88675e68c541506b7", + "Schema-Id-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/getschemabyid/df9f8210598b40a88675e68c541506b7?api-version=2020-09-01-preview", "Schema-Version": "1", - "Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2020-09-01-preview", + "Schema-Versions-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/azsdk_net_test_group/schemas/test1/versions?api-version=2020-09-01-preview", "Serialization-Type": "Avro", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", @@ -82,7 +82,7 @@ ], "Variables": { "RandomSeed": "1446263238", - "SCHEMAREGISTRY_ENDPOINT": "sr-playground.servicebus.windows.net", - "SCHEMAREGISTRY_GROUP": "miyanni_srgroup" + "SCHEMAREGISTRY_ENDPOINT": "jolovschemaregistry.servicebus.windows.net", + "SCHEMAREGISTRY_GROUP": "azsdk_net_test_group" } } \ No newline at end of file diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanGetSchemaAsync.json b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanGetSchemaAsync.json index a89181d007574..b452eeceb833f 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanGetSchemaAsync.json +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanGetSchemaAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1?api-version=2020-09-01-preview", + "RequestUri": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1?api-version=2020-09-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -10,8 +10,8 @@ "Content-Type": "text/plain; charset=utf-8", "Serialization-Type": "avro", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20201028.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20210811.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "23519c599ecca90a5a65530717191100", "x-ms-return-client-request-id": "true" @@ -20,30 +20,30 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 28 Oct 2020 17:57:08 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/1?api-version=2020-09-01-preview", - "Schema-Id": "b2753fd0374840799be019956ccdc029", - "Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/b2753fd0374840799be019956ccdc029?api-version=2020-09-01-preview", + "Date": "Wed, 11 Aug 2021 19:30:40 GMT", + "Location": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1/versions/1?api-version=2020-09-01-preview", + "Schema-Id": "df9f8210598b40a88675e68c541506b7", + "Schema-Id-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/getschemabyid/df9f8210598b40a88675e68c541506b7?api-version=2020-09-01-preview", "Schema-Version": "1", - "Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2020-09-01-preview", + "Schema-Versions-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/azsdk_net_test_group/schemas/test1/versions?api-version=2020-09-01-preview", "Serialization-Type": "Avro", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", "Transfer-Encoding": "chunked" }, "ResponseBody": { - "id": "b2753fd0374840799be019956ccdc029" + "id": "df9f8210598b40a88675e68c541506b7" } }, { - "RequestUri": "https://sr-playground.servicebus.windows.net/$schemagroups/getSchemaById/b2753fd0374840799be019956ccdc029?api-version=2020-09-01-preview", + "RequestUri": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/getSchemaById/df9f8210598b40a88675e68c541506b7?api-version=2020-09-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "text/plain; charset=utf-8", "Authorization": "Sanitized", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20201028.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20210811.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "fa78deb88eafe71485ee6b337d7d6b2d", "x-ms-return-client-request-id": "true" @@ -52,12 +52,12 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 28 Oct 2020 17:57:08 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/1?api-version=2020-09-01-preview", - "Schema-Id": "b2753fd0374840799be019956ccdc029", - "Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/b2753fd0374840799be019956ccdc029?api-version=2020-09-01-preview", + "Date": "Wed, 11 Aug 2021 19:30:40 GMT", + "Location": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1/versions/1?api-version=2020-09-01-preview", + "Schema-Id": "df9f8210598b40a88675e68c541506b7", + "Schema-Id-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/getschemabyid/df9f8210598b40a88675e68c541506b7?api-version=2020-09-01-preview", "Schema-Version": "1", - "Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2020-09-01-preview", + "Schema-Versions-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/azsdk_net_test_group/schemas/test1/versions?api-version=2020-09-01-preview", "Serialization-Type": "Avro", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", @@ -82,7 +82,7 @@ ], "Variables": { "RandomSeed": "1311802614", - "SCHEMAREGISTRY_ENDPOINT": "sr-playground.servicebus.windows.net", - "SCHEMAREGISTRY_GROUP": "miyanni_srgroup" + "SCHEMAREGISTRY_ENDPOINT": "jolovschemaregistry.servicebus.windows.net", + "SCHEMAREGISTRY_GROUP": "azsdk_net_test_group" } } \ No newline at end of file diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanGetSchemaId.json b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanGetSchemaId.json index 6e002e21528b3..9685212fe2012 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanGetSchemaId.json +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanGetSchemaId.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1?api-version=2020-09-01-preview", + "RequestUri": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1?api-version=2020-09-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -10,8 +10,8 @@ "Content-Type": "text/plain; charset=utf-8", "Serialization-Type": "avro", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20201027.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20210811.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "2c620897d9de14f8847756ca36bfb1dd", "x-ms-return-client-request-id": "true" @@ -20,23 +20,23 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 28 Oct 2020 01:42:41 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/1?api-version=2020-09-01-preview", - "Schema-Id": "b2753fd0374840799be019956ccdc029", - "Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/b2753fd0374840799be019956ccdc029?api-version=2020-09-01-preview", + "Date": "Wed, 11 Aug 2021 19:30:38 GMT", + "Location": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1/versions/1?api-version=2020-09-01-preview", + "Schema-Id": "df9f8210598b40a88675e68c541506b7", + "Schema-Id-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/getschemabyid/df9f8210598b40a88675e68c541506b7?api-version=2020-09-01-preview", "Schema-Version": "1", - "Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2020-09-01-preview", + "Schema-Versions-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/azsdk_net_test_group/schemas/test1/versions?api-version=2020-09-01-preview", "Serialization-Type": "Avro", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", "Transfer-Encoding": "chunked" }, "ResponseBody": { - "id": "b2753fd0374840799be019956ccdc029" + "id": "df9f8210598b40a88675e68c541506b7" } }, { - "RequestUri": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1?api-version=2020-09-01-preview", + "RequestUri": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1?api-version=2020-09-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -45,8 +45,8 @@ "Content-Type": "text/plain; charset=utf-8", "Serialization-Type": "avro", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20201027.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20210811.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "f81747feb3bdd74d2da2f268fd8a6e28", "x-ms-return-client-request-id": "true" @@ -55,25 +55,25 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 28 Oct 2020 01:42:42 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/1?api-version=2020-09-01-preview", - "Schema-Id": "b2753fd0374840799be019956ccdc029", - "Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/b2753fd0374840799be019956ccdc029?api-version=2020-09-01-preview", + "Date": "Wed, 11 Aug 2021 19:30:38 GMT", + "Location": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1/versions/1?api-version=2020-09-01-preview", + "Schema-Id": "df9f8210598b40a88675e68c541506b7", + "Schema-Id-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/getschemabyid/df9f8210598b40a88675e68c541506b7?api-version=2020-09-01-preview", "Schema-Version": "1", - "Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2020-09-01-preview", + "Schema-Versions-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/azsdk_net_test_group/schemas/test1/versions?api-version=2020-09-01-preview", "Serialization-Type": "Avro", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", "Transfer-Encoding": "chunked" }, "ResponseBody": { - "id": "b2753fd0374840799be019956ccdc029" + "id": "df9f8210598b40a88675e68c541506b7" } } ], "Variables": { "RandomSeed": "423990645", - "SCHEMAREGISTRY_ENDPOINT": "sr-playground.servicebus.windows.net", - "SCHEMAREGISTRY_GROUP": "miyanni_srgroup" + "SCHEMAREGISTRY_ENDPOINT": "jolovschemaregistry.servicebus.windows.net", + "SCHEMAREGISTRY_GROUP": "azsdk_net_test_group" } } \ No newline at end of file diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanGetSchemaIdAsync.json b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanGetSchemaIdAsync.json index dd058398b49ff..f2aa3406c457d 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanGetSchemaIdAsync.json +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanGetSchemaIdAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1?api-version=2020-09-01-preview", + "RequestUri": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1?api-version=2020-09-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -10,8 +10,8 @@ "Content-Type": "text/plain; charset=utf-8", "Serialization-Type": "avro", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20201027.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20210811.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "5417cde1a45d14a2ae3731d071449823", "x-ms-return-client-request-id": "true" @@ -20,23 +20,23 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 28 Oct 2020 01:42:42 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/1?api-version=2020-09-01-preview", - "Schema-Id": "b2753fd0374840799be019956ccdc029", - "Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/b2753fd0374840799be019956ccdc029?api-version=2020-09-01-preview", + "Date": "Wed, 11 Aug 2021 19:30:40 GMT", + "Location": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1/versions/1?api-version=2020-09-01-preview", + "Schema-Id": "df9f8210598b40a88675e68c541506b7", + "Schema-Id-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/getschemabyid/df9f8210598b40a88675e68c541506b7?api-version=2020-09-01-preview", "Schema-Version": "1", - "Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2020-09-01-preview", + "Schema-Versions-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/azsdk_net_test_group/schemas/test1/versions?api-version=2020-09-01-preview", "Serialization-Type": "Avro", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", "Transfer-Encoding": "chunked" }, "ResponseBody": { - "id": "b2753fd0374840799be019956ccdc029" + "id": "df9f8210598b40a88675e68c541506b7" } }, { - "RequestUri": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1?api-version=2020-09-01-preview", + "RequestUri": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1?api-version=2020-09-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -45,8 +45,8 @@ "Content-Type": "text/plain; charset=utf-8", "Serialization-Type": "avro", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20201027.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20210811.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "ebf572ccf2140bd54101f2c44b198261", "x-ms-return-client-request-id": "true" @@ -55,25 +55,25 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 28 Oct 2020 01:42:43 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/1?api-version=2020-09-01-preview", - "Schema-Id": "b2753fd0374840799be019956ccdc029", - "Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/b2753fd0374840799be019956ccdc029?api-version=2020-09-01-preview", + "Date": "Wed, 11 Aug 2021 19:30:41 GMT", + "Location": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1/versions/1?api-version=2020-09-01-preview", + "Schema-Id": "df9f8210598b40a88675e68c541506b7", + "Schema-Id-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/getschemabyid/df9f8210598b40a88675e68c541506b7?api-version=2020-09-01-preview", "Schema-Version": "1", - "Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2020-09-01-preview", + "Schema-Versions-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/azsdk_net_test_group/schemas/test1/versions?api-version=2020-09-01-preview", "Serialization-Type": "Avro", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", "Transfer-Encoding": "chunked" }, "ResponseBody": { - "id": "b2753fd0374840799be019956ccdc029" + "id": "df9f8210598b40a88675e68c541506b7" } } ], "Variables": { "RandomSeed": "1351424262", - "SCHEMAREGISTRY_ENDPOINT": "sr-playground.servicebus.windows.net", - "SCHEMAREGISTRY_GROUP": "miyanni_srgroup" + "SCHEMAREGISTRY_ENDPOINT": "jolovschemaregistry.servicebus.windows.net", + "SCHEMAREGISTRY_GROUP": "azsdk_net_test_group" } } \ No newline at end of file diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanRegisterSchema.json b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanRegisterSchema.json index 444a3972811c9..41139db6dada6 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanRegisterSchema.json +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanRegisterSchema.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1?api-version=2020-09-01-preview", + "RequestUri": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1?api-version=2020-09-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -10,8 +10,8 @@ "Content-Type": "text/plain; charset=utf-8", "Serialization-Type": "avro", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20201027.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20210811.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "06149688c0d107fba9beaa6650213cc6", "x-ms-return-client-request-id": "true" @@ -20,25 +20,60 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 28 Oct 2020 01:42:35 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/1?api-version=2020-09-01-preview", - "Schema-Id": "b2753fd0374840799be019956ccdc029", - "Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/b2753fd0374840799be019956ccdc029?api-version=2020-09-01-preview", + "Date": "Wed, 11 Aug 2021 19:30:39 GMT", + "Location": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1/versions/1?api-version=2020-09-01-preview", + "Schema-Id": "df9f8210598b40a88675e68c541506b7", + "Schema-Id-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/getschemabyid/df9f8210598b40a88675e68c541506b7?api-version=2020-09-01-preview", "Schema-Version": "1", - "Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2020-09-01-preview", + "Schema-Versions-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/azsdk_net_test_group/schemas/test1/versions?api-version=2020-09-01-preview", "Serialization-Type": "Avro", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", "Transfer-Encoding": "chunked" }, "ResponseBody": { - "id": "b2753fd0374840799be019956ccdc029" + "id": "df9f8210598b40a88675e68c541506b7" + } + }, + { + "RequestUri": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1?api-version=2020-09-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "154", + "Content-Type": "text/plain; charset=utf-8", + "Serialization-Type": "avro", + "User-Agent": [ + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20210811.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "3fcf80e98ffbdef342adb93c83e11563", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": "{\u0022type\u0022 : \u0022record\u0022,\u0022namespace\u0022 : \u0022TestSchema\u0022,\u0022name\u0022 : \u0022Employee\u0022,\u0022fields\u0022 : [{ \u0022name\u0022 : \u0022Name\u0022 , \u0022type\u0022 : \u0022string\u0022 },{ \u0022name\u0022 : \u0022Age\u0022, \u0022type\u0022 : \u0022int\u0022 }]}", + "StatusCode": 200, + "ResponseHeaders": { + "Content-Type": "application/json", + "Date": "Wed, 11 Aug 2021 19:30:39 GMT", + "Location": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1/versions/1?api-version=2020-09-01-preview", + "Schema-Id": "df9f8210598b40a88675e68c541506b7", + "Schema-Id-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/getschemabyid/df9f8210598b40a88675e68c541506b7?api-version=2020-09-01-preview", + "Schema-Version": "1", + "Schema-Versions-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/azsdk_net_test_group/schemas/test1/versions?api-version=2020-09-01-preview", + "Serialization-Type": "Avro", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000", + "Transfer-Encoding": "chunked" + }, + "ResponseBody": { + "id": "df9f8210598b40a88675e68c541506b7" } } ], "Variables": { "RandomSeed": "2024185609", - "SCHEMAREGISTRY_ENDPOINT": "sr-playground.servicebus.windows.net", - "SCHEMAREGISTRY_GROUP": "miyanni_srgroup" + "SCHEMAREGISTRY_ENDPOINT": "jolovschemaregistry.servicebus.windows.net", + "SCHEMAREGISTRY_GROUP": "azsdk_net_test_group" } } \ No newline at end of file diff --git a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanRegisterSchemaAsync.json b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanRegisterSchemaAsync.json index 561ab45377dce..fe92aeb8e7a93 100644 --- a/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanRegisterSchemaAsync.json +++ b/sdk/schemaregistry/Azure.Data.SchemaRegistry/tests/SessionRecords/SchemaRegistryClientLiveTests/CanRegisterSchemaAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1?api-version=2020-09-01-preview", + "RequestUri": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1?api-version=2020-09-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -10,8 +10,8 @@ "Content-Type": "text/plain; charset=utf-8", "Serialization-Type": "avro", "User-Agent": [ - "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20201027.1", - "(.NET Core 4.6.28801.04; Microsoft Windows 10.0.19041 )" + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20210811.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" ], "x-ms-client-request-id": "10d841304c76af44a9857366d3cdcece", "x-ms-return-client-request-id": "true" @@ -20,25 +20,60 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 28 Oct 2020 01:42:35 GMT", - "Location": "https://sr-playground.servicebus.windows.net/$schemagroups/miyanni_srgroup/schemas/test1/versions/1?api-version=2020-09-01-preview", - "Schema-Id": "b2753fd0374840799be019956ccdc029", - "Schema-Id-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/getschemabyid/b2753fd0374840799be019956ccdc029?api-version=2020-09-01-preview", + "Date": "Wed, 11 Aug 2021 19:30:41 GMT", + "Location": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1/versions/1?api-version=2020-09-01-preview", + "Schema-Id": "df9f8210598b40a88675e68c541506b7", + "Schema-Id-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/getschemabyid/df9f8210598b40a88675e68c541506b7?api-version=2020-09-01-preview", "Schema-Version": "1", - "Schema-Versions-Location": "https://sr-playground.servicebus.windows.net:443/$schemagroups/miyanni_srgroup/schemas/test1/versions?api-version=2020-09-01-preview", + "Schema-Versions-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/azsdk_net_test_group/schemas/test1/versions?api-version=2020-09-01-preview", "Serialization-Type": "Avro", "Server": "Microsoft-HTTPAPI/2.0", "Strict-Transport-Security": "max-age=31536000", "Transfer-Encoding": "chunked" }, "ResponseBody": { - "id": "b2753fd0374840799be019956ccdc029" + "id": "df9f8210598b40a88675e68c541506b7" + } + }, + { + "RequestUri": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1?api-version=2020-09-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Authorization": "Sanitized", + "Content-Length": "154", + "Content-Type": "text/plain; charset=utf-8", + "Serialization-Type": "avro", + "User-Agent": [ + "azsdk-net-Data.SchemaRegistry/1.0.0-alpha.20210811.1", + "(.NET Core 3.1.18; Microsoft Windows 10.0.19043)" + ], + "x-ms-client-request-id": "d8db69fb536de79d6b0e7fa47a616946", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": "{\u0022type\u0022 : \u0022record\u0022,\u0022namespace\u0022 : \u0022TestSchema\u0022,\u0022name\u0022 : \u0022Employee\u0022,\u0022fields\u0022 : [{ \u0022name\u0022 : \u0022Name\u0022 , \u0022type\u0022 : \u0022string\u0022 },{ \u0022name\u0022 : \u0022Age\u0022, \u0022type\u0022 : \u0022int\u0022 }]}", + "StatusCode": 200, + "ResponseHeaders": { + "Content-Type": "application/json", + "Date": "Wed, 11 Aug 2021 19:30:42 GMT", + "Location": "https://jolovschemaregistry.servicebus.windows.net/$schemagroups/azsdk_net_test_group/schemas/test1/versions/1?api-version=2020-09-01-preview", + "Schema-Id": "df9f8210598b40a88675e68c541506b7", + "Schema-Id-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/getschemabyid/df9f8210598b40a88675e68c541506b7?api-version=2020-09-01-preview", + "Schema-Version": "1", + "Schema-Versions-Location": "https://jolovschemaregistry.servicebus.windows.net:443/$schemagroups/azsdk_net_test_group/schemas/test1/versions?api-version=2020-09-01-preview", + "Serialization-Type": "Avro", + "Server": "Microsoft-HTTPAPI/2.0", + "Strict-Transport-Security": "max-age=31536000", + "Transfer-Encoding": "chunked" + }, + "ResponseBody": { + "id": "df9f8210598b40a88675e68c541506b7" } } ], "Variables": { "RandomSeed": "341051900", - "SCHEMAREGISTRY_ENDPOINT": "sr-playground.servicebus.windows.net", - "SCHEMAREGISTRY_GROUP": "miyanni_srgroup" + "SCHEMAREGISTRY_ENDPOINT": "jolovschemaregistry.servicebus.windows.net", + "SCHEMAREGISTRY_GROUP": "azsdk_net_test_group" } } \ No newline at end of file diff --git a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/src/SchemaRegistryAvroObjectSerializer.cs b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/src/SchemaRegistryAvroObjectSerializer.cs index 45dd707a87840..e4cbac366a220 100644 --- a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/src/SchemaRegistryAvroObjectSerializer.cs +++ b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/src/SchemaRegistryAvroObjectSerializer.cs @@ -16,6 +16,7 @@ using System.Text; using System.Threading; using System.Threading.Tasks; +using Azure.Core.Pipeline; namespace Microsoft.Azure.Data.SchemaRegistry.ApacheAvro { @@ -72,16 +73,15 @@ private string GetSchemaId(Schema schema, CancellationToken cancellationToken) var schemaProperties = _options.AutoRegisterSchemas ? _client.RegisterSchema(_groupName, schema.Fullname, SerializationType.Avro, schema.ToString(), cancellationToken) : _client.GetSchemaId(_groupName, schema.Fullname, SerializationType.Avro, schema.ToString(), cancellationToken); - return schemaProperties.Value.Id; + return schemaProperties.Id; } private async Task GetSchemaIdAsync(Schema schema, CancellationToken cancellationToken) { - var schemaProperties = await (_options.AutoRegisterSchemas - ? _client.RegisterSchemaAsync(_groupName, schema.Fullname, SerializationType.Avro, schema.ToString(), cancellationToken) - : _client.GetSchemaIdAsync(_groupName, schema.Fullname, SerializationType.Avro, schema.ToString(), cancellationToken)) - .ConfigureAwait(false); - return schemaProperties.Value.Id; + var schemaProperties = _options.AutoRegisterSchemas + ? (await _client.RegisterSchemaAsync(_groupName, schema.Fullname, SerializationType.Avro, schema.ToString(), cancellationToken).ConfigureAwait(false)).Value + : await _client.GetSchemaIdAsync(_groupName, schema.Fullname, SerializationType.Avro, schema.ToString(), cancellationToken).ConfigureAwait(false); + return schemaProperties.Id; } private static DatumWriter GetWriterAndSchema(object value, SupportedType supportedType, out Schema schema) @@ -100,25 +100,19 @@ private static DatumWriter GetWriterAndSchema(object value, SupportedTyp } /// - public override void Serialize(Stream stream, object value, Type inputType, CancellationToken cancellationToken) - { - Argument.AssertNotNull(stream, nameof(stream)); - Argument.AssertNotNull(value, nameof(value)); - Argument.AssertNotNull(inputType, nameof(inputType)); - - var supportedType = GetSupportedTypeOrThrow(inputType); - var writer = GetWriterAndSchema(value, supportedType, out var schema); - var schemaId = GetSchemaId(schema, cancellationToken); - - var binaryEncoder = new BinaryEncoder(stream); - stream.Write(EmptyRecordFormatIndicator, 0, RecordFormatIndicatorLength); - stream.Write(Utf8Encoding.GetBytes(schemaId), 0, SchemaIdLength); - writer.Write(value, binaryEncoder); - binaryEncoder.Flush(); - } + public override void Serialize(Stream stream, object value, Type inputType, CancellationToken cancellationToken) => + SerializeInternalAsync(stream, value, inputType, false, cancellationToken).EnsureCompleted(); /// - public override async ValueTask SerializeAsync(Stream stream, object value, Type inputType, CancellationToken cancellationToken) + public override async ValueTask SerializeAsync(Stream stream, object value, Type inputType, CancellationToken cancellationToken) => + await SerializeInternalAsync(stream, value, inputType, true, cancellationToken).ConfigureAwait(false); + + private async ValueTask SerializeInternalAsync( + Stream stream, + object value, + Type inputType, + bool async, + CancellationToken cancellationToken) { Argument.AssertNotNull(stream, nameof(stream)); Argument.AssertNotNull(value, nameof(value)); @@ -126,36 +120,50 @@ public override async ValueTask SerializeAsync(Stream stream, object value, Type var supportedType = GetSupportedTypeOrThrow(inputType); var writer = GetWriterAndSchema(value, supportedType, out var schema); - var schemaId = await GetSchemaIdAsync(schema, cancellationToken).ConfigureAwait(false); + + string schemaId; + if (async) + { + schemaId = await GetSchemaIdAsync(schema, cancellationToken).ConfigureAwait(false); + } + else + { + schemaId = GetSchemaId(schema, cancellationToken); + } var binaryEncoder = new BinaryEncoder(stream); - await stream.WriteAsync(EmptyRecordFormatIndicator, 0, RecordFormatIndicatorLength, cancellationToken).ConfigureAwait(false); - await stream.WriteAsync(Utf8Encoding.GetBytes(schemaId), 0, SchemaIdLength, cancellationToken).ConfigureAwait(false); - writer.Write(value, binaryEncoder); - binaryEncoder.Flush(); - } - private Schema GetSchemaById(string schemaId, CancellationToken cancellationToken) - { - if (_cachedSchemas.TryGetValue(schemaId, out var cachedSchema)) + if (async) { - return cachedSchema; + await stream.WriteAsync(EmptyRecordFormatIndicator, 0, RecordFormatIndicatorLength, cancellationToken).ConfigureAwait(false); + await stream.WriteAsync(Utf8Encoding.GetBytes(schemaId), 0, SchemaIdLength, cancellationToken).ConfigureAwait(false); + } + else + { + stream.Write(EmptyRecordFormatIndicator, 0, RecordFormatIndicatorLength); + stream.Write(Utf8Encoding.GetBytes(schemaId), 0, SchemaIdLength); } - var schemaContent = _client.GetSchema(schemaId, cancellationToken).Value.Content; - var schema = Schema.Parse(schemaContent); - _cachedSchemas.Add(schemaId, schema); - return schema; + writer.Write(value, binaryEncoder); + binaryEncoder.Flush(); } - private async Task GetSchemaByIdAsync(string schemaId, CancellationToken cancellationToken) + private async Task GetSchemaByIdAsync(string schemaId, bool async, CancellationToken cancellationToken) { - if (_cachedSchemas.TryGetValue(schemaId, out var cachedSchema)) + if (_cachedSchemas.TryGetValue(schemaId, out Schema cachedSchema)) { return cachedSchema; } - var schemaContent = (await _client.GetSchemaAsync(schemaId, cancellationToken).ConfigureAwait(false)).Value.Content; + string schemaContent; + if (async) + { + schemaContent = (await _client.GetSchemaAsync(schemaId, cancellationToken).ConfigureAwait(false)).Content; + } + else + { + schemaContent = _client.GetSchema(schemaId, cancellationToken).Content; + } var schema = Schema.Parse(schemaContent); _cachedSchemas.Add(schemaId, schema); return schema; @@ -192,40 +200,42 @@ private static void ValidateRecordFormatIdentifier(ReadOnlyMemory message) } /// - public override object Deserialize(Stream stream, Type returnType, CancellationToken cancellationToken) - { - Argument.AssertNotNull(stream, nameof(stream)); - Argument.AssertNotNull(returnType, nameof(returnType)); - - var supportedType = GetSupportedTypeOrThrow(returnType); - var message = CopyToReadOnlyMemory(stream); - ValidateRecordFormatIdentifier(message); - var schemaIdBytes = message.Slice(RecordFormatIndicatorLength, SchemaIdLength).ToArray(); - var schemaId = Utf8Encoding.GetString(schemaIdBytes); - var schema = GetSchemaById(schemaId, cancellationToken); - using var valueStream = new MemoryStream(message.Slice(PayloadStartPosition, message.Length - PayloadStartPosition).ToArray()); - - var binaryDecoder = new BinaryDecoder(valueStream); - var reader = GetReader(schema, supportedType); - return reader.Read(reuse: null, binaryDecoder); - } + public override object Deserialize(Stream stream, Type returnType, CancellationToken cancellationToken) => + DeserializeInternalAsync(stream, returnType, false, cancellationToken).EnsureCompleted(); /// - public override async ValueTask DeserializeAsync(Stream stream, Type returnType, CancellationToken cancellationToken) + public override async ValueTask DeserializeAsync(Stream stream, Type returnType, CancellationToken cancellationToken) => + await DeserializeInternalAsync(stream, returnType, true, cancellationToken).ConfigureAwait(false); + + private async ValueTask DeserializeInternalAsync( + Stream stream, + Type returnType, + bool async, + CancellationToken cancellationToken) { Argument.AssertNotNull(stream, nameof(stream)); Argument.AssertNotNull(returnType, nameof(returnType)); - var supportedType = GetSupportedTypeOrThrow(returnType); - var message = CopyToReadOnlyMemory(stream); + SupportedType supportedType = GetSupportedTypeOrThrow(returnType); + ReadOnlyMemory message = CopyToReadOnlyMemory(stream); ValidateRecordFormatIdentifier(message); - var schemaIdBytes = message.Slice(RecordFormatIndicatorLength, SchemaIdLength).ToArray(); - var schemaId = Utf8Encoding.GetString(schemaIdBytes); - var schema = await GetSchemaByIdAsync(schemaId, cancellationToken).ConfigureAwait(false); + byte[] schemaIdBytes = message.Slice(RecordFormatIndicatorLength, SchemaIdLength).ToArray(); + string schemaId = Utf8Encoding.GetString(schemaIdBytes); + + Schema schema; + if (async) + { + schema = await GetSchemaByIdAsync(schemaId, true, cancellationToken).ConfigureAwait(false); + } + else + { + schema = GetSchemaByIdAsync(schemaId, false, cancellationToken).EnsureCompleted(); + } + using var valueStream = new MemoryStream(message.Slice(PayloadStartPosition, message.Length - PayloadStartPosition).ToArray()); var binaryDecoder = new BinaryDecoder(valueStream); - var reader = GetReader(schema, supportedType); + DatumReader reader = GetReader(schema, supportedType); return reader.Read(reuse: null, binaryDecoder); } } diff --git a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SchemaRegistryAvroObjectSerializerLiveTests.cs b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SchemaRegistryAvroObjectSerializerLiveTests.cs index 579e14be414ac..062cafeaf265b 100644 --- a/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SchemaRegistryAvroObjectSerializerLiveTests.cs +++ b/sdk/schemaregistry/Microsoft.Azure.Data.SchemaRegistry.ApacheAvro/tests/SchemaRegistryAvroObjectSerializerLiveTests.cs @@ -28,7 +28,7 @@ private SchemaRegistryClient CreateClient() => InstrumentClientOptions(new SchemaRegistryClientOptions()) )); - [Test] + [RecordedTest] public async Task CanSerializeAndDeserialize() { var client = CreateClient(); @@ -47,7 +47,7 @@ public async Task CanSerializeAndDeserialize() Assert.AreEqual(42, readEmployee.Age); } - [Test] + [RecordedTest] public async Task CanSerializeAndDeserializeGenericRecord() { var client = CreateClient(); @@ -68,7 +68,7 @@ public async Task CanSerializeAndDeserializeGenericRecord() Assert.AreEqual(42, readRecord.GetValue(1)); } - [Test] + [RecordedTest] public async Task CannotSerializeUnsupportedType() { var client = CreateClient(); @@ -81,7 +81,7 @@ public async Task CannotSerializeUnsupportedType() await Task.CompletedTask; } - [Test] + [RecordedTest] public async Task CannotDeserializeUnsupportedType() { var client = CreateClient(); diff --git a/sdk/servicebus/Azure.Messaging.ServiceBus/CHANGELOG.md b/sdk/servicebus/Azure.Messaging.ServiceBus/CHANGELOG.md index 60f292d8a3cf9..2184ccaa5d671 100644 --- a/sdk/servicebus/Azure.Messaging.ServiceBus/CHANGELOG.md +++ b/sdk/servicebus/Azure.Messaging.ServiceBus/CHANGELOG.md @@ -1,14 +1,24 @@ # Release History -## 7.3.0-beta.1 (Unreleased) +## 7.3.0-beta.1 (2021-08-10) -### Features Added +### Acknowledgments +Thank you to our developer community members who helped to make the Service Bus client library better with their contributions to this release: -### Breaking Changes +- Timothee Lecomte _([GitHub](https://github.com/tlecomte))_ +- Shlomi Assaf _([GitHub](https://github.com/shlomiassaf))_ + +### Features Added +- Added the `ReleaseSession` method to `ProcessSessionMessageEventArgs` which allows processing for a session to terminated early. +- Added protected constructors to `ServiceBusProcessor`, `ServiceBusReceiver`, `ServiceBusSender`, and `ServiceBusSessionProcessor` to allow these types to be extended. +- Added `UpdateConcurrency` methods to `ServiceBusProcessor` and `ServiceBusSessionProcessor` to allow concurrency to be changed for an already created processor. +- Allow a TimeSpan of zero to be passed as the `maxWaitTime` for the various receive overloads if Prefetch mode is enabled. ### Bugs Fixed +- Fixed bug where receiving a message with `AbsoluteExpiryTime` of DateTime.MaxValue would cause an `ArgumentException'. (A community contribution, courtesy of _[tlecomte](https://github.com/tlecomte))_ ### Other Changes +- Fixed reference name conflicts in `ServiceBusModelFactory` ref docs. (A community contribution, courtesy of _[shlomiassaf](https://github.com/shlomiassaf))_ ## 7.2.1 (2021-07-07) diff --git a/sdk/servicebus/Azure.Messaging.ServiceBus/src/Amqp/AmqpReceiver.cs b/sdk/servicebus/Azure.Messaging.ServiceBus/src/Amqp/AmqpReceiver.cs index fdbaf909365f9..8f3e7ca909bc4 100644 --- a/sdk/servicebus/Azure.Messaging.ServiceBus/src/Amqp/AmqpReceiver.cs +++ b/sdk/servicebus/Azure.Messaging.ServiceBus/src/Amqp/AmqpReceiver.cs @@ -1258,7 +1258,7 @@ internal async Task SetStateInternal( /// /// A containing the sequence numbers to receive. /// - /// Messages identified by sequence number are returned. Returns null if no messages are found. + /// Messages identified by sequence number are returned. /// Throws if the messages have not been deferred. /// public override async Task> ReceiveDeferredMessagesAsync( diff --git a/sdk/servicebus/Azure.Messaging.ServiceBus/src/Core/TransportReceiver.cs b/sdk/servicebus/Azure.Messaging.ServiceBus/src/Core/TransportReceiver.cs index b9147246e5bf3..e52fca4e6ca10 100644 --- a/sdk/servicebus/Azure.Messaging.ServiceBus/src/Core/TransportReceiver.cs +++ b/sdk/servicebus/Azure.Messaging.ServiceBus/src/Core/TransportReceiver.cs @@ -172,7 +172,7 @@ public abstract Task DeadLetterAsync( /// /// A containing the sequence numbers to receive. /// - /// Messages identified by sequence number are returned. Returns null if no messages are found. + /// Messages identified by sequence number are returned. /// Throws if the messages have not been deferred. /// public abstract Task> ReceiveDeferredMessagesAsync( diff --git a/sdk/servicebus/Azure.Messaging.ServiceBus/src/Receiver/ServiceBusReceiver.cs b/sdk/servicebus/Azure.Messaging.ServiceBus/src/Receiver/ServiceBusReceiver.cs index c354e8b3ede78..799aed3a11cdb 100644 --- a/sdk/servicebus/Azure.Messaging.ServiceBus/src/Receiver/ServiceBusReceiver.cs +++ b/sdk/servicebus/Azure.Messaging.ServiceBus/src/Receiver/ServiceBusReceiver.cs @@ -950,10 +950,14 @@ private static void ThrowIfLockTokenIsEmpty(Guid lockToken) /// the . /// An optional instance to signal the request to cancel the operation. /// - /// The deferred message identified by the specified sequence number. Returns null if no message is found. + /// The deferred message identified by the specified sequence number. /// Throws if the message has not been deferred. /// /// + /// + /// The specified sequence number does not correspond to a message that has been deferred. + /// The will be set to in this case. + /// public virtual async Task ReceiveDeferredMessageAsync( long sequenceNumber, CancellationToken cancellationToken = default) => @@ -966,7 +970,7 @@ public virtual async Task ReceiveDeferredMessageAsync /// An optional instance to signal the request to cancel the operation. /// An containing the sequence numbers to receive. /// - /// Messages identified by sequence number are returned. Returns null if no messages are found. + /// Messages identified by sequence number are returned. /// Throws if the messages have not been deferred. /// /// diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/ILedgerDigestUploadsOperations.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/ILedgerDigestUploadsOperations.cs index 1d4195a1be62a..d816fa4d26feb 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/ILedgerDigestUploadsOperations.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/ILedgerDigestUploadsOperations.cs @@ -148,6 +148,70 @@ public partial interface ILedgerDigestUploadsOperations /// Task> DisableWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Enables upload ledger digests to an Azure Storage account or an + /// Azure Confidential Ledger instance. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database. + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, LedgerDigestUploads parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Disables uploading ledger digests to an Azure Storage account or an + /// Azure Confidential Ledger instance. + /// + /// + /// The name of the resource group that contains the resource. You can + /// obtain this value from the Azure Resource Manager API or the + /// portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginDisableWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Gets all ledger digest upload settings on a database. /// /// diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/LedgerDigestUploadsOperations.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/LedgerDigestUploadsOperations.cs index 8af8676c11e9d..8643ebc5a4c24 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/LedgerDigestUploadsOperations.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/LedgerDigestUploadsOperations.cs @@ -274,6 +274,32 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) /// /// /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, LedgerDigestUploads parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets all ledger digest upload settings on a database. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database. + /// + /// /// Headers that will be added to request. /// /// @@ -294,7 +320,7 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, LedgerDigestUploads parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -308,15 +334,10 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string ledgerDigestUploads = "current"; string apiVersion = "2021-02-01-preview"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -328,19 +349,16 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); - tracingParameters.Add("ledgerDigestUploads", ledgerDigestUploads); - tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByDatabase", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/ledgerDigestUploads/{ledgerDigestUploads}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/ledgerDigestUploads").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); - _url = _url.Replace("{ledgerDigestUploads}", System.Uri.EscapeDataString(ledgerDigestUploads)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) @@ -354,7 +372,7 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -385,12 +403,6 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -411,7 +423,7 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202) + if ((int)_statusCode != 200) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -446,7 +458,7 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -459,7 +471,7 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -479,7 +491,8 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) } /// - /// Gets all ledger digest upload settings on a database. + /// Disables uploading ledger digests to an Azure Storage account or an Azure + /// Confidential Ledger instance. /// /// /// The name of the resource group that contains the resource. You can obtain @@ -492,6 +505,35 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) /// The name of the database. /// /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> DisableWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDisableWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Enables upload ledger digests to an Azure Storage account or an Azure + /// Confidential Ledger instance. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database. + /// + /// + /// + /// /// Headers that will be added to request. /// /// @@ -512,7 +554,7 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByDatabaseWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, LedgerDigestUploads parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -526,10 +568,15 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "databaseName"); } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string ledgerDigestUploads = "current"; string apiVersion = "2021-02-01-preview"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -541,16 +588,19 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("serverName", serverName); tracingParameters.Add("databaseName", databaseName); + tracingParameters.Add("ledgerDigestUploads", ledgerDigestUploads); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByDatabase", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/ledgerDigestUploads").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/ledgerDigestUploads/{ledgerDigestUploads}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{serverName}", System.Uri.EscapeDataString(serverName)); _url = _url.Replace("{databaseName}", System.Uri.EscapeDataString(databaseName)); + _url = _url.Replace("{ledgerDigestUploads}", System.Uri.EscapeDataString(ledgerDigestUploads)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); if (apiVersion != null) @@ -564,7 +614,7 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -595,6 +645,12 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -615,7 +671,7 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 202) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -650,7 +706,7 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -663,7 +719,7 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -717,7 +773,7 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> DisableWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginDisableWithHttpMessagesAsync(string resourceGroupName, string serverName, string databaseName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -750,7 +806,7 @@ internal LedgerDigestUploadsOperations(SqlManagementClient client) tracingParameters.Add("ledgerDigestUploads", ledgerDigestUploads); tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Disable", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginDisable", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/LedgerDigestUploadsOperationsExtensions.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/LedgerDigestUploadsOperationsExtensions.cs index eb654d117b656..f578b221c064d 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/LedgerDigestUploadsOperationsExtensions.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/LedgerDigestUploadsOperationsExtensions.cs @@ -221,6 +221,110 @@ public static LedgerDigestUploads Disable(this ILedgerDigestUploadsOperations op } } + /// + /// Enables upload ledger digests to an Azure Storage account or an Azure + /// Confidential Ledger instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database. + /// + /// + /// + public static LedgerDigestUploads BeginCreateOrUpdate(this ILedgerDigestUploadsOperations operations, string resourceGroupName, string serverName, string databaseName, LedgerDigestUploads parameters) + { + return operations.BeginCreateOrUpdateAsync(resourceGroupName, serverName, databaseName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Enables upload ledger digests to an Azure Storage account or an Azure + /// Confidential Ledger instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database. + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAsync(this ILedgerDigestUploadsOperations operations, string resourceGroupName, string serverName, string databaseName, LedgerDigestUploads parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Disables uploading ledger digests to an Azure Storage account or an Azure + /// Confidential Ledger instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database. + /// + public static LedgerDigestUploads BeginDisable(this ILedgerDigestUploadsOperations operations, string resourceGroupName, string serverName, string databaseName) + { + return operations.BeginDisableAsync(resourceGroupName, serverName, databaseName).GetAwaiter().GetResult(); + } + + /// + /// Disables uploading ledger digests to an Azure Storage account or an Azure + /// Confidential Ledger instance. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group that contains the resource. You can obtain + /// this value from the Azure Resource Manager API or the portal. + /// + /// + /// The name of the server. + /// + /// + /// The name of the database. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDisableAsync(this ILedgerDigestUploadsOperations operations, string resourceGroupName, string serverName, string databaseName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginDisableWithHttpMessagesAsync(resourceGroupName, serverName, databaseName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Gets all ledger digest upload settings on a database. /// diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/Models/IdentityType.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/Models/IdentityType.cs index 83b18afcdd7ed..77309161091cd 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/Models/IdentityType.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/Models/IdentityType.cs @@ -19,5 +19,6 @@ public static class IdentityType public const string None = "None"; public const string SystemAssigned = "SystemAssigned"; public const string UserAssigned = "UserAssigned"; + public const string SystemAssignedUserAssigned = "SystemAssigned,UserAssigned"; } } diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/Models/ResourceIdentity.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/Models/ResourceIdentity.cs index f1c2678f640b7..f199bc092a0fe 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/Models/ResourceIdentity.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/Models/ResourceIdentity.cs @@ -38,7 +38,8 @@ public ResourceIdentity() /// The identity type. Set this to 'SystemAssigned' /// in order to automatically create and assign an Azure Active /// Directory principal for the resource. Possible values include: - /// 'None', 'SystemAssigned', 'UserAssigned' + /// 'None', 'SystemAssigned', 'UserAssigned', + /// 'SystemAssigned,UserAssigned' /// The Azure Active Directory tenant /// id. public ResourceIdentity(IDictionary userAssignedIdentities = default(IDictionary), System.Guid? principalId = default(System.Guid?), string type = default(string), System.Guid? tenantId = default(System.Guid?)) @@ -72,7 +73,7 @@ public ResourceIdentity() /// Gets or sets the identity type. Set this to 'SystemAssigned' in /// order to automatically create and assign an Azure Active Directory /// principal for the resource. Possible values include: 'None', - /// 'SystemAssigned', 'UserAssigned' + /// 'SystemAssigned', 'UserAssigned', 'SystemAssigned,UserAssigned' /// [JsonProperty(PropertyName = "type")] public string Type { get; set; } diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/Models/ResourceIdentityWithUserAssignedIdentities.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/Models/ResourceIdentityWithUserAssignedIdentities.cs deleted file mode 100644 index 6df0be98d2ba5..0000000000000 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/Models/ResourceIdentityWithUserAssignedIdentities.cs +++ /dev/null @@ -1,89 +0,0 @@ -// -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.Management.Sql.Models -{ - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Azure Active Directory identity configuration for a resource. - /// - public partial class ResourceIdentityWithUserAssignedIdentities - { - /// - /// Initializes a new instance of the - /// ResourceIdentityWithUserAssignedIdentities class. - /// - public ResourceIdentityWithUserAssignedIdentities() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// ResourceIdentityWithUserAssignedIdentities class. - /// - /// The resource ids of the user - /// assigned identities to use - /// The Azure Active Directory principal - /// id. - /// The identity type. Set this to 'SystemAssigned' - /// in order to automatically create and assign an Azure Active - /// Directory principal for the resource. Possible values include: - /// 'None', 'SystemAssigned', 'UserAssigned' - /// The Azure Active Directory tenant - /// id. - public ResourceIdentityWithUserAssignedIdentities(IDictionary userAssignedIdentities = default(IDictionary), System.Guid? principalId = default(System.Guid?), string type = default(string), System.Guid? tenantId = default(System.Guid?)) - { - UserAssignedIdentities = userAssignedIdentities; - PrincipalId = principalId; - Type = type; - TenantId = tenantId; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the resource ids of the user assigned identities to - /// use - /// - [JsonProperty(PropertyName = "userAssignedIdentities")] - public IDictionary UserAssignedIdentities { get; set; } - - /// - /// Gets the Azure Active Directory principal id. - /// - [JsonProperty(PropertyName = "principalId")] - public System.Guid? PrincipalId { get; private set; } - - /// - /// Gets or sets the identity type. Set this to 'SystemAssigned' in - /// order to automatically create and assign an Azure Active Directory - /// principal for the resource. Possible values include: 'None', - /// 'SystemAssigned', 'UserAssigned' - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; set; } - - /// - /// Gets the Azure Active Directory tenant id. - /// - [JsonProperty(PropertyName = "tenantId")] - public System.Guid? TenantId { get; private set; } - - } -} diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/SdkInfo_SqlManagementClient.cs b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/SdkInfo_SqlManagementClient.cs index b5e176540664b..d59a0d04b403a 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/SdkInfo_SqlManagementClient.cs +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Generated/SdkInfo_SqlManagementClient.cs @@ -148,10 +148,10 @@ public static IEnumerable> ApiInfo_SqlManagementCl // BEGIN: Code Generation Metadata Section public static readonly String AutoRestVersion = "v2"; public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4413"; - public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/sql/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=D:\\azure-sdk-for-net\\sdk"; + public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/sql/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\azure-sdk-for-net\\sdk"; public static readonly String GithubForkName = "Azure"; public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "78c2a3fb24bfd4cd3372520bb9df203561c71487"; + public static readonly String GithubCommidId = "111fbceeeb7c2c4905b80fe2ab760e5564b3458a"; public static readonly String CodeGenerationErrors = ""; public static readonly String GithubRepoName = "azure-rest-api-specs"; // END: Code Generation Metadata Section diff --git a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Microsoft.Azure.Management.Sql.csproj b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Microsoft.Azure.Management.Sql.csproj index d2626d3e39af7..0559bb466c375 100644 --- a/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Microsoft.Azure.Management.Sql.csproj +++ b/sdk/sqlmanagement/Microsoft.Azure.Management.Sql/src/Microsoft.Azure.Management.Sql.csproj @@ -7,7 +7,7 @@ Microsoft.Azure.Management.Sql Azure SQL Management SDK library Microsoft.Azure.Management.Sql - 1.55.0-preview + 1.56.0-preview Microsoft Azure SQL Management;SQL;SQL Management; blobItems = new List(); - await foreach (BlobItem blobItem in vlwContainer.Container.GetBlobsAsync(traits: BlobTraits.ImmutabilityPolicy)) + await foreach (BlobItem blobItem in _containerClient.GetBlobsAsync(traits: BlobTraits.ImmutabilityPolicy, prefix: blob.Name)) { blobItems.Add(blobItem); } @@ -87,8 +157,7 @@ public async Task SetImmutibilityPolicyAsync() public async Task SetImmutibilityPolicyAsync_IfModifiedSince() { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - BlobBaseClient blob = await GetNewBlobClient(vlwContainer.Container); + BlobBaseClient blob = await GetNewBlobClient(_containerClient); BlobImmutabilityPolicy immutabilityPolicy = new BlobImmutabilityPolicy { @@ -172,9 +241,7 @@ await TestHelper.AssertExpectedExceptionAsync( public async Task SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(AccountSasPermissions sasPermissions) { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - - BlobBaseClient blob = await GetNewBlobClient(vlwContainer.Container, GetNewBlobName()); + BlobBaseClient blob = await GetNewBlobClient(_containerClient, GetNewBlobName()); BlobServiceClient sharedKeyServiceClient = InstrumentClient( GetServiceClient_OAuthAccount_SharedKey()); @@ -183,7 +250,7 @@ public async Task SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(AccountSasP Recording.UtcNow.AddDays(1), AccountSasResourceTypes.All); BlobBaseClient sasBlobClient = InstrumentClient(new BlobServiceClient(serviceSasUri, GetOptions()) - .GetBlobContainerClient(vlwContainer.Container.Name) + .GetBlobContainerClient(_containerClient.Name) .GetBlobBaseClient(blob.Name)); BlobImmutabilityPolicy immutabilityPolicy = new BlobImmutabilityPolicy @@ -217,12 +284,10 @@ public async Task SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(AccountSasP public async Task SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(BlobContainerSasPermissions sasPermissions) { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - - BlobBaseClient blob = await GetNewBlobClient(vlwContainer.Container, GetNewBlobName()); + BlobBaseClient blob = await GetNewBlobClient(_containerClient, GetNewBlobName()); BlobContainerClient sharedKeyContainer = InstrumentClient( - GetServiceClient_OAuthAccount_SharedKey().GetBlobContainerClient(vlwContainer.Container.Name)); + GetServiceClient_OAuthAccount_SharedKey().GetBlobContainerClient(_containerClient.Name)); Uri containerSasUri = sharedKeyContainer.GenerateSasUri(sasPermissions, Recording.UtcNow.AddDays(1)); BlobBaseClient sasBlobClient = InstrumentClient(new BlobContainerClient(containerSasUri, GetOptions()).GetBlobBaseClient(blob.Name)); @@ -257,13 +322,11 @@ public async Task SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(BlobConta public async Task SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(BlobSasPermissions sasPermissions) { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - - BlobBaseClient blob = await GetNewBlobClient(vlwContainer.Container, GetNewBlobName()); + BlobBaseClient blob = await GetNewBlobClient(_containerClient, GetNewBlobName()); BlobBaseClient sharedKeyBlob = InstrumentClient( GetServiceClient_OAuthAccount_SharedKey() - .GetBlobContainerClient(vlwContainer.Container.Name) + .GetBlobContainerClient(_containerClient.Name) .GetBlobBaseClient(blob.Name)); Uri blobSasUri = sharedKeyBlob.GenerateSasUri(sasPermissions, Recording.UtcNow.AddDays(1)); BlobBaseClient sasBlobClient = InstrumentClient(new BlobBaseClient(blobSasUri, GetOptions())); @@ -299,15 +362,13 @@ public async Task SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(BlobSasPermiss public async Task SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(SnapshotSasPermissions sasPermissions) { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - - BlobBaseClient blob = await GetNewBlobClient(vlwContainer.Container, GetNewBlobName()); + BlobBaseClient blob = await GetNewBlobClient(_containerClient, GetNewBlobName()); Response snapshotResponse = await blob.CreateSnapshotAsync(); BlobSasBuilder blobSasBuilder = new BlobSasBuilder { - BlobContainerName = vlwContainer.Container.Name, + BlobContainerName = _containerClient.Name, BlobName = blob.Name, ExpiresOn = Recording.UtcNow.AddDays(1), Snapshot = snapshotResponse.Value.Snapshot @@ -358,16 +419,14 @@ public async Task SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(Snapsh public async Task SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(BlobVersionSasPermissions sasPermissions) { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - - BlobBaseClient blob = await GetNewBlobClient(vlwContainer.Container, GetNewBlobName()); + BlobBaseClient blob = await GetNewBlobClient(_containerClient, GetNewBlobName()); IDictionary metadata = BuildMetadata(); Response metadataResponse = await blob.SetMetadataAsync(metadata); BlobSasBuilder blobSasBuilder = new BlobSasBuilder { - BlobContainerName = vlwContainer.Container.Name, + BlobContainerName = _containerClient.Name, BlobName = blob.Name, ExpiresOn = Recording.UtcNow.AddDays(1), Version = metadataResponse.Value.VersionId @@ -411,8 +470,7 @@ public async Task SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(BlobVer public async Task SetImmutibilityPolicyAsync_IfModifiedSince_Failed() { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - BlobBaseClient blob = await GetNewBlobClient(vlwContainer.Container); + BlobBaseClient blob = await GetNewBlobClient(_containerClient); BlobImmutabilityPolicy immutabilityPolicy = new BlobImmutabilityPolicy { @@ -438,8 +496,7 @@ await TestHelper.AssertExpectedExceptionAsync( public async Task SetImmutibilityPolicyAsync_Error() { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - BlobBaseClient blob = InstrumentClient(vlwContainer.Container.GetBlobClient(GetNewBlobName())); + BlobBaseClient blob = InstrumentClient(_containerClient.GetBlobClient(GetNewBlobName())); BlobImmutabilityPolicy immutabilityPolicy = new BlobImmutabilityPolicy { @@ -458,8 +515,7 @@ await TestHelper.AssertExpectedExceptionAsync( public async Task SetImmutibilityPolicyAsync_Mutable() { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - BlobBaseClient blob = InstrumentClient(vlwContainer.Container.GetBlobClient(GetNewBlobName())); + BlobBaseClient blob = InstrumentClient(_containerClient.GetBlobClient(GetNewBlobName())); BlobImmutabilityPolicy immutabilityPolicy = new BlobImmutabilityPolicy { @@ -478,8 +534,7 @@ await TestHelper.AssertExpectedExceptionAsync( public async Task DeleteImmutibilityPolicyAsync() { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - BlobBaseClient blob = await GetNewBlobClient(vlwContainer.Container); + BlobBaseClient blob = await GetNewBlobClient(_containerClient); BlobImmutabilityPolicy immutabilityPolicy = new BlobImmutabilityPolicy { @@ -503,8 +558,7 @@ public async Task DeleteImmutibilityPolicyAsync() public async Task DeleteImmutibilityPolicyAsync_Error() { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - BlobBaseClient blob = InstrumentClient(vlwContainer.Container.GetBlobClient(GetNewBlobName())); + BlobBaseClient blob = InstrumentClient(_containerClient.GetBlobClient(GetNewBlobName())); // Act await TestHelper.AssertExpectedExceptionAsync( @@ -517,8 +571,7 @@ await TestHelper.AssertExpectedExceptionAsync( public async Task SetLegalHoldAsync() { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - BlobBaseClient blob = await GetNewBlobClient(vlwContainer.Container); + BlobBaseClient blob = await GetNewBlobClient(_containerClient); // Act Response response = await blob.SetLegalHoldAsync(true); @@ -536,7 +589,7 @@ public async Task SetLegalHoldAsync() // Validate we are correctly deserializing Blob Items. // Act List blobItems = new List(); - await foreach (BlobItem blobItem in vlwContainer.Container.GetBlobsAsync(traits: BlobTraits.LegalHold)) + await foreach (BlobItem blobItem in _containerClient.GetBlobsAsync(traits: BlobTraits.LegalHold, prefix: blob.Name)) { blobItems.Add(blobItem); } @@ -564,8 +617,7 @@ public async Task SetLegalHoldAsync() public async Task SetLegalHoldAsync_Error() { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - BlobBaseClient blob = InstrumentClient(vlwContainer.Container.GetBlobClient(GetNewBlobName())); + BlobBaseClient blob = InstrumentClient(_containerClient.GetBlobClient(GetNewBlobName())); // Act await TestHelper.AssertExpectedExceptionAsync( @@ -577,21 +629,18 @@ await TestHelper.AssertExpectedExceptionAsync( [ServiceVersion(Min = BlobClientOptions.ServiceVersion.V2020_06_12)] public async Task ContainerImmutableStorageWithVersioning() { - // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - // Validate we are deserializing Get Container Properties responses correctly. // Act - Response propertiesResponse = await vlwContainer.Container.GetPropertiesAsync(); + Response propertiesResponse = await _containerClient.GetPropertiesAsync(); // Assert Assert.IsTrue(propertiesResponse.Value.HasImmutableStorageWithVersioning); // Validate we are deserializing BlobContainerItems correctly. // Act - BlobServiceClient blobServiceClient = vlwContainer.Container.GetParentBlobServiceClient(); + BlobServiceClient blobServiceClient = _containerClient.GetParentBlobServiceClient(); IList containers = await blobServiceClient.GetBlobContainersAsync().ToListAsync(); - BlobContainerItem containerItem = containers.Where(c => c.Name == vlwContainer.Container.Name).FirstOrDefault(); + BlobContainerItem containerItem = containers.Where(c => c.Name == _containerClient.Name).FirstOrDefault(); // Assert Assert.IsTrue(containerItem.Properties.HasImmutableStorageWithVersioning); @@ -602,8 +651,7 @@ public async Task ContainerImmutableStorageWithVersioning() public async Task CreateAppendBlob_ImmutableStorageWithVersioning() { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - AppendBlobClient appendBlob = InstrumentClient(vlwContainer.Container.GetAppendBlobClient(GetNewBlobName())); + AppendBlobClient appendBlob = InstrumentClient(_containerClient.GetAppendBlobClient(GetNewBlobName())); BlobImmutabilityPolicy immutabilityPolicy = new BlobImmutabilityPolicy { @@ -635,8 +683,7 @@ public async Task CreateAppendBlob_ImmutableStorageWithVersioning() public async Task CreatePageBlob_ImmutableStorageWithVersioning() { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - PageBlobClient pageBlob = InstrumentClient(vlwContainer.Container.GetPageBlobClient(GetNewBlobName())); + PageBlobClient pageBlob = InstrumentClient(_containerClient.GetPageBlobClient(GetNewBlobName())); BlobImmutabilityPolicy immutabilityPolicy = new BlobImmutabilityPolicy { @@ -668,8 +715,7 @@ public async Task CreatePageBlob_ImmutableStorageWithVersioning() public async Task CommitBlockList_ImmutableStorageWithVersioning() { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - BlockBlobClient blockBlob = InstrumentClient(vlwContainer.Container.GetBlockBlobClient(GetNewBlobName())); + BlockBlobClient blockBlob = InstrumentClient(_containerClient.GetBlockBlobClient(GetNewBlobName())); byte[] data = GetRandomBuffer(Constants.KB); string blockName = GetNewBlockName(); @@ -713,8 +759,7 @@ public async Task CommitBlockList_ImmutableStorageWithVersioning() public async Task Upload_ImmutableStorageWithVersioning(bool multipart) { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - BlockBlobClient blockBlob = InstrumentClient(vlwContainer.Container.GetBlockBlobClient(GetNewBlobName())); + BlockBlobClient blockBlob = InstrumentClient(_containerClient.GetBlockBlobClient(GetNewBlobName())); byte[] data = GetRandomBuffer(Constants.KB); using Stream stream = new MemoryStream(data); @@ -759,9 +804,8 @@ public async Task Upload_ImmutableStorageWithVersioning(bool multipart) public async Task SyncCopyFromUri_ImmutableStorageWithVersioning() { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - BlobBaseClient srcBlob = await GetNewBlobClient(vlwContainer.Container); - BlockBlobClient destBlob = InstrumentClient(vlwContainer.Container.GetBlockBlobClient(GetNewBlobName())); + BlobBaseClient srcBlob = await GetNewBlobClient(_containerClient); + BlockBlobClient destBlob = InstrumentClient(_containerClient.GetBlockBlobClient(GetNewBlobName())); BlobImmutabilityPolicy immutabilityPolicy = new BlobImmutabilityPolicy { @@ -793,9 +837,8 @@ public async Task SyncCopyFromUri_ImmutableStorageWithVersioning() public async Task StartCopyFromUri_ImmutableStorageWithVersioning() { // Arrange - await using DisposingImmutableStorageWithVersioningContainer vlwContainer = await GetTestVersionLevelWormContainer(TestConfigOAuth); - BlobBaseClient srcBlob = await GetNewBlobClient(vlwContainer.Container); - BlockBlobClient destBlob = InstrumentClient(vlwContainer.Container.GetBlockBlobClient(GetNewBlobName())); + BlobBaseClient srcBlob = await GetNewBlobClient(_containerClient); + BlockBlobClient destBlob = InstrumentClient(_containerClient.GetBlockBlobClient(GetNewBlobName())); BlobImmutabilityPolicy immutabilityPolicy = new BlobImmutabilityPolicy { @@ -823,21 +866,6 @@ public async Task StartCopyFromUri_ImmutableStorageWithVersioning() Assert.IsTrue(propertiesResponse.Value.HasLegalHold); } - private async Task GetTestVersionLevelWormContainer(TenantConfiguration tenantConfiguration) - { - StorageSharedKeyCredential sharedKeyCredential = new StorageSharedKeyCredential(TestConfigOAuth.AccountName, TestConfigOAuth.AccountKey); - Uri serviceUri = new Uri(TestConfigOAuth.BlobServiceEndpoint); - BlobServiceClient blobServiceClient = InstrumentClient(new BlobServiceClient(serviceUri, sharedKeyCredential, GetOptions())); - BlobContainerClient containerClient = InstrumentClient(blobServiceClient.GetBlobContainerClient(GetNewContainerName())); - - DisposingImmutableStorageWithVersioningContainer disposingVersionLevelWormContainer = new DisposingImmutableStorageWithVersioningContainer( - tenantConfiguration, - containerClient, - Mode); - await disposingVersionLevelWormContainer.CreateAsync(); - return disposingVersionLevelWormContainer; - } - private DateTimeOffset RoundToNearestSecond(DateTimeOffset initalDateTimeOffset) => new DateTimeOffset( year: initalDateTimeOffset.Year, @@ -848,102 +876,4 @@ private DateTimeOffset RoundToNearestSecond(DateTimeOffset initalDateTimeOffset) second: initalDateTimeOffset.Second, offset: TimeSpan.Zero); } - -#pragma warning disable SA1402 // File may only contain a single type - public class DisposingImmutableStorageWithVersioningContainer : IAsyncDisposable -#pragma warning restore SA1402 // File may only contain a single type - { - public BlobContainerClient Container; - - private TenantConfiguration _tenantConfiguration; - private StorageManagementClient _storageManagementClient; - - private RecordedTestMode _testMode; - - public DisposingImmutableStorageWithVersioningContainer( - TenantConfiguration tenantConfiguration, - BlobContainerClient containerClient, - RecordedTestMode recordedTestMode) - { - _tenantConfiguration = tenantConfiguration; - Container = containerClient; - _testMode = recordedTestMode; - } - - public async Task CreateAsync() - { - if (_testMode == RecordedTestMode.Playback) - { - return; - } - - string subscriptionId = _tenantConfiguration.SubscriptionId; - string token = await GetAuthToken(); - TokenCredentials tokenCredentials = new TokenCredentials(token); - _storageManagementClient = new StorageManagementClient(tokenCredentials) { SubscriptionId = subscriptionId }; - - await _storageManagementClient.BlobContainers.CreateAsync( - resourceGroupName: _tenantConfiguration.ResourceGroupName, - accountName: _tenantConfiguration.AccountName, - containerName: Container.Name, - new Microsoft.Azure.Management.Storage.Models.BlobContainer( - publicAccess: Microsoft.Azure.Management.Storage.Models.PublicAccess.Container, - immutableStorageWithVersioning: new Microsoft.Azure.Management.Storage.Models.ImmutableStorageWithVersioning(true))); - } - - public async ValueTask DisposeAsync() - { - if (_testMode == RecordedTestMode.Playback) - { - return; - } - - if (Container != null) - { - await foreach (BlobItem blobItem in Container.GetBlobsAsync(BlobTraits.ImmutabilityPolicy | BlobTraits.LegalHold)) - { - BlobClient blobClient = Container.GetBlobClient(blobItem.Name); - - if (blobItem.Properties.HasLegalHold) - { - await blobClient.SetLegalHoldAsync(false); - } - - if (blobItem.Properties.ImmutabilityPolicy.ExpiresOn != null) - { - await blobClient.DeleteImmutabilityPolicyAsync(); - } - - await blobClient.DeleteIfExistsAsync(); - } - - try - { - await _storageManagementClient.BlobContainers.DeleteAsync( - resourceGroupName: "XClient", - accountName: _tenantConfiguration.AccountName, - containerName: Container.Name); - Container = null; - } - catch - { - // swallow the exception to avoid hiding another test failure - } - } - } - - private async Task GetAuthToken() - { - IConfidentialClientApplication application = ConfidentialClientApplicationBuilder.Create(_tenantConfiguration.ActiveDirectoryApplicationId) - .WithAuthority(AzureCloudInstance.AzurePublic, _tenantConfiguration.ActiveDirectoryTenantId) - .WithClientSecret(_tenantConfiguration.ActiveDirectoryApplicationSecret) - .Build(); - - string[] scopes = new string[] { "https://management.azure.com/.default" }; - - AcquireTokenForClientParameterBuilder result = application.AcquireTokenForClient(scopes); - AuthenticationResult authenticationResult = await result.ExecuteAsync(); - return authenticationResult.AccessToken; - } - } } diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CommitBlockList_ImmutableStorageWithVersioning.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CommitBlockList_ImmutableStorageWithVersioning.json index 21cb8cadea33a..86b8686df81fe 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CommitBlockList_ImmutableStorageWithVersioning.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CommitBlockList_ImmutableStorageWithVersioning.json @@ -1,94 +1,79 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-984b22ee-0b33-e7fd-a2f2-1d94e7591af9/test-blob-3e76098a-7ed6-f6d5-fc78-4e6667a85d16?comp=block&blockid=dGVzdC1ibG9jay1iNzcyZWNhOC0wOWMyLTZlM2EtNzZmNS01YWI1ODZiNGJkYTc%3D", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-984b22ee-0b33-e7fd-a2f2-1d94e7591af9?comp=block\u0026blockid=dGVzdC1ibG9jay1hMTVlZGNmNC04ZmNjLWQ0MzItOTQ4My0zZTIyZjVkYjZjNjM%3D", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-a25cfd55770c5a468c5c64be10cd21e5-994f4896a2707c4c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "7e730b39-8273-ead1-a2ef-2bd6357c4edf", - "x-ms-date": "Fri, 04 Jun 2021 18:41:28 GMT", + "traceparent": "00-41561c150921aa47992a0f56e9a27d8d-108ba95d34790b40-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "37098ae5-5698-8548-12a9-6d6d6683afc8", + "x-ms-date": "Wed, 11 Aug 2021 19:42:17 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "6LZH/OvF4BHSRwFgQBXzD+AfIH8IgA5wTFSbu7yWf/qVB6swEh0OxShkbI59dbXmhD+FSIjeDmio16+WKSVVO8cHyzlpw/zDEVtWoxN/89eftDZ9ETdxt/lDhzttd5wDDzHHdql8fMFCwjcth2pUKeTY93Tv2CqPlRM/JjvBVpm/U5TiuH0tIjh0Ok4ARC+P715XlYAnFDYGN+CVPFaGgWudbjPVcXBnqtQ8ep3bj1DksDbcasEZlz9d24Gcl+bh7rniY9b7uX3u8Oqr65mZK6ePsYsgqhaqhNb0d5bvyhLuWozk+Cx66Pe57nrWbaylxLDZDOZawUSiON7/BkHn/iXYvZANtDJ7FMmUZruc1BYqT7PlFb0sk5lHQcBNe+G10e9U/q8blxB9XfgcxlqIBmPI1LeOAehnqyr2xnJyLpnn3pXMSNVnDrijaLjFD8w/vztchKYqJ88G7FKFJdGdCy5eNejFu72NYcb/6pkwoptdtwY3FanzvbbFxlyC4ennBlyKZ9rkegN+zyPgKzw11kq3J23KZfaEa3cx//VhCn/cF+Q9pjvBeD0CuUaFE5J5kO8Sy7p8HKBmBftjs3oOHMSkAxNX+DAO9q4vx6yv/ljlt24FTz/FYPpE1qA/XsXC9JyC4Q9/IZe/A9ULTFXztgejfvsMCM2E36IYEyGPz5jpbNIQLR1IZZbXRkxpuRSlUCCZm9/KtuzP/QFtZg52LzM9Id+C44jpWxhlNMGAGyWOc8IB9jS4HrblQDAb2v+HYRYZLJc0Im2Xrz/HZYEqTuLb3vNLdDn+hQMpnKJXzoAY3dOrZ++OWlBVaUf08Lk0u/JOQPsLO+zdGqaUC4XKP+G+r4iuf+byTYSj9gryCZVJ9eGwCY2EDKHnzk1I+U/KiiplNkExhjsLW/J3aETh6hARShWkGjZTOaLmxrGZqlQ12GzgjNNUGG6mpK2bDaRcBeM9N645Jm/zEvyfSr+KcrGeQY/YAV48vDKm/XWItyv9icHNXHKl/LL97HrXtc2vGzL8/cwUhASFAHp7kij5a1rQocD+vRU++ETd2hTjZQdk9+JDi7pf6QW9SFz3KmqJA4AgBhMMsV4cvgWHNqnvoZpzF5pFteCfcLi7QHS5Rs7aU9eUwl/zV0aEJ82017JczqbBhBLPQ02ggJVbUXDpYnc3reLSW947f79TwY4S6pkFXnLO+MK7ChCJ80LJlwbWm8RVfSrPinPHhQRTfIK/jZX8VfL9Gmm1fKLSSGeccei4fSbJvG1uNtT/B3K9Z46NymWszEET2YBaoAGH/EELKhMcm/5b9dAojh8d/RP39xQURH4B8KWmpaSmbxxr5jqT9NxeocyPMtSUgz4i9dtsYw==", + "RequestBody": "igl2PtZ\u002B1fb8eE5mZ6hdFui2R/zrxeAR0kcBYEAV8w/gHyB/CIAOcExUm7u8ln/6lQerMBIdDsUoZGyOfXW15oQ/hUiI3g5oqNevliklVTvHB8s5acP8wxFbVqMTf/PXn7Q2fRE3cbf5Q4c7bXecAw8xx3apfHzBQsI3LYdqVCnk2Pd079gqj5UTPyY7wVaZv1OU4rh9LSI4dDpOAEQvj\u002B9eV5WAJxQ2BjfglTxWhoFrnW4z1XFwZ6rUPHqd249Q5LA23GrBGZc/XduBnJfm4e654mPW\u002B7l97vDqq\u002BuZmSunj7GLIKoWqoTW9HeW78oS7lqM5Pgseuj3ue561m2spcSw2QzmWsFEojje/wZB5/4l2L2QDbQyexTJlGa7nNQWKk\u002Bz5RW9LJOZR0HATXvhtdHvVP6vG5cQfV34HMZaiAZjyNS3jgHoZ6sq9sZyci6Z596VzEjVZw64o2i4xQ/MP787XISmKifPBuxShSXRnQsuXjXoxbu9jWHG/\u002BqZMKKbXbcGNxWp8722xcZcguHp5wZcimfa5HoDfs8j4Cs8NdZKtydtymX2hGt3Mf/1YQp/3BfkPaY7wXg9ArlGhROSeZDvEsu6fBygZgX7Y7N6DhzEpAMTV/gwDvauL8esr/5Y5bduBU8/xWD6RNagP17FwvScguEPfyGXvwPVC0xV87YHo377DAjNhN\u002BiGBMhj8\u002BY6WzSEC0dSGWW10ZMabkUpVAgmZvfyrbsz/0BbWYOdi8zPSHfguOI6VsYZTTBgBsljnPCAfY0uB625UAwG9r/h2EWGSyXNCJtl68/x2WBKk7i297zS3Q5/oUDKZyiV86AGN3Tq2fvjlpQVWlH9PC5NLvyTkD7Czvs3RqmlAuFyj/hvq\u002BIrn/m8k2Eo/YK8gmVSfXhsAmNhAyh585NSPlPyooqZTZBMYY7C1vyd2hE4eoQEUoVpBo2Uzmi5saxmapUNdhs4IzTVBhupqStmw2kXAXjPTeuOSZv8xL8n0q/inKxnkGP2AFePLwypv11iLcr/YnBzVxypfyy/ex617XNrxsy/P3MFIQEhQB6e5Io\u002BWta0KHA/r0VPvhE3doU42UHZPfiQ4u6X\u002BkFvUhc9ypqiQOAIAYTDLFeHL4Fhzap76GacxeaRbXgn3C4u0B0uUbO2lPXlMJf81dGhCfNtNeyXM6mwYQSz0NNoICVW1Fw6WJ3N63i0lveO3\u002B/U8GOEuqZBV5yzvjCuwoQifNCyZcG1pvEVX0qz4pzx4UEU3yCv42V/FXy/RpptXyi0khnnHHouH0mybxtbjbU/wdyvWeOjcplrMxBE9mAWqABh/xBCyoTHJv\u002BW/XQKI4fHf0T9/cUFER\u002BAfClpqWkpm8ca\u002BY6kw==", "StatusCode": 201, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:27 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "7e730b39-8273-ead1-a2ef-2bd6357c4edf", - "x-ms-content-crc64": "nk3Y8Un6/0g=", - "x-ms-request-id": "16dfede2-301e-0008-7071-5976b8000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:17 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "37098ae5-5698-8548-12a9-6d6d6683afc8", + "x-ms-content-crc64": "VcmeCt3BnOc=", + "x-ms-request-id": "b1225933-d01e-004a-4ce8-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-984b22ee-0b33-e7fd-a2f2-1d94e7591af9/test-blob-3e76098a-7ed6-f6d5-fc78-4e6667a85d16?comp=blocklist", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-984b22ee-0b33-e7fd-a2f2-1d94e7591af9?comp=blocklist", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "107", "Content-Type": "application/xml", - "traceparent": "00-e12ca8bed2f7fc449f7937e24ccfb75c-e4efaba3ecf7eb4a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "7a7b9146-3e41-6234-b81e-95a92b724f95", - "x-ms-date": "Fri, 04 Jun 2021 18:41:28 GMT", + "traceparent": "00-e1ead373844e0141bd54ce1dbfb86986-36fe955b8e8e394b-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6b3d97c6-35d2-52ca-a3ed-a4189ccd08f2", + "x-ms-date": "Wed, 11 Aug 2021 19:42:18 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:28 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:18 GMT", "x-ms-legal-hold": "true", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "dGVzdC1ibG9jay1iNzcyZWNhOC0wOWMyLTZlM2EtNzZmNS01YWI1ODZiNGJkYTc=", + "RequestBody": "\uFEFF\u003CBlockList\u003E\u003CLatest\u003EdGVzdC1ibG9jay1hMTVlZGNmNC04ZmNjLWQ0MzItOTQ4My0zZTIyZjVkYjZjNjM=\u003C/Latest\u003E\u003C/BlockList\u003E", "StatusCode": 201, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:27 GMT", - "ETag": "\"0x8D927885D2418E9\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:28 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "7a7b9146-3e41-6234-b81e-95a92b724f95", - "x-ms-content-crc64": "/8AbAQH5YhE=", - "x-ms-request-id": "16dfede5-301e-0008-7171-5976b8000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:18 GMT", + "ETag": "\u00220x8D95D002110B17D\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:18 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "6b3d97c6-35d2-52ca-a3ed-a4189ccd08f2", + "x-ms-content-crc64": "J92\u002BlC20Lvk=", + "x-ms-request-id": "b1225a0c-d01e-004a-7de8-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:28.1328114Z" + "x-ms-version-id": "2021-08-11T19:42:18.5761149Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-984b22ee-0b33-e7fd-a2f2-1d94e7591af9/test-blob-3e76098a-7ed6-f6d5-fc78-4e6667a85d16", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-984b22ee-0b33-e7fd-a2f2-1d94e7591af9", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-1099296511fc5246a733f9e369c48d9b-1e4fc8b424c14649-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "a39038e6-d401-879e-63da-b2b3a0212731", - "x-ms-date": "Fri, 04 Jun 2021 18:41:28 GMT", + "traceparent": "00-3c05946b0bd3504a9bdbf650964a3ff2-54e82f17a624f341-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "cfa68d5a-4446-04f6-4120-da85ddb84ed5", + "x-ms-date": "Wed, 11 Aug 2021 19:42:18 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -98,163 +83,33 @@ "Accept-Ranges": "bytes", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 18:41:27 GMT", - "ETag": "\"0x8D927885D2418E9\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:28 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:18 GMT", + "ETag": "\u00220x8D95D002110B17D\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:18 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "a39038e6-d401-879e-63da-b2b3a0212731", - "x-ms-creation-time": "Fri, 04 Jun 2021 18:41:28 GMT", + "x-ms-client-request-id": "cfa68d5a-4446-04f6-4120-da85ddb84ed5", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:18 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:28 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:18 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "16dfede6-301e-0008-7271-5976b8000000", + "x-ms-request-id": "b1225ab8-d01e-004a-12e8-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:28.1328114Z" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-984b22ee-0b33-e7fd-a2f2-1d94e7591af9?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-09cb932d7c1b16488779c77423fa2646-04f9f5741d648143-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "f2c2c0d0-ace2-8694-ee1f-6c6c91426420", - "x-ms-date": "Fri, 04 Jun 2021 18:41:28 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:27 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "f2c2c0d0-ace2-8694-ee1f-6c6c91426420", - "x-ms-request-id": "16dfede7-301e-0008-7371-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-3e76098a-7ed6-f6d5-fc78-4e6667a85d162021-06-04T18:41:28.1328114ZtrueFri, 04 Jun 2021 18:41:28 GMTFri, 04 Jun 2021 18:41:28 GMT0x8D927885D2418E91024application/octet-streamBlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 18:46:28 GMTunlockedtrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-984b22ee-0b33-e7fd-a2f2-1d94e7591af9/test-blob-3e76098a-7ed6-f6d5-fc78-4e6667a85d16?comp=legalhold", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-e9e2f0b1c8b258469b92316c5ca7ccda-70f191abac9a2742-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "e0e3b255-355e-f14f-7a37-2007cc3f7059", - "x-ms-date": "Fri, 04 Jun 2021 18:41:29 GMT", - "x-ms-legal-hold": "false", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:27 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "e0e3b255-355e-f14f-7a37-2007cc3f7059", - "x-ms-legal-hold": "false", - "x-ms-request-id": "16dfede8-301e-0008-7471-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-984b22ee-0b33-e7fd-a2f2-1d94e7591af9/test-blob-3e76098a-7ed6-f6d5-fc78-4e6667a85d16?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-b84a1f51e41688429877946066a2b319-8d508829017bc14d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "de16b7fa-845e-c4c1-59f6-54c21fa7e04d", - "x-ms-date": "Fri, 04 Jun 2021 18:41:29 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:27 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "de16b7fa-845e-c4c1-59f6-54c21fa7e04d", - "x-ms-request-id": "16dfede9-301e-0008-7571-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-984b22ee-0b33-e7fd-a2f2-1d94e7591af9/test-blob-3e76098a-7ed6-f6d5-fc78-4e6667a85d16", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-3e08517f9b7d1c4f84883c029debdb72-86f16888aab8dd41-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "150caf4d-9129-8efb-5762-60cf61427169", - "x-ms-date": "Fri, 04 Jun 2021 18:41:29 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:27 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "150caf4d-9129-8efb-5762-60cf61427169", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "16dfedea-301e-0008-7671-5976b8000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:18.5761149Z" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T13:41:28.8029865-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:18.4450600-07:00", "RandomSeed": "898847525", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CommitBlockList_ImmutableStorageWithVersioningAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CommitBlockList_ImmutableStorageWithVersioningAsync.json index 018d342f02c07..1e0e8353d40bc 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CommitBlockList_ImmutableStorageWithVersioningAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CommitBlockList_ImmutableStorageWithVersioningAsync.json @@ -1,94 +1,79 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-23f9140a-1726-5d8e-1324-d0446ba6e6f3/test-blob-28ecbe99-1979-d3f8-227b-d5c41230f096?comp=block&blockid=dGVzdC1ibG9jay0xZWE1Y2Q3Mi0xNzcxLWM1YjMtZjgxNS00MzY2NTljNGQ4NWQ%3D", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-23f9140a-1726-5d8e-1324-d0446ba6e6f3?comp=block\u0026blockid=dGVzdC1ibG9jay00ODJiMjcxZi0yNTc0LTczZjItZTE2MC0zZDg0NTA1YzAxOWM%3D", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-5b16b69db39a424b8cc29412c82eccb6-8c7a992d346d2a48-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "e1bdfba8-2f5c-07b0-7365-505fe18c191d", - "x-ms-date": "Fri, 04 Jun 2021 18:41:46 GMT", + "traceparent": "00-22e0a8e77c5a02439e117a20ccf53d28-d499fdc787fc6f44-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a3839b93-59c1-cc8a-8e48-f31d2cffe4bb", + "x-ms-date": "Wed, 11 Aug 2021 19:42:33 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "6VU4oIGH5SLLhf7CJolqbb5H5BBBZvrwGyYBq0LJSuI0OVoVbkVyEdnJXfMbNqyZEGcFy0vgVIJbR4RahjnfATobju0uVP941NM3dwkG1eV6Z5rbxH+WU+TYuibAF4uf6lu5/6i/a7xnjPd4qN15VHGf4B6fAz27hToIVprZt7xHmI2tTdY9u/zeczeHHasHXma1ITds/+Ye/nptthUhjtQ6MRBPywaaYiUiwY8FM2eOAPc0I5aF2pimjk9czwTmvOVjTeyat5NfGr4RST5WGcoT3rYd7Wo9tFZ4qTy3PpMhOwSqouV69Ehj1AnXdJBZT3WESfBOyc96JZmVIg5Xp9sr7w46rHfkmOptuhhgZkDGHlnGM/Sj03I1MH1M5NE6DCwurISCH6P+n7AF4A62Gb5ZzwO0kHTmiBybBXv5mLMYM63sMrq7Q/+1yJRDnfJjfxa+8xTNhXu4RyNn5xknBAf97K1hyuYEnYwE/8jgouoqN4ZlO6SfS60xM+uWU1zljsOMRrFEArQvuVaIyYaz2KQ4Pa+TwsliXqH/L5b7bkkwHnEEU1s55TTRNoFOFoEnflpHXRasUsv5KugPRNMeNEsMWKoVr4VI/1d6woxIFEcf17E7sxAyg8ylCihzKaFhswI1Qb7WEs/V/16/MZA/sRah8Gwi4oA72dTeb6Rc1dW2GQ+KEtKJSMXhZbSyc1E8ZVgS0jk0PtCB+mfp+KMqeSmICRiBtZ9DGKenQHzLiGaDoQpLSQOcgto+CBdqn08ht+yKKWo5u6+5z7qRjP5TtnEBZlaY3y8m64c9Qq2I2HhXhYmQQF77SuZaknpIC/Xc6lGlaTn4iNe9Yz7j+3gCMPZBOQZ0w3UTBhxwPky03eCRYVhb4m8+Xvyy0twgGE5tWGGEB9LvZybbkmMdiEqKCIZeUpkgpk2GAtoJwvGZ8u3NA+brL9YNovkxf1AMIdayJ8pWwsa0TLET/gT35aU1Qp91T4Vjn9ivUK+g7ib9eeADV5smQjAnGLY11zHSFrxU/D2wl9JRTojxp3EWFF2KFoQj844KDv9vTTbOLsem3TryS/LpTOIOsggTNJu+EQRYqsGtriIuSu09QUmbgh/AS8k3I8hroMmhFEGF99ljsDwydoQG+C4XxAEErAuZci/oUunRhu077Qn3DJnhqVMU2ZANaQybulKbIF/GZvS+CKERnKTwkSpO9ol6DuyUNhuu8NJ6iwkjTZiXNmaOdIYVOAT3zwyuI0hmvnKDIKtlBupDGHYiRHyY7k8MWFvEv4ECZdbonGYO/8yJFM2WnyzsMS97SlwP8vSHX+G9osvtof/xgLvVfWmDNRipmDCvAU4iHycrSHQl8nPhYD2EUFwBnA==", + "RequestBody": "mb7sKHkZ\u002BNMie9XEEjDwlulVOKCBh\u002BUiy4X\u002BwiaJam2\u002BR\u002BQQQWb68BsmAatCyUriNDlaFW5FchHZyV3zGzasmRBnBctL4FSCW0eEWoY53wE6G47tLlT/eNTTN3cJBtXlemea28R/llPk2LomwBeLn\u002Bpbuf\u002Bov2u8Z4z3eKjdeVRxn\u002BAenwM9u4U6CFaa2be8R5iNrU3WPbv83nM3hx2rB15mtSE3bP/mHv56bbYVIY7UOjEQT8sGmmIlIsGPBTNnjgD3NCOWhdqYpo5PXM8E5rzlY03smreTXxq\u002BEUk\u002BVhnKE962He1qPbRWeKk8tz6TITsEqqLlevRIY9QJ13SQWU91hEnwTsnPeiWZlSIOV6fbK\u002B8OOqx35JjqbboYYGZAxh5ZxjP0o9NyNTB9TOTROgwsLqyEgh\u002Bj/p\u002BwBeAOthm\u002BWc8DtJB05ogcmwV7\u002BZizGDOt7DK6u0P/tciUQ53yY38WvvMUzYV7uEcjZ\u002BcZJwQH/eytYcrmBJ2MBP/I4KLqKjeGZTukn0utMTPrllNc5Y7DjEaxRAK0L7lWiMmGs9ikOD2vk8LJYl6h/y\u002BW\u002B25JMB5xBFNbOeU00TaBThaBJ35aR10WrFLL\u002BSroD0TTHjRLDFiqFa\u002BFSP9XesKMSBRHH9exO7MQMoPMpQoocymhYbMCNUG\u002B1hLP1f9evzGQP7EWofBsIuKAO9nU3m\u002BkXNXVthkPihLSiUjF4WW0snNRPGVYEtI5ND7Qgfpn6fijKnkpiAkYgbWfQxinp0B8y4hmg6EKS0kDnILaPggXap9PIbfsiilqObuvuc\u002B6kYz\u002BU7ZxAWZWmN8vJuuHPUKtiNh4V4WJkEBe\u002B0rmWpJ6SAv13OpRpWk5\u002BIjXvWM\u002B4/t4AjD2QTkGdMN1EwYccD5MtN3gkWFYW\u002BJvPl78stLcIBhObVhhhAfS72cm25JjHYhKigiGXlKZIKZNhgLaCcLxmfLtzQPm6y/WDaL5MX9QDCHWsifKVsLGtEyxE/4E9\u002BWlNUKfdU\u002BFY5/Yr1CvoO4m/XngA1ebJkIwJxi2Ndcx0ha8VPw9sJfSUU6I8adxFhRdihaEI/OOCg7/b002zi7Hpt068kvy6UziDrIIEzSbvhEEWKrBra4iLkrtPUFJm4IfwEvJNyPIa6DJoRRBhffZY7A8MnaEBvguF8QBBKwLmXIv6FLp0YbtO\u002B0J9wyZ4alTFNmQDWkMm7pSmyBfxmb0vgihEZyk8JEqTvaJeg7slDYbrvDSeosJI02YlzZmjnSGFTgE988MriNIZr5ygyCrZQbqQxh2IkR8mO5PDFhbxL\u002BBAmXW6JxmDv/MiRTNlp8s7DEve0pcD/L0h1/hvaLL7aH/8YC71X1pgzUYqZgwrwFOIg==", "StatusCode": 201, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:45 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e1bdfba8-2f5c-07b0-7365-505fe18c191d", - "x-ms-content-crc64": "F/DcIFdBeIE=", - "x-ms-request-id": "b5c955b9-101e-001b-3371-5945f9000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:32 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "a3839b93-59c1-cc8a-8e48-f31d2cffe4bb", + "x-ms-content-crc64": "1MI40I\u002Bz0EQ=", + "x-ms-request-id": "b12292f9-d01e-004a-3ae9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-23f9140a-1726-5d8e-1324-d0446ba6e6f3/test-blob-28ecbe99-1979-d3f8-227b-d5c41230f096?comp=blocklist", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-23f9140a-1726-5d8e-1324-d0446ba6e6f3?comp=blocklist", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "107", "Content-Type": "application/xml", - "traceparent": "00-346da7164939ee44a86a2164d6a87467-7279bd915a62f649-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "5dbd8730-f706-6401-ea7b-2f5c092bea01", - "x-ms-date": "Fri, 04 Jun 2021 18:41:46 GMT", + "traceparent": "00-2068454594d5424c948e2089c03c4a49-14db68737a0f7647-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b5f0df87-5dd9-18da-42d9-9029249598f8", + "x-ms-date": "Wed, 11 Aug 2021 19:42:33 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:46 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:33 GMT", "x-ms-legal-hold": "true", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "dGVzdC1ibG9jay0xZWE1Y2Q3Mi0xNzcxLWM1YjMtZjgxNS00MzY2NTljNGQ4NWQ=", + "RequestBody": "\uFEFF\u003CBlockList\u003E\u003CLatest\u003EdGVzdC1ibG9jay00ODJiMjcxZi0yNTc0LTczZjItZTE2MC0zZDg0NTA1YzAxOWM=\u003C/Latest\u003E\u003C/BlockList\u003E", "StatusCode": 201, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:45 GMT", - "ETag": "\"0x8D9278867DF121F\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:46 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "5dbd8730-f706-6401-ea7b-2f5c092bea01", - "x-ms-content-crc64": "thZUStyGoCk=", - "x-ms-request-id": "b5c955bb-101e-001b-3471-5945f9000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:33 GMT", + "ETag": "\u00220x8D95D0029FDCB12\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:33 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "b5f0df87-5dd9-18da-42d9-9029249598f8", + "x-ms-content-crc64": "H42\u002BajfsQpA=", + "x-ms-request-id": "b12293a0-d01e-004a-4be9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:46.1343775Z" + "x-ms-version-id": "2021-08-11T19:42:33.5517458Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-23f9140a-1726-5d8e-1324-d0446ba6e6f3/test-blob-28ecbe99-1979-d3f8-227b-d5c41230f096", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-23f9140a-1726-5d8e-1324-d0446ba6e6f3", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-44f478eb9d18b94e92e0968564765d0c-b28ad9039a71b342-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "5a2e58cc-bbce-9017-dd8c-cb5d2d7e0f17", - "x-ms-date": "Fri, 04 Jun 2021 18:41:46 GMT", + "traceparent": "00-772014b5f8ba2d4f9a59e807d9fdbd4c-4594c465d267f141-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4d96d52f-2e0f-4ae2-21a4-9e839e87e3de", + "x-ms-date": "Wed, 11 Aug 2021 19:42:33 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -98,162 +83,33 @@ "Accept-Ranges": "bytes", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 18:41:46 GMT", - "ETag": "\"0x8D9278867DF121F\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:46 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:33 GMT", + "ETag": "\u00220x8D95D0029FDCB12\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:33 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "5a2e58cc-bbce-9017-dd8c-cb5d2d7e0f17", - "x-ms-creation-time": "Fri, 04 Jun 2021 18:41:46 GMT", + "x-ms-client-request-id": "4d96d52f-2e0f-4ae2-21a4-9e839e87e3de", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:33 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:46 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:33 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "b5c955be-101e-001b-3771-5945f9000000", + "x-ms-request-id": "b1229437-d01e-004a-48e9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:46.1343775Z" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-23f9140a-1726-5d8e-1324-d0446ba6e6f3?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "b18f5198-90fd-7432-be05-708262841da2", - "x-ms-date": "Fri, 04 Jun 2021 18:41:46 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:46 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "b18f5198-90fd-7432-be05-708262841da2", - "x-ms-request-id": "b5c955bf-101e-001b-3871-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-28ecbe99-1979-d3f8-227b-d5c41230f0962021-06-04T18:41:46.1343775ZtrueFri, 04 Jun 2021 18:41:46 GMTFri, 04 Jun 2021 18:41:46 GMT0x8D9278867DF121F1024application/octet-streamBlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 18:46:46 GMTunlockedtrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-23f9140a-1726-5d8e-1324-d0446ba6e6f3/test-blob-28ecbe99-1979-d3f8-227b-d5c41230f096?comp=legalhold", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-fbae61368d31e64db41a77bbbd3c6c33-03105049b3611c4a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "dcc569c6-5eee-5e1a-5c85-90f9db669f20", - "x-ms-date": "Fri, 04 Jun 2021 18:41:47 GMT", - "x-ms-legal-hold": "false", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:46 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "dcc569c6-5eee-5e1a-5c85-90f9db669f20", - "x-ms-legal-hold": "false", - "x-ms-request-id": "b5c955c0-101e-001b-3971-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-23f9140a-1726-5d8e-1324-d0446ba6e6f3/test-blob-28ecbe99-1979-d3f8-227b-d5c41230f096?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-338ed5ba5b929a489932381b7c3b4f61-68582f7c6ab40b44-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "f9bc11cd-40bf-37b4-6d36-b20704e5a508", - "x-ms-date": "Fri, 04 Jun 2021 18:41:47 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:46 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "f9bc11cd-40bf-37b4-6d36-b20704e5a508", - "x-ms-request-id": "b5c955c1-101e-001b-3a71-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-23f9140a-1726-5d8e-1324-d0446ba6e6f3/test-blob-28ecbe99-1979-d3f8-227b-d5c41230f096", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-be83f0efdefa6b49a99e8200cb3858cb-4bedb3cd190f284e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c92b8790-a5a9-1461-e595-63b403cd008d", - "x-ms-date": "Fri, 04 Jun 2021 18:41:47 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:46 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "c92b8790-a5a9-1461-e595-63b403cd008d", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "b5c955c4-101e-001b-3b71-5945f9000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:33.5517458Z" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T13:41:46.7986932-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:33.4655903-07:00", "RandomSeed": "871002548", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/ContainerImmutableStorageWithVersioning.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/ContainerImmutableStorageWithVersioning.json index 979be7e09f2e8..84455badb2047 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/ContainerImmutableStorageWithVersioning.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/ContainerImmutableStorageWithVersioning.json @@ -1,34 +1,28 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-3c910ff4-fe3f-c499-39fa-ec1c39cfd661?restype=container", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf?restype=container", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-b07ff02844eb37419b513901da4abd69-d6b7a9dbb5ae104e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "20f56b5b-b4e9-f0e9-77ff-df23de9f6db7", - "x-ms-date": "Fri, 04 Jun 2021 18:41:31 GMT", + "traceparent": "00-e72ac5175c47b54aa48c0bbc43538477-e91adf79853e634b-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "665f08ce-2fd4-06d2-9167-d8287931af26", + "x-ms-date": "Wed, 11 Aug 2021 19:42:18 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:30 GMT", - "ETag": "\"0x8D927885E6B2980\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:30 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:18 GMT", + "ETag": "\u00220x8D95D00202967A8\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:17 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-public-access": "container", - "x-ms-client-request-id": "20f56b5b-b4e9-f0e9-77ff-df23de9f6db7", + "x-ms-client-request-id": "665f08ce-2fd4-06d2-9167-d8287931af26", "x-ms-default-encryption-scope": "$account-encryption-key", "x-ms-deny-encryption-scope-override": "false", "x-ms-has-immutability-policy": "false", @@ -36,56 +30,21 @@ "x-ms-immutable-storage-with-versioning-enabled": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-request-id": "16dfedfd-301e-0008-8071-5976b8000000", + "x-ms-request-id": "b1225bcd-d01e-004a-70e8-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/?comp=list", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-24b1311dffee5046b088f67f802ca82a-6b805853fb67db4d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "cdc0c64a-b5da-1978-1e6f-eed54fae28f2", - "x-ms-date": "Fri, 04 Jun 2021 18:41:31 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:30 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "cdc0c64a-b5da-1978-1e6f-eed54fae28f2", - "x-ms-request-id": "16dfedff-301e-0008-0171-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "acontaineredc14bbFri, 04 Jun 2021 03:39:26 GMT\"0x8D9270A5A178240\"unlockedavailable$account-encryption-keyfalsefalsefalsefalsecontainer1232Wed, 26 May 2021 04:57:39 GMT\"0x8D92002C9EF4317\"unlockedavailable$account-encryption-keyfalsefalsefalsetruecontainer4760e81Thu, 03 Jun 2021 03:05:26 GMT\"0x8D9263C6FC3AD51\"unlockedavailable$account-encryption-keyfalsefalsefalsefalsecontainer9840123eThu, 03 Jun 2021 03:19:41 GMT\"0x8D9263E6D8F47E7\"unlockedavailable$account-encryption-keyfalsefalsefalsefalsetest-container-0018bb70-122d-49e8-87a4-605d96d0b859Thu, 18 Mar 2021 19:24:24 GMT\"0x8D8EA4370982563\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-04bee97f-b374-4977-8759-17120d920e93Thu, 18 Mar 2021 16:14:12 GMT\"0x8D8EA28DEAA72E5\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-0c54779f-6523-40f9-84f3-ff87adcb904aThu, 18 Mar 2021 15:55:24 GMT\"0x8D8EA263E04B4C2\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-0d69218f-f854-4add-8e4e-69e6415e8be4Thu, 18 Mar 2021 15:53:40 GMT\"0x8D8EA260022684A\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-0e48f1d5-78b4-45e1-9487-9a84c618b6feTue, 23 Mar 2021 23:00:37 GMT\"0x8D8EE4F790CFB23\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-1072597a-d9d8-4d68-ba4b-4d3d127a617fTue, 23 Mar 2021 23:27:10 GMT\"0x8D8EE532E8ACF5B\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-1772b686-a76e-4b4c-8a2b-68880c20c11dMon, 29 Mar 2021 22:20:22 GMT\"0x8D8F300D7FB103C\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-17e17044-cc9e-4971-bb4c-6fdf5fae3464Thu, 18 Mar 2021 19:21:58 GMT\"0x8D8EA431956D827\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-1874d400-6f54-45a8-b1cc-bf9b1d474282Wed, 24 Mar 2021 17:05:18 GMT\"0x8D8EEE70057A86C\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-1c31ccb2-9938-4616-ad6d-52aa59e078d7Thu, 18 Mar 2021 15:55:21 GMT\"0x8D8EA263C955567\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-1d7100c4-e51b-4621-a003-9e0d7d11c770Tue, 23 Mar 2021 23:25:37 GMT\"0x8D8EE52F7534FF3\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-21eb328e-5df9-4e14-9884-26e6661ff71cFri, 19 Mar 2021 18:15:31 GMT\"0x8D8EB02FB5C746A\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-289f11a9-f1cc-4edf-8ff7-3b141460fe06Thu, 18 Mar 2021 16:35:03 GMT\"0x8D8EA2BC8303BA0\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-291ba3bc-93e7-4506-bf07-575bbb47c8e7Thu, 18 Mar 2021 16:15:50 GMT\"0x8D8EA29191E129B\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-2a18f6d1-9fdf-447e-b3aa-24b6f9aef614Tue, 23 Mar 2021 23:25:35 GMT\"0x8D8EE52F5D17CFC\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-2a6d0743-3868-424c-9c3f-8679977ae6a3Wed, 17 Mar 2021 21:06:27 GMT\"0x8D8E98887CA6E38\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-2c7b7632-cad8-4e97-925d-6ead27a857ccWed, 28 Apr 2021 17:36:14 GMT\"0x8D90A6C1F332AF9\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsefalsetest-container-3015f4ec-ae33-4c36-b75b-cae73a3d0e7bTue, 23 Mar 2021 23:21:57 GMT\"0x8D8EE527413A9A9\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-30481731-6ce2-470a-a2dc-c44f6b3a5c27Mon, 22 Mar 2021 22:31:33 GMT\"0x8D8ED823F1C0FCA\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-3309002d-1581-43ba-8b6e-0042cf66e7d7Thu, 18 Mar 2021 19:23:44 GMT\"0x8D8EA4358A271D6\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-37249450-0970-47f5-b829-ab7a6279b2c4Thu, 18 Mar 2021 15:53:37 GMT\"0x8D8EA25FEA54F77\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-3abedadd-28af-45a4-8b13-ef9394d5b0feMon, 22 Mar 2021 22:23:05 GMT\"0x8D8ED81106DA5F1\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-3c910ff4-fe3f-c499-39fa-ec1c39cfd661Fri, 04 Jun 2021 18:41:30 GMT\"0x8D927885E6B2980\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-3e949a88-b1c8-44d8-8e34-589c57062c39Mon, 22 Mar 2021 22:50:30 GMT\"0x8D8ED84E4FA4098\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-410fdb09-7d3c-432e-9702-c4704232a34cThu, 18 Mar 2021 18:33:25 GMT\"0x8D8EA3C51633001\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-4501f0cb-3ca4-42fe-8c65-ca18ee3d6a9dWed, 28 Apr 2021 17:37:10 GMT\"0x8D90A6C408FD2E1\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsefalsetest-container-46a11020-d715-42e5-8f9c-2e260472cc87Tue, 23 Mar 2021 23:30:12 GMT\"0x8D8EE539B29983C\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-4d99785b-cb69-4204-b910-5371cf830d9cFri, 19 Mar 2021 18:14:21 GMT\"0x8D8EB02D18FDE7F\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-4e52c1b9-1a2b-4b5c-9d5c-a7ce6a1fa6faTue, 23 Mar 2021 23:14:35 GMT\"0x8D8EE516C74C516\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-4f6d0e44-b071-4b6b-ad4b-5c3a6ae2048dThu, 18 Mar 2021 19:26:09 GMT\"0x8D8EA43AF2BE5CB\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-4fa8ce2f-1cd0-4e6f-a0c5-3b9f05bae94aFri, 19 Mar 2021 19:45:59 GMT\"0x8D8EB0F9EE36CF7\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-55599575-1c32-4540-9f91-199734005c55Mon, 22 Mar 2021 20:44:51 GMT\"0x8D8ED73579F2B10\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-57cc3783-804c-4af9-a596-3d66fcaf326eThu, 18 Mar 2021 16:01:21 GMT\"0x8D8EA2712D28B8D\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-58ed191e-fecb-4260-9f85-b5e0640b778cThu, 18 Mar 2021 19:19:49 GMT\"0x8D8EA42CC8AB16E\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-599a92cf-ed06-4bc8-bb6e-f54c7dcbb000Fri, 19 Mar 2021 19:54:02 GMT\"0x8D8EB10BE7C3307\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-5ae63cbb-58c0-4458-aa99-5079fc540a19Fri, 26 Mar 2021 18:03:05 GMT\"0x8D8F08167C7B3BD\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-5c414fab-98b6-40b6-b946-701f3ff1501fMon, 22 Mar 2021 20:42:04 GMT\"0x8D8ED72F3A32CE6\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-5eec2ff6-fa28-4ab0-9b41-9f8d25599e4fMon, 22 Mar 2021 22:32:04 GMT\"0x8D8ED82516A862E\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-61493a11-794f-4811-adfa-c7b2b6de2156Thu, 18 Mar 2021 19:26:52 GMT\"0x8D8EA43C9043EF7\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-64fc9af6-19e5-4a3e-828a-5133728761a5Mon, 22 Mar 2021 20:43:05 GMT\"0x8D8ED731838545D\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-6db310fd-4b30-4c3e-99ad-ece2f7ed26ddTue, 23 Mar 2021 23:22:01 GMT\"0x8D8EE52765C58B9\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-6ecb4cb7-f8b3-44a3-8bba-b94f6e4a637dThu, 18 Mar 2021 19:16:19 GMT\"0x8D8EA424F49592D\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-6f8ebe40-bfb2-45c3-966b-3bf447c2d069Thu, 18 Mar 2021 18:35:57 GMT\"0x8D8EA3CAC1EFEBD\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-716c4756-9241-4a0a-9695-63530053e7ccThu, 18 Mar 2021 15:57:48 GMT\"0x8D8EA2693CD2D7E\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-727ab853-81d5-44ea-9729-ae78dd668c63Thu, 18 Mar 2021 18:27:14 GMT\"0x8D8EA3B74561874\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-72f1e956-b332-45cc-9c38-1657b1235445Tue, 23 Mar 2021 23:08:56 GMT\"0x8D8EE50A269C5D7\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-73592b07-ba45-4683-8db7-29d6fd615f87Thu, 18 Mar 2021 16:01:35 GMT\"0x8D8EA271B4A7A97\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-75ee72c7-bfc7-406a-af20-26b037eacb02Thu, 18 Mar 2021 16:08:40 GMT\"0x8D8EA28188975EC\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-76365c04-21f6-43e5-9f24-2b0fa37e4512Fri, 19 Mar 2021 20:16:23 GMT\"0x8D8EB13DE1DA50B\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-7a32d8ab-7d6e-49c8-a1f7-acb6f5f07a7fTue, 23 Mar 2021 23:02:57 GMT\"0x8D8EE4FCC7A19BB\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-7e759919-663b-45e4-8cc2-04152283b77fThu, 18 Mar 2021 19:34:39 GMT\"0x8D8EA44DF391B10\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-8afb4a83-c592-4240-8425-5235ffab304cThu, 18 Mar 2021 18:26:09 GMT\"0x8D8EA3B4D2D6049\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-8e1afbb0-e654-42c0-9f20-2be3e758d2aaThu, 18 Mar 2021 18:33:39 GMT\"0x8D8EA3C599BD44F\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-90ac2512-a27b-4f16-af23-dd26a41a1903Wed, 24 Mar 2021 17:38:34 GMT\"0x8D8EEEBA5E43E6D\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-90cb2b46-dee2-4487-9121-6f9df8af0440Thu, 18 Mar 2021 15:55:07 GMT\"0x8D8EA2633E4D101\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-95445de7-cc2e-41b2-9f09-fd6fd0826cd8Thu, 18 Mar 2021 15:54:13 GMT\"0x8D8EA2613AF4C7A\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-9f11db45-f9e9-42d4-9a39-a042756d2659Thu, 18 Mar 2021 20:58:16 GMT\"0x8D8EA508DA38AC2\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-9f190e1e-204c-4aa9-b3e1-4f1f9dda7359Thu, 18 Mar 2021 15:55:28 GMT\"0x8D8EA264092A046\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-a003c5fc-f1ae-4481-9574-f2fee041499fTue, 23 Mar 2021 23:16:46 GMT\"0x8D8EE51BAAE1B5A\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-a2d1aa0e-ee8d-47fb-b03e-4ac24cad57d0Mon, 22 Mar 2021 20:44:13 GMT\"0x8D8ED7340F10D8F\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-a3e93887-3ee6-4a8c-a9a3-0509e3fe1761Wed, 28 Apr 2021 17:36:11 GMT\"0x8D90A6C1DA2DA6B\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsefalsetest-container-a7383557-0604-42d4-a58f-e1d2044a98dfThu, 18 Mar 2021 16:08:20 GMT\"0x8D8EA280CCE71A3\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-a9f08824-4e7b-4ea1-85f7-b96f68a19387Fri, 19 Mar 2021 19:57:10 GMT\"0x8D8EB112EEFFB3A\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-ace7efc3-bf86-45cd-9e83-1d850a8f534aThu, 18 Mar 2021 15:55:26 GMT\"0x8D8EA263F3232D4\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-ae5841c6-1fbe-4b09-869c-61411bd74780Thu, 18 Mar 2021 17:59:42 GMT\"0x8D8EA379B9AA940\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-b42053be-68c8-4d37-a734-9c9002999628Fri, 19 Mar 2021 20:04:37 GMT\"0x8D8EB123974C425\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-bf55c4d1-fc50-47e8-abfd-d81726920257Fri, 19 Mar 2021 19:52:26 GMT\"0x8D8EB10858A76C1\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-ca63513e-e2cd-42aa-a4c2-fb0e69e48875Thu, 18 Mar 2021 19:37:54 GMT\"0x8D8EA45531A716C\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-cafcfd85-8874-4f81-b89e-761da72fc7b2Thu, 18 Mar 2021 18:34:29 GMT\"0x8D8EA3C774561EF\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-cba5912b-f411-44c9-beeb-1c96091545b4Thu, 18 Mar 2021 19:20:32 GMT\"0x8D8EA42E642BA07\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-cc0736ed-f582-424c-b09e-ce3fb853ad1eThu, 18 Mar 2021 15:53:42 GMT\"0x8D8EA2601522FDD\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-cc5a6466-584e-4a95-9f92-63ef3c71d9c6Fri, 30 Apr 2021 18:06:46 GMT\"0x8D90C02B7D0938F\"unlockedavailable$account-encryption-keyfalsefalsefalsefalsetest-container-d29bc6a7-5d67-453a-93cc-e78be0dc66bbThu, 18 Mar 2021 17:57:48 GMT\"0x8D8EA3757C1631F\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-d46ee5e1-ca72-4de2-bb15-718815562061Fri, 19 Mar 2021 19:47:18 GMT\"0x8D8EB0FCDF3ABE3\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-d52a7ce3-2545-4c05-a98e-b7aa47adb6e5Thu, 18 Mar 2021 20:32:29 GMT\"0x8D8EA4CF3AED3B9\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-dd88b31d-348d-47ad-8776-035925900d79Mon, 22 Mar 2021 20:46:44 GMT\"0x8D8ED739A621A24\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-de17f349-ede7-43fc-bc42-09d0146d377dFri, 19 Mar 2021 19:51:10 GMT\"0x8D8EB10581CAD63\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-dec428c1-36ce-44bb-8b58-0c414ec05e5dThu, 18 Mar 2021 19:18:21 GMT\"0x8D8EA42983E1F39\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-ef2e9492-d67e-4fe1-9238-6226544b5765Thu, 18 Mar 2021 19:19:18 GMT\"0x8D8EA42B9E0B7FC\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-ef3cb093-97fc-4354-a7d8-ade90d4c9dc5Thu, 18 Mar 2021 15:53:44 GMT\"0x8D8EA260281A955\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-ef6b1ca6-e256-46f9-987b-fb15bf2783deFri, 19 Mar 2021 20:12:55 GMT\"0x8D8EB1361DF44F3\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-f00d3d5d-7dae-4bfa-85fb-79d26d9b664fThu, 18 Mar 2021 16:04:26 GMT\"0x8D8EA27817C577C\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-f1c6cd1c-5ca0-4f5a-8aca-95900e41b6cfTue, 23 Mar 2021 23:27:07 GMT\"0x8D8EE532D17A034\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-f25bb0be-2eb4-4985-b6b0-d800581295ddMon, 22 Mar 2021 22:31:07 GMT\"0x8D8ED822F9EC528\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetrueutcontainer7c4d16d3Fri, 04 Jun 2021 03:24:16 GMT\"0x8D927083BE7ABE0\"unlockedavailable$account-encryption-keyfalsefalsefalsefalseutcontaineraac312a8Tue, 01 Jun 2021 22:15:06 GMT\"0x8D9254AB6750C45\"unlockedavailable$account-encryption-keyfalsetruefalsefalseutcontainerecd618bcWed, 02 Jun 2021 23:59:26 GMT\"0x8D9262273F8D67C\"unlockedavailable$account-encryption-keyfalsefalsefalsefalseutcontainersource698c1aafThu, 03 Jun 2021 03:26:42 GMT\"0x8D9263F6896C1AD\"unlockedavailable$account-encryption-keyfalsefalsefalsefalseutcontainersource88a816fdThu, 03 Jun 2021 03:29:15 GMT\"0x8D9263FC36ACD90\"unlockedavailable$account-encryption-keyfalsefalsefalsefalseutcontainersourceecd618bcWed, 02 Jun 2021 23:59:26 GMT\"0x8D9262274166C4D\"unlockedavailable$account-encryption-keyfalsefalsefalsefalsevlwcontainer1f2c0efdWed, 02 Jun 2021 22:00:26 GMT\"0x8D92611D45B3949\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer250c19adFri, 04 Jun 2021 03:33:28 GMT\"0x8D9270984DFE5B7\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer36dc1578Fri, 04 Jun 2021 03:34:55 GMT\"0x8D92709B8D0800D\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer40161a21Fri, 04 Jun 2021 03:37:17 GMT\"0x8D9270A0CF74ECB\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer698c1aafThu, 03 Jun 2021 03:27:08 GMT\"0x8D9263F7807A780\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer775416bcThu, 03 Jun 2021 01:22:09 GMT\"0x8D9262E021745D9\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer7c4d16d3Fri, 04 Jun 2021 03:30:10 GMT\"0x8D927090ED910D7\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer83ec117aFri, 04 Jun 2021 03:35:30 GMT\"0x8D92709CD4391CA\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer88a816fdThu, 03 Jun 2021 03:31:04 GMT\"0x8D9264004C45755\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer8e401b4aFri, 04 Jun 2021 03:42:53 GMT\"0x8D9270AD5726BF5\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer90f61730Thu, 03 Jun 2021 02:46:53 GMT\"0x8D92639D850B979\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainera98317a4Fri, 04 Jun 2021 03:15:07 GMT\"0x8D92706F4622194\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainerbba812fbWed, 02 Jun 2021 21:22:19 GMT\"0x8D9260C810B9223\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainerbd114a6Wed, 02 Jun 2021 21:20:57 GMT\"0x8D9260C503EBDEF\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainerecd618bcThu, 03 Jun 2021 00:28:14 GMT\"0x8D9262679E79044\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainerf03618cdThu, 03 Jun 2021 01:21:32 GMT\"0x8D9262DEC19DFE6\"unlockedavailable$account-encryption-keyfalsefalsefalsetrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-3c910ff4-fe3f-c499-39fa-ec1c39cfd661?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/?comp=list", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-fb04e0639f9d714eaee5019fa15398ee-591c1dc598cfb84a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "18d9d7b4-9fde-11dc-28c7-464b75cf768f", - "x-ms-date": "Fri, 04 Jun 2021 18:41:31 GMT", + "traceparent": "00-e1a316fd5181f245b56e84a65ef7e5ea-5ea7c9d68c21564c-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "65e0a1c7-64ba-c5a5-3d8a-abd726714a08", + "x-ms-date": "Wed, 11 Aug 2021 19:42:19 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -93,21 +52,19 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:30 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:18 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "18d9d7b4-9fde-11dc-28c7-464b75cf768f", - "x-ms-request-id": "16dfee01-301e-0008-0271-5976b8000000", + "x-ms-client-request-id": "65e0a1c7-64ba-c5a5-3d8a-abd726714a08", + "x-ms-request-id": "b1225c14-d01e-004a-27e8-8e693e000000", "x-ms-version": "2020-10-02" }, - "ResponseBody": "" + "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://kasobolcanadanetoauth.blob.core.windows.net/\u0022\u003E\u003CContainers\u003E\u003CContainer\u003E\u003CName\u003Eccc0c3b3-39f3-484e-82af-1eeedc495adf\u003C/Name\u003E\u003CProperties\u003E\u003CLast-Modified\u003EWed, 11 Aug 2021 19:42:17 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E\u00220x8D95D00202967A8\u0022\u003C/Etag\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CPublicAccess\u003Econtainer\u003C/PublicAccess\u003E\u003CDefaultEncryptionScope\u003E$account-encryption-key\u003C/DefaultEncryptionScope\u003E\u003CDenyEncryptionScopeOverride\u003Efalse\u003C/DenyEncryptionScopeOverride\u003E\u003CHasImmutabilityPolicy\u003Efalse\u003C/HasImmutabilityPolicy\u003E\u003CHasLegalHold\u003Efalse\u003C/HasLegalHold\u003E\u003CImmutableStorageWithVersioningEnabled\u003Etrue\u003C/ImmutableStorageWithVersioningEnabled\u003E\u003C/Properties\u003E\u003C/Container\u003E\u003C/Containers\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" } ], "Variables": { "RandomSeed": "1163299217", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/ContainerImmutableStorageWithVersioningAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/ContainerImmutableStorageWithVersioningAsync.json index 23521bea54ea9..722fa3222c980 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/ContainerImmutableStorageWithVersioningAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/ContainerImmutableStorageWithVersioningAsync.json @@ -1,34 +1,28 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-9f1ded0d-ccca-3019-9700-9fd349d15c26?restype=container", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111?restype=container", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-6447ba5de62cd844b2f44f2d7c37f9ef-ef57bdd20d6d5e42-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "aba30f0d-c721-31f8-4d92-bb97e3949f90", - "x-ms-date": "Fri, 04 Jun 2021 18:41:49 GMT", + "traceparent": "00-fe13a390b9cb004db2b621d67a170fd1-e643a7809707b442-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f76d8bdb-10c1-68d4-3b23-366a8b41cd11", + "x-ms-date": "Wed, 11 Aug 2021 19:42:33 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:48 GMT", - "ETag": "\"0x8D9278869273CCD\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:48 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:33 GMT", + "ETag": "\u00220x8D95D0029C384E4\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:33 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-public-access": "container", - "x-ms-client-request-id": "aba30f0d-c721-31f8-4d92-bb97e3949f90", + "x-ms-client-request-id": "f76d8bdb-10c1-68d4-3b23-366a8b41cd11", "x-ms-default-encryption-scope": "$account-encryption-key", "x-ms-deny-encryption-scope-override": "false", "x-ms-has-immutability-policy": "false", @@ -36,54 +30,20 @@ "x-ms-immutable-storage-with-versioning-enabled": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-request-id": "b5c955d8-101e-001b-4771-5945f9000000", + "x-ms-request-id": "b1229491-d01e-004a-0de9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/?comp=list", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "3ac68e33-b02d-1405-933c-aa2f543c85a7", - "x-ms-date": "Fri, 04 Jun 2021 18:41:49 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:48 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3ac68e33-b02d-1405-933c-aa2f543c85a7", - "x-ms-request-id": "b5c955da-101e-001b-4871-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "acontaineredc14bbFri, 04 Jun 2021 03:39:26 GMT\"0x8D9270A5A178240\"unlockedavailable$account-encryption-keyfalsefalsefalsefalsecontainer1232Wed, 26 May 2021 04:57:39 GMT\"0x8D92002C9EF4317\"unlockedavailable$account-encryption-keyfalsefalsefalsetruecontainer4760e81Thu, 03 Jun 2021 03:05:26 GMT\"0x8D9263C6FC3AD51\"unlockedavailable$account-encryption-keyfalsefalsefalsefalsecontainer9840123eThu, 03 Jun 2021 03:19:41 GMT\"0x8D9263E6D8F47E7\"unlockedavailable$account-encryption-keyfalsefalsefalsefalsetest-container-0018bb70-122d-49e8-87a4-605d96d0b859Thu, 18 Mar 2021 19:24:24 GMT\"0x8D8EA4370982563\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-04bee97f-b374-4977-8759-17120d920e93Thu, 18 Mar 2021 16:14:12 GMT\"0x8D8EA28DEAA72E5\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-0c54779f-6523-40f9-84f3-ff87adcb904aThu, 18 Mar 2021 15:55:24 GMT\"0x8D8EA263E04B4C2\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-0d69218f-f854-4add-8e4e-69e6415e8be4Thu, 18 Mar 2021 15:53:40 GMT\"0x8D8EA260022684A\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-0e48f1d5-78b4-45e1-9487-9a84c618b6feTue, 23 Mar 2021 23:00:37 GMT\"0x8D8EE4F790CFB23\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-1072597a-d9d8-4d68-ba4b-4d3d127a617fTue, 23 Mar 2021 23:27:10 GMT\"0x8D8EE532E8ACF5B\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-1772b686-a76e-4b4c-8a2b-68880c20c11dMon, 29 Mar 2021 22:20:22 GMT\"0x8D8F300D7FB103C\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-17e17044-cc9e-4971-bb4c-6fdf5fae3464Thu, 18 Mar 2021 19:21:58 GMT\"0x8D8EA431956D827\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-1874d400-6f54-45a8-b1cc-bf9b1d474282Wed, 24 Mar 2021 17:05:18 GMT\"0x8D8EEE70057A86C\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-1c31ccb2-9938-4616-ad6d-52aa59e078d7Thu, 18 Mar 2021 15:55:21 GMT\"0x8D8EA263C955567\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-1d7100c4-e51b-4621-a003-9e0d7d11c770Tue, 23 Mar 2021 23:25:37 GMT\"0x8D8EE52F7534FF3\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-21eb328e-5df9-4e14-9884-26e6661ff71cFri, 19 Mar 2021 18:15:31 GMT\"0x8D8EB02FB5C746A\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-289f11a9-f1cc-4edf-8ff7-3b141460fe06Thu, 18 Mar 2021 16:35:03 GMT\"0x8D8EA2BC8303BA0\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-291ba3bc-93e7-4506-bf07-575bbb47c8e7Thu, 18 Mar 2021 16:15:50 GMT\"0x8D8EA29191E129B\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-2a18f6d1-9fdf-447e-b3aa-24b6f9aef614Tue, 23 Mar 2021 23:25:35 GMT\"0x8D8EE52F5D17CFC\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-2a6d0743-3868-424c-9c3f-8679977ae6a3Wed, 17 Mar 2021 21:06:27 GMT\"0x8D8E98887CA6E38\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-2c7b7632-cad8-4e97-925d-6ead27a857ccWed, 28 Apr 2021 17:36:14 GMT\"0x8D90A6C1F332AF9\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsefalsetest-container-3015f4ec-ae33-4c36-b75b-cae73a3d0e7bTue, 23 Mar 2021 23:21:57 GMT\"0x8D8EE527413A9A9\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-30481731-6ce2-470a-a2dc-c44f6b3a5c27Mon, 22 Mar 2021 22:31:33 GMT\"0x8D8ED823F1C0FCA\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-3309002d-1581-43ba-8b6e-0042cf66e7d7Thu, 18 Mar 2021 19:23:44 GMT\"0x8D8EA4358A271D6\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-37249450-0970-47f5-b829-ab7a6279b2c4Thu, 18 Mar 2021 15:53:37 GMT\"0x8D8EA25FEA54F77\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-3abedadd-28af-45a4-8b13-ef9394d5b0feMon, 22 Mar 2021 22:23:05 GMT\"0x8D8ED81106DA5F1\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-3e949a88-b1c8-44d8-8e34-589c57062c39Mon, 22 Mar 2021 22:50:30 GMT\"0x8D8ED84E4FA4098\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-410fdb09-7d3c-432e-9702-c4704232a34cThu, 18 Mar 2021 18:33:25 GMT\"0x8D8EA3C51633001\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-4501f0cb-3ca4-42fe-8c65-ca18ee3d6a9dWed, 28 Apr 2021 17:37:10 GMT\"0x8D90A6C408FD2E1\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsefalsetest-container-46a11020-d715-42e5-8f9c-2e260472cc87Tue, 23 Mar 2021 23:30:12 GMT\"0x8D8EE539B29983C\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-4d99785b-cb69-4204-b910-5371cf830d9cFri, 19 Mar 2021 18:14:21 GMT\"0x8D8EB02D18FDE7F\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-4e52c1b9-1a2b-4b5c-9d5c-a7ce6a1fa6faTue, 23 Mar 2021 23:14:35 GMT\"0x8D8EE516C74C516\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-4f6d0e44-b071-4b6b-ad4b-5c3a6ae2048dThu, 18 Mar 2021 19:26:09 GMT\"0x8D8EA43AF2BE5CB\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-4fa8ce2f-1cd0-4e6f-a0c5-3b9f05bae94aFri, 19 Mar 2021 19:45:59 GMT\"0x8D8EB0F9EE36CF7\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-55599575-1c32-4540-9f91-199734005c55Mon, 22 Mar 2021 20:44:51 GMT\"0x8D8ED73579F2B10\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-57cc3783-804c-4af9-a596-3d66fcaf326eThu, 18 Mar 2021 16:01:21 GMT\"0x8D8EA2712D28B8D\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-58ed191e-fecb-4260-9f85-b5e0640b778cThu, 18 Mar 2021 19:19:49 GMT\"0x8D8EA42CC8AB16E\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-599a92cf-ed06-4bc8-bb6e-f54c7dcbb000Fri, 19 Mar 2021 19:54:02 GMT\"0x8D8EB10BE7C3307\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-5ae63cbb-58c0-4458-aa99-5079fc540a19Fri, 26 Mar 2021 18:03:05 GMT\"0x8D8F08167C7B3BD\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-5c414fab-98b6-40b6-b946-701f3ff1501fMon, 22 Mar 2021 20:42:04 GMT\"0x8D8ED72F3A32CE6\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-5eec2ff6-fa28-4ab0-9b41-9f8d25599e4fMon, 22 Mar 2021 22:32:04 GMT\"0x8D8ED82516A862E\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-61493a11-794f-4811-adfa-c7b2b6de2156Thu, 18 Mar 2021 19:26:52 GMT\"0x8D8EA43C9043EF7\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-64fc9af6-19e5-4a3e-828a-5133728761a5Mon, 22 Mar 2021 20:43:05 GMT\"0x8D8ED731838545D\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-6db310fd-4b30-4c3e-99ad-ece2f7ed26ddTue, 23 Mar 2021 23:22:01 GMT\"0x8D8EE52765C58B9\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-6ecb4cb7-f8b3-44a3-8bba-b94f6e4a637dThu, 18 Mar 2021 19:16:19 GMT\"0x8D8EA424F49592D\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-6f8ebe40-bfb2-45c3-966b-3bf447c2d069Thu, 18 Mar 2021 18:35:57 GMT\"0x8D8EA3CAC1EFEBD\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-716c4756-9241-4a0a-9695-63530053e7ccThu, 18 Mar 2021 15:57:48 GMT\"0x8D8EA2693CD2D7E\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-727ab853-81d5-44ea-9729-ae78dd668c63Thu, 18 Mar 2021 18:27:14 GMT\"0x8D8EA3B74561874\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-72f1e956-b332-45cc-9c38-1657b1235445Tue, 23 Mar 2021 23:08:56 GMT\"0x8D8EE50A269C5D7\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-73592b07-ba45-4683-8db7-29d6fd615f87Thu, 18 Mar 2021 16:01:35 GMT\"0x8D8EA271B4A7A97\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-75ee72c7-bfc7-406a-af20-26b037eacb02Thu, 18 Mar 2021 16:08:40 GMT\"0x8D8EA28188975EC\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-76365c04-21f6-43e5-9f24-2b0fa37e4512Fri, 19 Mar 2021 20:16:23 GMT\"0x8D8EB13DE1DA50B\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-7a32d8ab-7d6e-49c8-a1f7-acb6f5f07a7fTue, 23 Mar 2021 23:02:57 GMT\"0x8D8EE4FCC7A19BB\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-7e759919-663b-45e4-8cc2-04152283b77fThu, 18 Mar 2021 19:34:39 GMT\"0x8D8EA44DF391B10\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-8afb4a83-c592-4240-8425-5235ffab304cThu, 18 Mar 2021 18:26:09 GMT\"0x8D8EA3B4D2D6049\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-8e1afbb0-e654-42c0-9f20-2be3e758d2aaThu, 18 Mar 2021 18:33:39 GMT\"0x8D8EA3C599BD44F\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-90ac2512-a27b-4f16-af23-dd26a41a1903Wed, 24 Mar 2021 17:38:34 GMT\"0x8D8EEEBA5E43E6D\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-90cb2b46-dee2-4487-9121-6f9df8af0440Thu, 18 Mar 2021 15:55:07 GMT\"0x8D8EA2633E4D101\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-95445de7-cc2e-41b2-9f09-fd6fd0826cd8Thu, 18 Mar 2021 15:54:13 GMT\"0x8D8EA2613AF4C7A\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-9f11db45-f9e9-42d4-9a39-a042756d2659Thu, 18 Mar 2021 20:58:16 GMT\"0x8D8EA508DA38AC2\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-9f190e1e-204c-4aa9-b3e1-4f1f9dda7359Thu, 18 Mar 2021 15:55:28 GMT\"0x8D8EA264092A046\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-9f1ded0d-ccca-3019-9700-9fd349d15c26Fri, 04 Jun 2021 18:41:48 GMT\"0x8D9278869273CCD\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-a003c5fc-f1ae-4481-9574-f2fee041499fTue, 23 Mar 2021 23:16:46 GMT\"0x8D8EE51BAAE1B5A\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-a2d1aa0e-ee8d-47fb-b03e-4ac24cad57d0Mon, 22 Mar 2021 20:44:13 GMT\"0x8D8ED7340F10D8F\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-a3e93887-3ee6-4a8c-a9a3-0509e3fe1761Wed, 28 Apr 2021 17:36:11 GMT\"0x8D90A6C1DA2DA6B\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsefalsetest-container-a7383557-0604-42d4-a58f-e1d2044a98dfThu, 18 Mar 2021 16:08:20 GMT\"0x8D8EA280CCE71A3\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-a9f08824-4e7b-4ea1-85f7-b96f68a19387Fri, 19 Mar 2021 19:57:10 GMT\"0x8D8EB112EEFFB3A\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-ace7efc3-bf86-45cd-9e83-1d850a8f534aThu, 18 Mar 2021 15:55:26 GMT\"0x8D8EA263F3232D4\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-ae5841c6-1fbe-4b09-869c-61411bd74780Thu, 18 Mar 2021 17:59:42 GMT\"0x8D8EA379B9AA940\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-b42053be-68c8-4d37-a734-9c9002999628Fri, 19 Mar 2021 20:04:37 GMT\"0x8D8EB123974C425\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-bf55c4d1-fc50-47e8-abfd-d81726920257Fri, 19 Mar 2021 19:52:26 GMT\"0x8D8EB10858A76C1\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-ca63513e-e2cd-42aa-a4c2-fb0e69e48875Thu, 18 Mar 2021 19:37:54 GMT\"0x8D8EA45531A716C\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-cafcfd85-8874-4f81-b89e-761da72fc7b2Thu, 18 Mar 2021 18:34:29 GMT\"0x8D8EA3C774561EF\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-cba5912b-f411-44c9-beeb-1c96091545b4Thu, 18 Mar 2021 19:20:32 GMT\"0x8D8EA42E642BA07\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-cc0736ed-f582-424c-b09e-ce3fb853ad1eThu, 18 Mar 2021 15:53:42 GMT\"0x8D8EA2601522FDD\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-cc5a6466-584e-4a95-9f92-63ef3c71d9c6Fri, 30 Apr 2021 18:06:46 GMT\"0x8D90C02B7D0938F\"unlockedavailable$account-encryption-keyfalsefalsefalsefalsetest-container-d29bc6a7-5d67-453a-93cc-e78be0dc66bbThu, 18 Mar 2021 17:57:48 GMT\"0x8D8EA3757C1631F\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-d46ee5e1-ca72-4de2-bb15-718815562061Fri, 19 Mar 2021 19:47:18 GMT\"0x8D8EB0FCDF3ABE3\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-d52a7ce3-2545-4c05-a98e-b7aa47adb6e5Thu, 18 Mar 2021 20:32:29 GMT\"0x8D8EA4CF3AED3B9\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-dd88b31d-348d-47ad-8776-035925900d79Mon, 22 Mar 2021 20:46:44 GMT\"0x8D8ED739A621A24\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-de17f349-ede7-43fc-bc42-09d0146d377dFri, 19 Mar 2021 19:51:10 GMT\"0x8D8EB10581CAD63\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-dec428c1-36ce-44bb-8b58-0c414ec05e5dThu, 18 Mar 2021 19:18:21 GMT\"0x8D8EA42983E1F39\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-ef2e9492-d67e-4fe1-9238-6226544b5765Thu, 18 Mar 2021 19:19:18 GMT\"0x8D8EA42B9E0B7FC\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-ef3cb093-97fc-4354-a7d8-ade90d4c9dc5Thu, 18 Mar 2021 15:53:44 GMT\"0x8D8EA260281A955\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-ef6b1ca6-e256-46f9-987b-fb15bf2783deFri, 19 Mar 2021 20:12:55 GMT\"0x8D8EB1361DF44F3\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-f00d3d5d-7dae-4bfa-85fb-79d26d9b664fThu, 18 Mar 2021 16:04:26 GMT\"0x8D8EA27817C577C\"unlockedavailable$account-encryption-keyfalsefalsefalsetruetest-container-f1c6cd1c-5ca0-4f5a-8aca-95900e41b6cfTue, 23 Mar 2021 23:27:07 GMT\"0x8D8EE532D17A034\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetruetest-container-f25bb0be-2eb4-4985-b6b0-d800581295ddMon, 22 Mar 2021 22:31:07 GMT\"0x8D8ED822F9EC528\"unlockedavailablecontainer$account-encryption-keyfalsefalsefalsetrueutcontainer7c4d16d3Fri, 04 Jun 2021 03:24:16 GMT\"0x8D927083BE7ABE0\"unlockedavailable$account-encryption-keyfalsefalsefalsefalseutcontaineraac312a8Tue, 01 Jun 2021 22:15:06 GMT\"0x8D9254AB6750C45\"unlockedavailable$account-encryption-keyfalsetruefalsefalseutcontainerecd618bcWed, 02 Jun 2021 23:59:26 GMT\"0x8D9262273F8D67C\"unlockedavailable$account-encryption-keyfalsefalsefalsefalseutcontainersource698c1aafThu, 03 Jun 2021 03:26:42 GMT\"0x8D9263F6896C1AD\"unlockedavailable$account-encryption-keyfalsefalsefalsefalseutcontainersource88a816fdThu, 03 Jun 2021 03:29:15 GMT\"0x8D9263FC36ACD90\"unlockedavailable$account-encryption-keyfalsefalsefalsefalseutcontainersourceecd618bcWed, 02 Jun 2021 23:59:26 GMT\"0x8D9262274166C4D\"unlockedavailable$account-encryption-keyfalsefalsefalsefalsevlwcontainer1f2c0efdWed, 02 Jun 2021 22:00:26 GMT\"0x8D92611D45B3949\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer250c19adFri, 04 Jun 2021 03:33:28 GMT\"0x8D9270984DFE5B7\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer36dc1578Fri, 04 Jun 2021 03:34:55 GMT\"0x8D92709B8D0800D\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer40161a21Fri, 04 Jun 2021 03:37:17 GMT\"0x8D9270A0CF74ECB\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer698c1aafThu, 03 Jun 2021 03:27:08 GMT\"0x8D9263F7807A780\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer775416bcThu, 03 Jun 2021 01:22:09 GMT\"0x8D9262E021745D9\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer7c4d16d3Fri, 04 Jun 2021 03:30:10 GMT\"0x8D927090ED910D7\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer83ec117aFri, 04 Jun 2021 03:35:30 GMT\"0x8D92709CD4391CA\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer88a816fdThu, 03 Jun 2021 03:31:04 GMT\"0x8D9264004C45755\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer8e401b4aFri, 04 Jun 2021 03:42:53 GMT\"0x8D9270AD5726BF5\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainer90f61730Thu, 03 Jun 2021 02:46:53 GMT\"0x8D92639D850B979\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainera98317a4Fri, 04 Jun 2021 03:15:07 GMT\"0x8D92706F4622194\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainerbba812fbWed, 02 Jun 2021 21:22:19 GMT\"0x8D9260C810B9223\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainerbd114a6Wed, 02 Jun 2021 21:20:57 GMT\"0x8D9260C503EBDEF\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainerecd618bcThu, 03 Jun 2021 00:28:14 GMT\"0x8D9262679E79044\"unlockedavailable$account-encryption-keyfalsefalsefalsetruevlwcontainerf03618cdThu, 03 Jun 2021 01:21:32 GMT\"0x8D9262DEC19DFE6\"unlockedavailable$account-encryption-keyfalsefalsefalsetrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-9f1ded0d-ccca-3019-9700-9fd349d15c26?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/?comp=list", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "546466ee-65cd-c162-dd4f-a5fb9790a8dc", - "x-ms-date": "Fri, 04 Jun 2021 18:41:49 GMT", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3963e372-4137-fdc0-18b4-64a796afa455", + "x-ms-date": "Wed, 11 Aug 2021 19:42:33 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -91,21 +51,19 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:48 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:33 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "546466ee-65cd-c162-dd4f-a5fb9790a8dc", - "x-ms-request-id": "b5c955db-101e-001b-4971-5945f9000000", + "x-ms-client-request-id": "3963e372-4137-fdc0-18b4-64a796afa455", + "x-ms-request-id": "b12294e2-d01e-004a-4be9-8e693e000000", "x-ms-version": "2020-10-02" }, - "ResponseBody": "" + "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://kasobolcanadanetoauth.blob.core.windows.net/\u0022\u003E\u003CContainers\u003E\u003CContainer\u003E\u003CName\u003E90185bea-b711-4aae-a98f-bb14f2a40111\u003C/Name\u003E\u003CProperties\u003E\u003CLast-Modified\u003EWed, 11 Aug 2021 19:42:33 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E\u00220x8D95D0029C384E4\u0022\u003C/Etag\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CPublicAccess\u003Econtainer\u003C/PublicAccess\u003E\u003CDefaultEncryptionScope\u003E$account-encryption-key\u003C/DefaultEncryptionScope\u003E\u003CDenyEncryptionScopeOverride\u003Efalse\u003C/DenyEncryptionScopeOverride\u003E\u003CHasImmutabilityPolicy\u003Efalse\u003C/HasImmutabilityPolicy\u003E\u003CHasLegalHold\u003Efalse\u003C/HasLegalHold\u003E\u003CImmutableStorageWithVersioningEnabled\u003Etrue\u003C/ImmutableStorageWithVersioningEnabled\u003E\u003C/Properties\u003E\u003C/Container\u003E\u003C/Containers\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" } ], "Variables": { "RandomSeed": "1647314844", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CreateAppendBlob_ImmutableStorageWithVersioning.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CreateAppendBlob_ImmutableStorageWithVersioning.json index a8ef0dd5a7d77..69cc46c9812b6 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CreateAppendBlob_ImmutableStorageWithVersioning.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CreateAppendBlob_ImmutableStorageWithVersioning.json @@ -1,21 +1,18 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1881294a-996e-abbe-29ec-f39561e6d5e2/test-blob-28c7e92f-abf2-89f8-953b-26ddcc4b4bb6", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-1881294a-996e-abbe-29ec-f39561e6d5e2", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-1f69bb149e4f8941a980fad9ee146bc0-b1999286f8658948-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-0d3be402bfbd39498f9da7fe780cbf19-3403fb169d7d6e42-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "AppendBlob", - "x-ms-client-request-id": "7a2a2d0c-dfed-9f19-30f7-823373e0dedd", - "x-ms-date": "Fri, 04 Jun 2021 18:41:33 GMT", + "x-ms-client-request-id": "48e7f3d3-ed42-ea1c-11e3-55da5aa741fd", + "x-ms-date": "Wed, 11 Aug 2021 19:42:19 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:33 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:19 GMT", "x-ms-legal-hold": "true", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -23,35 +20,29 @@ "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:32 GMT", - "ETag": "\"0x8D927885FC33F5E\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:32 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "7a2a2d0c-dfed-9f19-30f7-823373e0dedd", - "x-ms-request-id": "16dfee02-301e-0008-0371-5976b8000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:18 GMT", + "ETag": "\u00220x8D95D00217D69C8\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:19 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "48e7f3d3-ed42-ea1c-11e3-55da5aa741fd", + "x-ms-request-id": "b1225d08-d01e-004a-6de8-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:32.5302622Z" + "x-ms-version-id": "2021-08-11T19:42:19.2896225Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1881294a-996e-abbe-29ec-f39561e6d5e2/test-blob-28c7e92f-abf2-89f8-953b-26ddcc4b4bb6", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-1881294a-996e-abbe-29ec-f39561e6d5e2", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-b840ae53e2cfd4479b8fab162be1dc8a-a3daf7776de35842-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "9ed129f9-d121-f4c8-da47-174b6ae87631", - "x-ms-date": "Fri, 04 Jun 2021 18:41:33 GMT", + "traceparent": "00-20e3217311676243b9566e917ac3663b-2d8919055e17a142-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6dc13da1-8dfe-429f-cddd-160e561e2fee", + "x-ms-date": "Wed, 11 Aug 2021 19:42:19 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -61,162 +52,32 @@ "Accept-Ranges": "bytes", "Content-Length": "0", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 18:41:32 GMT", - "ETag": "\"0x8D927885FC33F5E\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:32 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:18 GMT", + "ETag": "\u00220x8D95D00217D69C8\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:19 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-committed-block-count": "0", "x-ms-blob-type": "AppendBlob", - "x-ms-client-request-id": "9ed129f9-d121-f4c8-da47-174b6ae87631", - "x-ms-creation-time": "Fri, 04 Jun 2021 18:41:32 GMT", + "x-ms-client-request-id": "6dc13da1-8dfe-429f-cddd-160e561e2fee", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:19 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:33 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:19 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "16dfee04-301e-0008-0571-5976b8000000", + "x-ms-request-id": "b1225d4a-d01e-004a-24e8-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:32.5302622Z" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1881294a-996e-abbe-29ec-f39561e6d5e2?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-97998278bd697a4c8fd55c1df2b6cc14-afc0a092afc51c43-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4a3a94c7-400f-cfbc-74cd-93b67654d8e4", - "x-ms-date": "Fri, 04 Jun 2021 18:41:33 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:32 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "4a3a94c7-400f-cfbc-74cd-93b67654d8e4", - "x-ms-request-id": "16dfee06-301e-0008-0671-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-28c7e92f-abf2-89f8-953b-26ddcc4b4bb62021-06-04T18:41:32.5302622ZtrueFri, 04 Jun 2021 18:41:32 GMTFri, 04 Jun 2021 18:41:32 GMT0x8D927885FC33F5E0application/octet-streamAppendBlobunlockedavailabletrueFri, 04 Jun 2021 18:46:33 GMTunlockedtrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1881294a-996e-abbe-29ec-f39561e6d5e2/test-blob-28c7e92f-abf2-89f8-953b-26ddcc4b4bb6?comp=legalhold", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-9b7316768e55564cb298308cbb58bf2f-a3815e69f39a3544-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "d58305fe-2cae-c321-bb69-a81840470838", - "x-ms-date": "Fri, 04 Jun 2021 18:41:33 GMT", - "x-ms-legal-hold": "false", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:32 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "d58305fe-2cae-c321-bb69-a81840470838", - "x-ms-legal-hold": "false", - "x-ms-request-id": "16dfee07-301e-0008-0771-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1881294a-996e-abbe-29ec-f39561e6d5e2/test-blob-28c7e92f-abf2-89f8-953b-26ddcc4b4bb6?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-e41bfc457e1d784f82edd21d24e6e84b-13b963e13b3b2e42-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "70b8c4a1-02d1-3a36-c346-237a69f0e5e2", - "x-ms-date": "Fri, 04 Jun 2021 18:41:33 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:32 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "70b8c4a1-02d1-3a36-c346-237a69f0e5e2", - "x-ms-request-id": "16dfee08-301e-0008-0871-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1881294a-996e-abbe-29ec-f39561e6d5e2/test-blob-28c7e92f-abf2-89f8-953b-26ddcc4b4bb6", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-ad9c92b9a4056944a3419928bc0619af-a7243770f9aa0945-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "7b76ecbf-978f-0d67-916e-1fb947b34b9b", - "x-ms-date": "Fri, 04 Jun 2021 18:41:33 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:32 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "7b76ecbf-978f-0d67-916e-1fb947b34b9b", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "16dfee09-301e-0008-0971-5976b8000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:19.2896225Z" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T13:41:33.2009779-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:19.2699655-07:00", "RandomSeed": "1975337571", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CreateAppendBlob_ImmutableStorageWithVersioningAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CreateAppendBlob_ImmutableStorageWithVersioningAsync.json index 9ce3cc4a15c5c..7c6d06345eddc 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CreateAppendBlob_ImmutableStorageWithVersioningAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CreateAppendBlob_ImmutableStorageWithVersioningAsync.json @@ -1,21 +1,18 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8fb9bff6-32db-e844-1b5a-e2bb31d5159d/test-blob-4f43f681-5a6a-e2c0-cec1-8a60fe5c3b7d", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-8fb9bff6-32db-e844-1b5a-e2bb31d5159d", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-1c65eed27ec6cf4995bef0f152d06636-28724d3588f9b94a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-8e0fc843f1b123439c2d74d3e7a0d466-d44e381aca2b764c-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "AppendBlob", - "x-ms-client-request-id": "5331943c-fb57-9c5c-ffd7-c019a7e4e9be", - "x-ms-date": "Fri, 04 Jun 2021 18:41:51 GMT", + "x-ms-client-request-id": "0fc25b9a-d73f-be6d-7bbe-bd846cf1ea30", + "x-ms-date": "Wed, 11 Aug 2021 19:42:33 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:51 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:33 GMT", "x-ms-legal-hold": "true", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -23,35 +20,29 @@ "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:49 GMT", - "ETag": "\"0x8D927886A65D23A\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:50 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "5331943c-fb57-9c5c-ffd7-c019a7e4e9be", - "x-ms-request-id": "b5c955df-101e-001b-4c71-5945f9000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:33 GMT", + "ETag": "\u00220x8D95D002A355FDF\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:33 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "0fc25b9a-d73f-be6d-7bbe-bd846cf1ea30", + "x-ms-request-id": "b1229518-d01e-004a-77e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:50.372921Z" + "x-ms-version-id": "2021-08-11T19:42:33.9160031Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8fb9bff6-32db-e844-1b5a-e2bb31d5159d/test-blob-4f43f681-5a6a-e2c0-cec1-8a60fe5c3b7d", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-8fb9bff6-32db-e844-1b5a-e2bb31d5159d", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-b1239b3f1d058140bf8f19354ce269c8-7d8d67a7c3daac4f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "69245ad6-e82b-9e25-ff26-106716541697", - "x-ms-date": "Fri, 04 Jun 2021 18:41:51 GMT", + "traceparent": "00-aac016817fa7154eb020a19af574169b-0c60b0bc3aea034e-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d620641e-0512-aa5d-8884-d3ac9c3c75dd", + "x-ms-date": "Wed, 11 Aug 2021 19:42:33 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -61,161 +52,32 @@ "Accept-Ranges": "bytes", "Content-Length": "0", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 18:41:50 GMT", - "ETag": "\"0x8D927886A65D23A\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:50 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:33 GMT", + "ETag": "\u00220x8D95D002A355FDF\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:33 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-committed-block-count": "0", "x-ms-blob-type": "AppendBlob", - "x-ms-client-request-id": "69245ad6-e82b-9e25-ff26-106716541697", - "x-ms-creation-time": "Fri, 04 Jun 2021 18:41:50 GMT", + "x-ms-client-request-id": "d620641e-0512-aa5d-8884-d3ac9c3c75dd", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:33 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:51 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:33 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "b5c955e1-101e-001b-4e71-5945f9000000", + "x-ms-request-id": "b1229573-d01e-004a-45e9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:50.372921Z" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8fb9bff6-32db-e844-1b5a-e2bb31d5159d?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4d42e361-80bf-3592-3f81-d7ecf4f69334", - "x-ms-date": "Fri, 04 Jun 2021 18:41:51 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:50 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "4d42e361-80bf-3592-3f81-d7ecf4f69334", - "x-ms-request-id": "b5c955e3-101e-001b-4f71-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-4f43f681-5a6a-e2c0-cec1-8a60fe5c3b7d2021-06-04T18:41:50.3729210ZtrueFri, 04 Jun 2021 18:41:50 GMTFri, 04 Jun 2021 18:41:50 GMT0x8D927886A65D23A0application/octet-streamAppendBlobunlockedavailabletrueFri, 04 Jun 2021 18:46:51 GMTunlockedtrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8fb9bff6-32db-e844-1b5a-e2bb31d5159d/test-blob-4f43f681-5a6a-e2c0-cec1-8a60fe5c3b7d?comp=legalhold", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-1eb2c5de4fec7c46b542158a593f016a-19982bfaf719d04f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "33054d26-c911-54d7-6c2f-c84e3c304140", - "x-ms-date": "Fri, 04 Jun 2021 18:41:51 GMT", - "x-ms-legal-hold": "false", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:50 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "33054d26-c911-54d7-6c2f-c84e3c304140", - "x-ms-legal-hold": "false", - "x-ms-request-id": "b5c955e4-101e-001b-5071-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8fb9bff6-32db-e844-1b5a-e2bb31d5159d/test-blob-4f43f681-5a6a-e2c0-cec1-8a60fe5c3b7d?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-fa023c6246d57a4ab17d925c5cb26ee5-9fed375b1cfab244-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "a6c5880a-60f0-a423-6483-31a6a6be860d", - "x-ms-date": "Fri, 04 Jun 2021 18:41:51 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:50 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "a6c5880a-60f0-a423-6483-31a6a6be860d", - "x-ms-request-id": "b5c955e5-101e-001b-5171-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8fb9bff6-32db-e844-1b5a-e2bb31d5159d/test-blob-4f43f681-5a6a-e2c0-cec1-8a60fe5c3b7d", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-862d3c91f06fd64e9fa1c96a56c884df-86b9e5445971f74b-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "b444db18-9a6a-9350-71c1-865430464c17", - "x-ms-date": "Fri, 04 Jun 2021 18:41:51 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:50 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "b444db18-9a6a-9350-71c1-865430464c17", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "b5c955e6-101e-001b-5271-5945f9000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:33.9160031Z" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T13:41:51.0467972-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:33.9009131-07:00", "RandomSeed": "348774433", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CreatePageBlob_ImmutableStorageWithVersioning.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CreatePageBlob_ImmutableStorageWithVersioning.json index b393592f61701..b743d700cc82f 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CreatePageBlob_ImmutableStorageWithVersioning.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CreatePageBlob_ImmutableStorageWithVersioning.json @@ -1,22 +1,19 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d86dc11e-2328-3018-611f-a332ac382f31/test-blob-700ba31f-3586-6872-765d-317a8e6088a8", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-d86dc11e-2328-3018-611f-a332ac382f31", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-7205f1ff24b9e04da8de440010155735-c276b9ad4d924d4c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-c316d5c55502ad4dad32080696a779b6-4e44c5626de45e4f-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-content-length": "1024", "x-ms-blob-type": "PageBlob", - "x-ms-client-request-id": "43ba64a8-1caa-e83a-4f05-61caf19da100", - "x-ms-date": "Fri, 04 Jun 2021 18:41:35 GMT", + "x-ms-client-request-id": "352bbeff-5f05-af9e-46f4-d50984efab34", + "x-ms-date": "Wed, 11 Aug 2021 19:42:19 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:35 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:19 GMT", "x-ms-legal-hold": "true", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -24,35 +21,29 @@ "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:34 GMT", - "ETag": "\"0x8D9278861104E74\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:34 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "43ba64a8-1caa-e83a-4f05-61caf19da100", - "x-ms-request-id": "16dfee1f-301e-0008-1171-5976b8000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:19 GMT", + "ETag": "\u00220x8D95D0021AC7189\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:19 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "352bbeff-5f05-af9e-46f4-d50984efab34", + "x-ms-request-id": "b1225e1f-d01e-004a-4ce8-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:34.7129972Z" + "x-ms-version-id": "2021-08-11T19:42:19.5968393Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d86dc11e-2328-3018-611f-a332ac382f31/test-blob-700ba31f-3586-6872-765d-317a8e6088a8", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-d86dc11e-2328-3018-611f-a332ac382f31", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-6663098579f99c43bd2c5ad7cebddf0e-7a176ae03437cb49-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "2ad2fcb2-44a6-e2fd-8443-e600fdd3bda8", - "x-ms-date": "Fri, 04 Jun 2021 18:41:35 GMT", + "traceparent": "00-f3bf066333152e4c9480bb74692fd680-5dce6339f9246542-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ed33fb97-f90c-c02b-055c-2a916069e387", + "x-ms-date": "Wed, 11 Aug 2021 19:42:19 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -62,162 +53,32 @@ "Accept-Ranges": "bytes", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 18:41:34 GMT", - "ETag": "\"0x8D9278861104E74\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:34 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:19 GMT", + "ETag": "\u00220x8D95D0021AC7189\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:19 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-sequence-number": "0", "x-ms-blob-type": "PageBlob", - "x-ms-client-request-id": "2ad2fcb2-44a6-e2fd-8443-e600fdd3bda8", - "x-ms-creation-time": "Fri, 04 Jun 2021 18:41:34 GMT", + "x-ms-client-request-id": "ed33fb97-f90c-c02b-055c-2a916069e387", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:19 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:35 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:19 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "16dfee20-301e-0008-1271-5976b8000000", + "x-ms-request-id": "b1225e70-d01e-004a-0ee8-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:34.7129972Z" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d86dc11e-2328-3018-611f-a332ac382f31?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-52445243becc104bb97d275bb4ed0c82-af7a4ebc5707334c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "f518da21-77cb-525a-fe51-69c9122bc231", - "x-ms-date": "Fri, 04 Jun 2021 18:41:35 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:34 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "f518da21-77cb-525a-fe51-69c9122bc231", - "x-ms-request-id": "16dfee23-301e-0008-1471-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-700ba31f-3586-6872-765d-317a8e6088a82021-06-04T18:41:34.7129972ZtrueFri, 04 Jun 2021 18:41:34 GMTFri, 04 Jun 2021 18:41:34 GMT0x8D9278861104E741024application/octet-stream0PageBlobunlockedavailabletrueFri, 04 Jun 2021 18:46:35 GMTunlockedtrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d86dc11e-2328-3018-611f-a332ac382f31/test-blob-700ba31f-3586-6872-765d-317a8e6088a8?comp=legalhold", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-881a4bd770140d4b91659f30dc21ac01-9bb123b528de574d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "22de01bb-c8bb-dcdd-791f-8b6a535e9c0d", - "x-ms-date": "Fri, 04 Jun 2021 18:41:35 GMT", - "x-ms-legal-hold": "false", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:34 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "22de01bb-c8bb-dcdd-791f-8b6a535e9c0d", - "x-ms-legal-hold": "false", - "x-ms-request-id": "16dfee24-301e-0008-1571-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d86dc11e-2328-3018-611f-a332ac382f31/test-blob-700ba31f-3586-6872-765d-317a8e6088a8?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-3e2d593041cf99439b7569c391595de5-84c2046433ab9545-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "100e8e61-a04c-d576-a461-11d8cf60a075", - "x-ms-date": "Fri, 04 Jun 2021 18:41:35 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:34 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "100e8e61-a04c-d576-a461-11d8cf60a075", - "x-ms-request-id": "16dfee26-301e-0008-1771-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d86dc11e-2328-3018-611f-a332ac382f31/test-blob-700ba31f-3586-6872-765d-317a8e6088a8", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-c3c76c8bdf47c64d8cd6585ea262521e-a54f09c0ef8da64c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c5083bd3-8c50-96c0-95db-cc09ea16f7ae", - "x-ms-date": "Fri, 04 Jun 2021 18:41:35 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:34 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "c5083bd3-8c50-96c0-95db-cc09ea16f7ae", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "16dfee27-301e-0008-1871-5976b8000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:19.5968393Z" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T13:41:35.3865371-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:19.5699702-07:00", "RandomSeed": "617294152", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CreatePageBlob_ImmutableStorageWithVersioningAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CreatePageBlob_ImmutableStorageWithVersioningAsync.json index 5cfe68c652a73..086d3457a606c 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CreatePageBlob_ImmutableStorageWithVersioningAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/CreatePageBlob_ImmutableStorageWithVersioningAsync.json @@ -1,22 +1,19 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-2bd79126-5f97-7230-3f45-fe1046f36d70/test-blob-4d9ad0a0-6e68-7014-e8ce-1b680db046d3", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-2bd79126-5f97-7230-3f45-fe1046f36d70", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-3511c7ca5e1600489943a04e37f3f126-1217931a24c3fa46-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-c3ca53edc43a1d499a108210a8d0f39f-6f45e35f1945c44b-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-content-length": "1024", "x-ms-blob-type": "PageBlob", - "x-ms-client-request-id": "1e982da2-c727-b7e4-7d66-42c843c8648e", - "x-ms-date": "Fri, 04 Jun 2021 18:41:53 GMT", + "x-ms-client-request-id": "5b1cfc43-fdd0-9f66-7d3f-2aba89ace712", + "x-ms-date": "Wed, 11 Aug 2021 19:42:34 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:53 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:34 GMT", "x-ms-legal-hold": "true", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -24,35 +21,29 @@ "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:51 GMT", - "ETag": "\"0x8D927886BBC2ECC\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:52 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "1e982da2-c727-b7e4-7d66-42c843c8648e", - "x-ms-request-id": "b5c955ef-101e-001b-5571-5945f9000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:33 GMT", + "ETag": "\u00220x8D95D002A5018A3\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:34 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "5b1cfc43-fdd0-9f66-7d3f-2aba89ace712", + "x-ms-request-id": "b12295f0-d01e-004a-2ee9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:52.616622Z" + "x-ms-version-id": "2021-08-11T19:42:34.0911267Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-2bd79126-5f97-7230-3f45-fe1046f36d70/test-blob-4d9ad0a0-6e68-7014-e8ce-1b680db046d3", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-2bd79126-5f97-7230-3f45-fe1046f36d70", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-5474b51c9bcc734fb4ef0ef4823db3aa-3af0e49dc82f8b46-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "e0c609e7-2817-7bab-1865-de69ba9d5bb5", - "x-ms-date": "Fri, 04 Jun 2021 18:41:53 GMT", + "traceparent": "00-938e2ae8b29ad042b62b9cdebc71bf5e-27a8f70e107db246-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4acd2bfe-11d6-a29f-6afb-cf294359e73c", + "x-ms-date": "Wed, 11 Aug 2021 19:42:34 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -62,161 +53,32 @@ "Accept-Ranges": "bytes", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 18:41:51 GMT", - "ETag": "\"0x8D927886BBC2ECC\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:52 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:33 GMT", + "ETag": "\u00220x8D95D002A5018A3\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:34 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-sequence-number": "0", "x-ms-blob-type": "PageBlob", - "x-ms-client-request-id": "e0c609e7-2817-7bab-1865-de69ba9d5bb5", - "x-ms-creation-time": "Fri, 04 Jun 2021 18:41:52 GMT", + "x-ms-client-request-id": "4acd2bfe-11d6-a29f-6afb-cf294359e73c", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:34 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:53 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:34 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "b5c955f0-101e-001b-5671-5945f9000000", + "x-ms-request-id": "b1229621-d01e-004a-59e9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:52.616622Z" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-2bd79126-5f97-7230-3f45-fe1046f36d70?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "39e1067f-8302-d576-7f51-32713336e7cc", - "x-ms-date": "Fri, 04 Jun 2021 18:41:53 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:51 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "39e1067f-8302-d576-7f51-32713336e7cc", - "x-ms-request-id": "b5c955f2-101e-001b-5771-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-4d9ad0a0-6e68-7014-e8ce-1b680db046d32021-06-04T18:41:52.6166220ZtrueFri, 04 Jun 2021 18:41:52 GMTFri, 04 Jun 2021 18:41:52 GMT0x8D927886BBC2ECC1024application/octet-stream0PageBlobunlockedavailabletrueFri, 04 Jun 2021 18:46:53 GMTunlockedtrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-2bd79126-5f97-7230-3f45-fe1046f36d70/test-blob-4d9ad0a0-6e68-7014-e8ce-1b680db046d3?comp=legalhold", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-bbae995736afd44da78bf937f7c7758c-e55aa5db6d5c2f44-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "b4e9baf1-21bc-57b3-25e6-de8d6aca5c57", - "x-ms-date": "Fri, 04 Jun 2021 18:41:53 GMT", - "x-ms-legal-hold": "false", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:51 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "b4e9baf1-21bc-57b3-25e6-de8d6aca5c57", - "x-ms-legal-hold": "false", - "x-ms-request-id": "b5c955f3-101e-001b-5871-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-2bd79126-5f97-7230-3f45-fe1046f36d70/test-blob-4d9ad0a0-6e68-7014-e8ce-1b680db046d3?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-688d8456d0f6f948a6b1d4ad75a6c845-3923e8ee0ff8204f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "797fd5ce-334c-7e0f-67f6-82b7aacfdf03", - "x-ms-date": "Fri, 04 Jun 2021 18:41:53 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:52 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "797fd5ce-334c-7e0f-67f6-82b7aacfdf03", - "x-ms-request-id": "b5c955f4-101e-001b-5971-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-2bd79126-5f97-7230-3f45-fe1046f36d70/test-blob-4d9ad0a0-6e68-7014-e8ce-1b680db046d3", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-c34d2c967a11e94dbe5b9015b8f39045-31655cc28379104d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "94bfde83-e34b-da0b-d80e-767648ce4bda", - "x-ms-date": "Fri, 04 Jun 2021 18:41:53 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:52 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "94bfde83-e34b-da0b-d80e-767648ce4bda", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "b5c955f5-101e-001b-5a71-5945f9000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:34.0911267Z" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T13:41:53.2846484-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:34.0699187-07:00", "RandomSeed": "175584274", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/DeleteImmutibilityPolicyAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/DeleteImmutibilityPolicyAsync.json index 89495e35183ae..ded1a63c184c4 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/DeleteImmutibilityPolicyAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/DeleteImmutibilityPolicyAsync.json @@ -1,60 +1,51 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-da7892c4-6a0f-aa4d-5a6a-9547495d923f/test-blob-04c0cd68-3241-bda6-b2d8-8aca63de02f5", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-da7892c4-6a0f-aa4d-5a6a-9547495d923f", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-ca08bae7ef4cf94db2030b9b2599a86c-f7d9a20f63e98a47-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-48b3670901ce084cb47ec32fa8803bdd-9dbf44bbbab4504d-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "b2ffe99d-e5c2-b93d-2417-5c526b8a7b6e", - "x-ms-date": "Fri, 04 Jun 2021 19:05:23 GMT", + "x-ms-client-request-id": "d348f1b2-acca-40bc-dbd2-0f812ffb32d0", + "x-ms-date": "Wed, 11 Aug 2021 19:42:19 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "qMTKi2V207eGse4t0FUereNz255Res+R67ooN+CCR3xooJ6Ekgfa8fkIfZBEee1cudzn8ANkoy31OZ+rTpvWA2pyxDC2mhvcmOmkSPw/TXLMy34Em1d5A/xxj1lnL6NeMnkm0bS9pR7BClcZv1sxtust3oId0mgS+MAzRQvCdGlGRhaCGHu9DyZfQ5AAX0SgP9htOVAgQV8RE9jziWAT/5bt03lFrp1wcM5cvY/YEpl8kgYyVDoYJQW2cQSiyYXFTET6EozLW5A7/MmCxIPQOAE/d/Za4Kpb1K1zjj2YzadIlnFL3v8MsTd191dxlmCB5jgDYlGPa2uZnj3fV81Toi8iOS4ShFkBM8a/5OlS6T5M8acElWtVuSoFsT/CLVlpIlUoT1wyb2HfAi+Lz4eCR7X/kmUlTg3DzIADDNMaPwZsVsKTKZrhGoJFJZI7yuqigmqKwpvzRNRIZILcLmKOxcMpHnjF7h0aHnfj3yh6iAKVYYpoj3xreBLuS8QYBOwft2DPEqtx3ZNMcKQjEGSrztx/Rs3YJTVGvaVm16NYARmLxCjIqnVXJIP2HB7YR2itQn3nmL4eRpEqiFQFCgbw826Ll0s74iNnKCJK4gkWbnY9uZQlcWlabX2XniEgURl8BSiwTLAdcWBZgG+c1GSHExreyFFxy4IFMCrOpEQCR9YIzdzhZiHFH0czy/H5vpgYD4oHQYnICjqlqxyFTs0cVziYkweHpa34GKgJPv+RC3GStZS5+gVNQMKiO7sEQNF6F3O4YCuQkWrdDijhvsw6FJ+r85k4YlwzS1NF5Gnx89jXjyaL2apGASQq3Ozca4H1ZyccWUw3QbUWhBXXS6wA7BpQCi6mrjr0ZfF1DoVwVt/RUHxB1ZqMn05wdFSVbrZ3KfDRjGFSTrntJ/RawjIvpi01BvovvhaAxGrgNjrmXvc7/eSVnsp9fgLDVK2lMd0bQM4mYGe7SGvZUcj3chh+B8j9HsROmgdjt4f4a2po25KNxPVrv/6PgLV5u00ChgzqRU3lqBIYzKbGw6jgw9wBcHY1aa0iE0fJbp4P1d66YTB7DiYcgzKAdPhOpPxWrr3Yd0vXzBxexzEGGzlzCPfIDGF3ZbS25O1DtfS1025Lc7/hNl2T4pQUHEb0Fmj5DGwAhpia3kgIIpNelBYnqfTDu6h5kdGaNSnNY0ltwc6FSamItU3VsJR22RTKNE5+7HNSMFu/f3qaZVFuzXv/mmDE2UptnvOm7QoTAri90ADbTnbWG5Fzxcov7k/7Z+MZdz60BVsEEE1/q0JQrHzB3JVQk34EKX/PUROAPq+kqoYn+ot5Ccuk1j4oVm9OIhhNbRK6q9RkFE2/5LNIhNKe2wC8KQ==", + "RequestBody": "aM3ABEEypr2y2IrKY94C9ajEyotldtO3hrHuLdBVHq3jc9ueUXrPkeu6KDfggkd8aKCehJIH2vH5CH2QRHntXLnc5/ADZKMt9Tmfq06b1gNqcsQwtpob3JjppEj8P01yzMt\u002BBJtXeQP8cY9ZZy\u002BjXjJ5JtG0vaUewQpXGb9bMbbrLd6CHdJoEvjAM0ULwnRpRkYWghh7vQ8mX0OQAF9EoD/YbTlQIEFfERPY84lgE/\u002BW7dN5Ra6dcHDOXL2P2BKZfJIGMlQ6GCUFtnEEosmFxUxE\u002BhKMy1uQO/zJgsSD0DgBP3f2WuCqW9Stc449mM2nSJZxS97/DLE3dfdXcZZggeY4A2JRj2trmZ4931fNU6IvIjkuEoRZATPGv\u002BTpUuk\u002BTPGnBJVrVbkqBbE/wi1ZaSJVKE9cMm9h3wIvi8\u002BHgke1/5JlJU4Nw8yAAwzTGj8GbFbCkyma4RqCRSWSO8rqooJqisKb80TUSGSC3C5ijsXDKR54xe4dGh53498oeogClWGKaI98a3gS7kvEGATsH7dgzxKrcd2TTHCkIxBkq87cf0bN2CU1Rr2lZtejWAEZi8QoyKp1VySD9hwe2EdorUJ955i\u002BHkaRKohUBQoG8PNui5dLO\u002BIjZygiSuIJFm52PbmUJXFpWm19l54hIFEZfAUosEywHXFgWYBvnNRkhxMa3shRccuCBTAqzqREAkfWCM3c4WYhxR9HM8vx\u002Bb6YGA\u002BKB0GJyAo6paschU7NHFc4mJMHh6Wt\u002BBioCT7/kQtxkrWUufoFTUDCoju7BEDRehdzuGArkJFq3Q4o4b7MOhSfq/OZOGJcM0tTReRp8fPY148mi9mqRgEkKtzs3GuB9WcnHFlMN0G1FoQV10usAOwaUAoupq469GXxdQ6FcFbf0VB8QdWajJ9OcHRUlW62dynw0YxhUk657Sf0WsIyL6YtNQb6L74WgMRq4DY65l73O/3klZ7KfX4Cw1StpTHdG0DOJmBnu0hr2VHI93IYfgfI/R7ETpoHY7eH\u002BGtqaNuSjcT1a7/\u002Bj4C1ebtNAoYM6kVN5agSGMymxsOo4MPcAXB2NWmtIhNHyW6eD9XeumEwew4mHIMygHT4TqT8Vq692HdL18wcXscxBhs5cwj3yAxhd2W0tuTtQ7X0tdNuS3O/4TZdk\u002BKUFBxG9BZo\u002BQxsAIaYmt5ICCKTXpQWJ6n0w7uoeZHRmjUpzWNJbcHOhUmpiLVN1bCUdtkUyjROfuxzUjBbv396mmVRbs17/5pgxNlKbZ7zpu0KEwK4vdAA20521huRc8XKL\u002B5P\u002B2fjGXc\u002BtAVbBBBNf6tCUKx8wdyVUJN\u002BBCl/z1ETgD6vpKqGJ/qLeQnLpNY\u002BKFZvTiIYTW0Sug==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "JpZfRiSpNumjH7B4IaPghg==", - "Date": "Fri, 04 Jun 2021 19:05:21 GMT", - "ETag": "\"0x8D9278BB4245D07\"", - "Last-Modified": "Fri, 04 Jun 2021 19:05:22 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "b2ffe99d-e5c2-b93d-2417-5c526b8a7b6e", - "x-ms-content-crc64": "JsOdZgumpzQ=", - "x-ms-request-id": "8afc4566-a01e-001a-5474-59a2b5000000", + "Content-Length": "0", + "Content-MD5": "Da61Nkf/luMF3OxQp5iM2g==", + "Date": "Wed, 11 Aug 2021 19:42:19 GMT", + "ETag": "\u00220x8D95D0021D424F3\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:19 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "d348f1b2-acca-40bc-dbd2-0f812ffb32d0", + "x-ms-content-crc64": "dNkQbCk\u002BF5M=", + "x-ms-request-id": "b1225ec4-d01e-004a-56e8-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:05:22.5855239Z" + "x-ms-version-id": "2021-08-11T19:42:19.8570227Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-da7892c4-6a0f-aa4d-5a6a-9547495d923f/test-blob-04c0cd68-3241-bda6-b2d8-8aca63de02f5?comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-da7892c4-6a0f-aa4d-5a6a-9547495d923f?comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-5c7a2e73a8bced458a6d3327d1da6224-9c4924e33deab245-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "f1000151-0900-cc66-b38e-aeb34f69d451", - "x-ms-date": "Fri, 04 Jun 2021 19:05:23 GMT", + "traceparent": "00-f3d48e7804f5b445a5f6d5745d4da7e3-7372288f64759e4f-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5b66f892-3e25-fef0-1724-387bb063844d", + "x-ms-date": "Wed, 11 Aug 2021 19:42:19 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:05:28 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:42:24 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -62,32 +53,26 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:05:22 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "f1000151-0900-cc66-b38e-aeb34f69d451", + "Date": "Wed, 11 Aug 2021 19:42:19 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "5b66f892-3e25-fef0-1724-387bb063844d", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:05:28 GMT", - "x-ms-request-id": "8afc4568-a01e-001a-5574-59a2b5000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:42:24 GMT", + "x-ms-request-id": "b1225f62-d01e-004a-57e8-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-da7892c4-6a0f-aa4d-5a6a-9547495d923f/test-blob-04c0cd68-3241-bda6-b2d8-8aca63de02f5?comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-da7892c4-6a0f-aa4d-5a6a-9547495d923f?comp=immutabilityPolicies", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-aa843e59f3270449b9118600e31e33f3-8095f520f04b0746-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "69010f92-8a8a-886d-9299-a797903daeae", - "x-ms-date": "Fri, 04 Jun 2021 19:05:23 GMT", + "traceparent": "00-8f754bfe00849247ade63b625c9716c7-8acf7a693810f14d-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "36eea056-d794-5eab-f901-9a9eacc209c1", + "x-ms-date": "Wed, 11 Aug 2021 19:42:20 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -95,30 +80,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:05:22 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "69010f92-8a8a-886d-9299-a797903daeae", - "x-ms-request-id": "8afc4569-a01e-001a-5674-59a2b5000000", + "Date": "Wed, 11 Aug 2021 19:42:19 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "36eea056-d794-5eab-f901-9a9eacc209c1", + "x-ms-request-id": "b1225f95-d01e-004a-7fe8-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-da7892c4-6a0f-aa4d-5a6a-9547495d923f/test-blob-04c0cd68-3241-bda6-b2d8-8aca63de02f5", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-da7892c4-6a0f-aa4d-5a6a-9547495d923f", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-c38b0b0fc759d245a397a20043e1541a-de0433aa22884f40-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4020ec84-6b68-ccc6-3366-a3fb2f14cebc", - "x-ms-date": "Fri, 04 Jun 2021 19:05:23 GMT", + "traceparent": "00-6cb6e856ca9a0d4fac87a839977cc766-99cbde5dc190c345-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0f24e74f-4e74-7ab8-56a1-f7ff6fc820f1", + "x-ms-date": "Wed, 11 Aug 2021 19:42:20 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -127,98 +106,32 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "JpZfRiSpNumjH7B4IaPghg==", + "Content-MD5": "Da61Nkf/luMF3OxQp5iM2g==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 19:05:22 GMT", - "ETag": "\"0x8D9278BB4245D07\"", - "Last-Modified": "Fri, 04 Jun 2021 19:05:22 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:19 GMT", + "ETag": "\u00220x8D95D0021D424F3\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:19 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "4020ec84-6b68-ccc6-3366-a3fb2f14cebc", - "x-ms-creation-time": "Fri, 04 Jun 2021 19:05:22 GMT", + "x-ms-client-request-id": "0f24e74f-4e74-7ab8-56a1-f7ff6fc820f1", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:19 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-request-id": "8afc456a-a01e-001a-5774-59a2b5000000", + "x-ms-request-id": "b1225fe8-d01e-004a-44e8-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:05:22.5855239Z" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-da7892c4-6a0f-aa4d-5a6a-9547495d923f?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-36b968f6a54d8c4ca144d0d6d67aa55b-3b52e9789c150a43-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "a312b679-6e1c-e446-2058-dc0daabd4a42", - "x-ms-date": "Fri, 04 Jun 2021 19:05:23 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:05:22 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "a312b679-6e1c-e446-2058-dc0daabd4a42", - "x-ms-request-id": "8afc456c-a01e-001a-5874-59a2b5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-04c0cd68-3241-bda6-b2d8-8aca63de02f52021-06-04T19:05:22.5855239ZtrueFri, 04 Jun 2021 19:05:22 GMTFri, 04 Jun 2021 19:05:22 GMT0x8D9278BB4245D071024application/octet-streamJpZfRiSpNumjH7B4IaPghg==BlockBlobHottrueunlockedavailabletrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-da7892c4-6a0f-aa4d-5a6a-9547495d923f/test-blob-04c0cd68-3241-bda6-b2d8-8aca63de02f5", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-8601fac5995cd24d9a34f6726c1175df-9e380f36191d4147-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "7882d94d-2a01-e49f-a66a-a4461e3f9a99", - "x-ms-date": "Fri, 04 Jun 2021 19:05:23 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 19:05:22 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "7882d94d-2a01-e49f-a66a-a4461e3f9a99", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "8afc4571-a01e-001a-5d74-59a2b5000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:19.8570227Z" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T14:05:23.3444401-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:19.9199676-07:00", "RandomSeed": "1092444541", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/DeleteImmutibilityPolicyAsyncAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/DeleteImmutibilityPolicyAsyncAsync.json index 3f9546a08cd23..01f5682958269 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/DeleteImmutibilityPolicyAsyncAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/DeleteImmutibilityPolicyAsyncAsync.json @@ -1,60 +1,51 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-93845a26-0d75-cf83-6580-eeaa810dab2a/test-blob-e7fa2d83-6165-2fc3-dc29-b72889469ba9", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-93845a26-0d75-cf83-6580-eeaa810dab2a", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-15b11417edc35843af3982ec086da440-ed5c2af9d8fd524e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-12e2ab091bd36043a828473f26f37cfc-8d252c23ef6efb46-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "9cf0da15-207b-c982-3acd-eff48959d313", - "x-ms-date": "Fri, 04 Jun 2021 19:06:07 GMT", + "x-ms-client-request-id": "fac735bb-7c46-d78a-09dd-492ea9d6c4e9", + "x-ms-date": "Wed, 11 Aug 2021 19:42:34 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "93+Wy5gA/W/SyQe4VsIIfhqtlTZfowPEllW3TFZbRh7lRLIBdt+RgjCLFJxZC9gZITgN27FkSVR80TVDSbAZd4Lp0hEPBgc6GxIG1I5ma4p8nSsdTWptgPtehaSqTjl/cZ0ZcDjHChsw08CeXnXFFWaqx6uF+ykXfFEWsIBij83ZhmLxTftStZMQ7HqqziKFmG8+AIeO+nZzAfPmsFmazUPyxdcS1MhrWBIYdA6uba4vkRgQJI9GSozrfUwHawQ5dR82twhKcsSn0qd1dYVoxJRFtx9Biam0rHpLJlZ7ZOwN3v7veLWl5B5UaVHn0NUGg7i3wbTl+Ox1ggqN/0xtK267Z5eGeEzeoNIB7CBXzNylRKKexKI4J+USefWqF+XR5z3iLGk9gAtr2CHh5AzMHbYu6LupzmfMg0Cxc/5XNIjtLwXidZ9yaMOXMuuAVkPZRls/ey8qKBjVFqkpiwwMFKSZ9LUG6agWvH/3EZx8Syz82C2jF7hYwwbtDV/2Sdy3ix5G52KN01yzKL+vMhZ8WMp9LLPeafzrQDCuGNxJIHKjQIZ9NWTJbwXR8O/5qZDvcbSUeB0p2CEhW6cx37qAaQdNDPKQ/iJms72uDXgN8pefvqcntadUeWdkXNq8mI9KUYbnq5yeX3KRLsVge8uoE2gPkiASWLRg+JKKK6FIqRstY7zyJkf6AV80lobh9P6cu0lyrAZvN/jSh7IJEzTRSYSqMxcPtu0hFZDB3cEtfgSU7m9Y1fwUvSvDH56U8e0qY00BN8DmjQRbUJd1rlk3pAmudSXEeHOIlXbrS5dOjSSjlnp0LEdErWBq/YRknw7RjHqV5nvIZevaeaFK+kFtDMNz0hjfwnjBasfEWnvuJPZnGr8cuaeo2jCOmrKl+bMf/PDB8M328ckB03u0BAtv61Sq4uCBUVMcy/foUSjFHHAUpF2KLTMocSj2GuUr89YkHq5d+hbSnaudpCXVDqCgO7cLoF+u5b4hgXG4izZt8dchwzJ5ZyFZQQex7IgOU2KHVd4tH1N3djnvPHilGhJ1MLJNtEpuJtOWsV5Y/Pg1Ey4OMTVXP9GDqk34iiuotCf0PLzWwJ8YGC4Kl271H3lAuihKlujcHvDhyQr9dpyo7v02Y8A8X1KP9hgGTKhjjorTt88CXR0+Fx3L9PeUGqKRYqhwv7u4BFrWuqDQ1tFIfTt/Kb7MpZDg90uicWpb+tt1dOn/8s7PG7N1LKN8bkFMgne7FfHkxLwYkMhvFZLver/EW2HnSYpsrw4KV3ntY4kKVu7zn+XqkK8t5mIGXwUghrHjuBPfZDnsT2Xj2m1DKi0/Zb+k+9ra2sqxumIoZlAI6dHHCqt1KvG1BlCAB7ZC6Q==", + "RequestBody": "gy3652Vhwy/cKbcoiUabqfd/lsuYAP1v0skHuFbCCH4arZU2X6MDxJZVt0xWW0Ye5USyAXbfkYIwixScWQvYGSE4DduxZElUfNE1Q0mwGXeC6dIRDwYHOhsSBtSOZmuKfJ0rHU1qbYD7XoWkqk45f3GdGXA4xwobMNPAnl51xRVmqserhfspF3xRFrCAYo/N2YZi8U37UrWTEOx6qs4ihZhvPgCHjvp2cwHz5rBZms1D8sXXEtTIa1gSGHQOrm2uL5EYECSPRkqM631MB2sEOXUfNrcISnLEp9KndXWFaMSURbcfQYmptKx6SyZWe2TsDd7\u002B73i1peQeVGlR59DVBoO4t8G05fjsdYIKjf9MbStuu2eXhnhM3qDSAewgV8zcpUSinsSiOCflEnn1qhfl0ec94ixpPYALa9gh4eQMzB22Lui7qc5nzINAsXP\u002BVzSI7S8F4nWfcmjDlzLrgFZD2UZbP3svKigY1RapKYsMDBSkmfS1BumoFrx/9xGcfEss/Ngtoxe4WMMG7Q1f9knct4seRudijdNcsyi/rzIWfFjKfSyz3mn860AwrhjcSSByo0CGfTVkyW8F0fDv\u002BamQ73G0lHgdKdghIVunMd\u002B6gGkHTQzykP4iZrO9rg14DfKXn76nJ7WnVHlnZFzavJiPSlGG56ucnl9ykS7FYHvLqBNoD5IgEli0YPiSiiuhSKkbLWO88iZH\u002BgFfNJaG4fT\u002BnLtJcqwGbzf40oeyCRM00UmEqjMXD7btIRWQwd3BLX4ElO5vWNX8FL0rwx\u002BelPHtKmNNATfA5o0EW1CXda5ZN6QJrnUlxHhziJV260uXTo0ko5Z6dCxHRK1gav2EZJ8O0Yx6leZ7yGXr2nmhSvpBbQzDc9IY38J4wWrHxFp77iT2Zxq/HLmnqNowjpqypfmzH/zwwfDN9vHJAdN7tAQLb\u002BtUquLggVFTHMv36FEoxRxwFKRdii0zKHEo9hrlK/PWJB6uXfoW0p2rnaQl1Q6goDu3C6BfruW\u002BIYFxuIs2bfHXIcMyeWchWUEHseyIDlNih1XeLR9Td3Y57zx4pRoSdTCyTbRKbibTlrFeWPz4NRMuDjE1Vz/Rg6pN\u002BIorqLQn9Dy81sCfGBguCpdu9R95QLooSpbo3B7w4ckK/XacqO79NmPAPF9Sj/YYBkyoY46K07fPAl0dPhcdy/T3lBqikWKocL\u002B7uARa1rqg0NbRSH07fym\u002BzKWQ4PdLonFqW/rbdXTp//LOzxuzdSyjfG5BTIJ3uxXx5MS8GJDIbxWS73q/xFth50mKbK8OCld57WOJClbu85/l6pCvLeZiBl8FIIax47gT32Q57E9l49ptQyotP2W/pPva2trKsbpiKGZQCA==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "dmaAH9kpWycShhEu59fA6A==", - "Date": "Fri, 04 Jun 2021 19:06:06 GMT", - "ETag": "\"0x8D9278BCEB42AEC\"", - "Last-Modified": "Fri, 04 Jun 2021 19:06:07 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9cf0da15-207b-c982-3acd-eff48959d313", - "x-ms-content-crc64": "5i+gZU2lXkk=", - "x-ms-request-id": "fefabbb7-701e-000f-4874-59d0c5000000", + "Content-Length": "0", + "Content-MD5": "d6QePUx1ZlKYX9rvZDvhKQ==", + "Date": "Wed, 11 Aug 2021 19:42:33 GMT", + "ETag": "\u00220x8D95D002A76935E\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:34 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "fac735bb-7c46-d78a-09dd-492ea9d6c4e9", + "x-ms-content-crc64": "anVSq2gXLiQ=", + "x-ms-request-id": "b12296a1-d01e-004a-4ae9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:06:07.1487212Z" + "x-ms-version-id": "2021-08-11T19:42:34.3433054Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-93845a26-0d75-cf83-6580-eeaa810dab2a/test-blob-e7fa2d83-6165-2fc3-dc29-b72889469ba9?comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-93845a26-0d75-cf83-6580-eeaa810dab2a?comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-875a4fd0bafd04418a76a497eecf4dfe-ec7dabab2856dd41-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "2d6a6742-a5c5-9a6d-b3fe-c0788d954daf", - "x-ms-date": "Fri, 04 Jun 2021 19:06:07 GMT", + "traceparent": "00-7f66291a3f944248934101ef1ab976c5-c81b62dc2c4c4842-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f2a6d16f-559e-6cc2-46f0-00cd2cfc48de", + "x-ms-date": "Wed, 11 Aug 2021 19:42:34 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:06:12 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:42:39 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -62,32 +53,26 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:06:06 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "2d6a6742-a5c5-9a6d-b3fe-c0788d954daf", + "Date": "Wed, 11 Aug 2021 19:42:33 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "f2a6d16f-559e-6cc2-46f0-00cd2cfc48de", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:06:12 GMT", - "x-ms-request-id": "fefabbb9-701e-000f-4974-59d0c5000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:42:39 GMT", + "x-ms-request-id": "b1229709-d01e-004a-23e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-93845a26-0d75-cf83-6580-eeaa810dab2a/test-blob-e7fa2d83-6165-2fc3-dc29-b72889469ba9?comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-93845a26-0d75-cf83-6580-eeaa810dab2a?comp=immutabilityPolicies", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-3a8f54c33fc0d04abf5cda00f1237be9-68b74090e361ba45-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "22b21085-a6ee-c94d-630b-3fa09549dfb1", - "x-ms-date": "Fri, 04 Jun 2021 19:06:07 GMT", + "traceparent": "00-e461a37a765d7447b674eb9258d143c2-238c4df18d2e4f4c-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d8be350a-d130-c04a-1784-558b20b49c3d", + "x-ms-date": "Wed, 11 Aug 2021 19:42:34 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -95,30 +80,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:06:06 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "22b21085-a6ee-c94d-630b-3fa09549dfb1", - "x-ms-request-id": "fefabbba-701e-000f-4a74-59d0c5000000", + "Date": "Wed, 11 Aug 2021 19:42:33 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "d8be350a-d130-c04a-1784-558b20b49c3d", + "x-ms-request-id": "b122974b-d01e-004a-5ce9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-93845a26-0d75-cf83-6580-eeaa810dab2a/test-blob-e7fa2d83-6165-2fc3-dc29-b72889469ba9", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-93845a26-0d75-cf83-6580-eeaa810dab2a", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-745937a6ded51a4fb5a2274773b7d650-66c4a79bf5e52d40-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "7cf38261-2ae2-64c0-e7f4-752492aa2ace", - "x-ms-date": "Fri, 04 Jun 2021 19:06:08 GMT", + "traceparent": "00-0a0e528f0d41f647b438f5d6a6a2f301-e49c758979d1f24e-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f7c351a3-6f3e-70ae-1daa-154150e27afe", + "x-ms-date": "Wed, 11 Aug 2021 19:42:34 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -127,97 +106,32 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "dmaAH9kpWycShhEu59fA6A==", + "Content-MD5": "d6QePUx1ZlKYX9rvZDvhKQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 19:06:06 GMT", - "ETag": "\"0x8D9278BCEB42AEC\"", - "Last-Modified": "Fri, 04 Jun 2021 19:06:07 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:34 GMT", + "ETag": "\u00220x8D95D002A76935E\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:34 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "7cf38261-2ae2-64c0-e7f4-752492aa2ace", - "x-ms-creation-time": "Fri, 04 Jun 2021 19:06:07 GMT", + "x-ms-client-request-id": "f7c351a3-6f3e-70ae-1daa-154150e27afe", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:34 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-request-id": "fefabbbb-701e-000f-4b74-59d0c5000000", + "x-ms-request-id": "b1229784-d01e-004a-0de9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:06:07.1487212Z" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-93845a26-0d75-cf83-6580-eeaa810dab2a?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "123e4190-6255-78ce-905e-0f49f989dd73", - "x-ms-date": "Fri, 04 Jun 2021 19:06:08 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:06 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "123e4190-6255-78ce-905e-0f49f989dd73", - "x-ms-request-id": "fefabbbe-701e-000f-4d74-59d0c5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-e7fa2d83-6165-2fc3-dc29-b72889469ba92021-06-04T19:06:07.1487212ZtrueFri, 04 Jun 2021 19:06:07 GMTFri, 04 Jun 2021 19:06:07 GMT0x8D9278BCEB42AEC1024application/octet-streamdmaAH9kpWycShhEu59fA6A==BlockBlobHottrueunlockedavailabletrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-93845a26-0d75-cf83-6580-eeaa810dab2a/test-blob-e7fa2d83-6165-2fc3-dc29-b72889469ba9", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-2a4709d994369549ace37fd5a3b9591d-1856b20b7e509e41-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "5194f47b-186b-4278-d66f-3e9395b51cd9", - "x-ms-date": "Fri, 04 Jun 2021 19:06:08 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 19:06:07 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "5194f47b-186b-4278-d66f-3e9395b51cd9", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "fefabbc0-701e-000f-4f74-59d0c5000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:34.3433054Z" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T14:06:07.9046695-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:34.4059231-07:00", "RandomSeed": "1149811958", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/DeleteImmutibilityPolicyAsync_Error.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/DeleteImmutibilityPolicyAsync_Error.json index 5988e7cd0aa4a..f50ae823bc67e 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/DeleteImmutibilityPolicyAsync_Error.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/DeleteImmutibilityPolicyAsync_Error.json @@ -1,18 +1,15 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-db3ee437-26cc-8c61-1f17-8744328fe5dd/test-blob-8a66763d-26ed-65d0-3bae-6617d5cbc0f5?comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-db3ee437-26cc-8c61-1f17-8744328fe5dd?comp=immutabilityPolicies", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-4e3eaa1062be0041930fe47343fb3962-60e558af951e1d46-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "50c235b1-ca17-103e-13d8-9f1ebf49b753", - "x-ms-date": "Fri, 04 Jun 2021 19:05:25 GMT", + "traceparent": "00-4a1c988ec1d7d548936787d599876705-67581efcb4880442-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "997fde94-ec96-5a73-137f-7919d0bb0ac4", + "x-ms-date": "Wed, 11 Aug 2021 19:42:20 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -21,58 +18,24 @@ "ResponseHeaders": { "Content-Length": "216", "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:05:24 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "50c235b1-ca17-103e-13d8-9f1ebf49b753", + "Date": "Wed, 11 Aug 2021 19:42:19 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "997fde94-ec96-5a73-137f-7919d0bb0ac4", "x-ms-error-code": "BlobNotFound", - "x-ms-request-id": "8afc4580-a01e-001a-6374-59a2b5000000", + "x-ms-request-id": "b1226115-d01e-004a-36e8-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [ - "\n", - "BlobNotFoundThe specified blob does not exist.\n", - "RequestId:8afc4580-a01e-001a-6374-59a2b5000000\n", - "Time:2021-06-04T19:05:24.8756862Z" + "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\n", + "\u003CError\u003E\u003CCode\u003EBlobNotFound\u003C/Code\u003E\u003CMessage\u003EThe specified blob does not exist.\n", + "RequestId:b1226115-d01e-004a-36e8-8e693e000000\n", + "Time:2021-08-11T19:42:20.4265247Z\u003C/Message\u003E\u003C/Error\u003E" ] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-db3ee437-26cc-8c61-1f17-8744328fe5dd?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-ac7d265c0573624a8a772595ad9d32e6-a138e67923293c45-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "a066a2a3-7009-c9de-a06f-85bd4c549ac9", - "x-ms-date": "Fri, 04 Jun 2021 19:05:25 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:05:24 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "a066a2a3-7009-c9de-a06f-85bd4c549ac9", - "x-ms-request-id": "8afc4581-a01e-001a-6474-59a2b5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "" } ], "Variables": { "RandomSeed": "83418893", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/DeleteImmutibilityPolicyAsync_ErrorAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/DeleteImmutibilityPolicyAsync_ErrorAsync.json index 0fe320e33a1b7..23ba730bf970a 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/DeleteImmutibilityPolicyAsync_ErrorAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/DeleteImmutibilityPolicyAsync_ErrorAsync.json @@ -1,18 +1,15 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-dabdbfef-8a05-d5c9-7b4f-02286b2298e4/test-blob-a4fef3d2-9216-4160-255e-be9c5882cedd?comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-dabdbfef-8a05-d5c9-7b4f-02286b2298e4?comp=immutabilityPolicies", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-552c0c5ef003a84da519a6918f27c07f-63b13a1d48466241-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4d001d2d-bf4f-5da9-5e7c-b5a7cb2c7cf8", - "x-ms-date": "Fri, 04 Jun 2021 19:06:10 GMT", + "traceparent": "00-03d368bc086a2c4781a6151ff61405c0-39fe14e4eedf3843-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "787b68f1-2afb-24ec-a90c-076d70110d4d", + "x-ms-date": "Wed, 11 Aug 2021 19:42:34 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -21,57 +18,24 @@ "ResponseHeaders": { "Content-Length": "216", "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:09 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "4d001d2d-bf4f-5da9-5e7c-b5a7cb2c7cf8", + "Date": "Wed, 11 Aug 2021 19:42:34 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "787b68f1-2afb-24ec-a90c-076d70110d4d", "x-ms-error-code": "BlobNotFound", - "x-ms-request-id": "fefabbd1-701e-000f-5d74-59d0c5000000", + "x-ms-request-id": "b12297d7-d01e-004a-51e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [ - "\n", - "BlobNotFoundThe specified blob does not exist.\n", - "RequestId:fefabbd1-701e-000f-5d74-59d0c5000000\n", - "Time:2021-06-04T19:06:09.8605224Z" + "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\n", + "\u003CError\u003E\u003CCode\u003EBlobNotFound\u003C/Code\u003E\u003CMessage\u003EThe specified blob does not exist.\n", + "RequestId:b12297d7-d01e-004a-51e9-8e693e000000\n", + "Time:2021-08-11T19:42:34.6756742Z\u003C/Message\u003E\u003C/Error\u003E" ] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-dabdbfef-8a05-d5c9-7b4f-02286b2298e4?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "3b6f7150-8181-328d-bf1e-1a7e7445597c", - "x-ms-date": "Fri, 04 Jun 2021 19:06:10 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:09 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3b6f7150-8181-328d-bf1e-1a7e7445597c", - "x-ms-request-id": "fefabbd3-701e-000f-5f74-59d0c5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "" } ], "Variables": { "RandomSeed": "382637381", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync.json index 60d89909635e2..e997a2d943e4f 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync.json @@ -1,60 +1,51 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1deb51c0-006a-b599-7ffb-d32e663c7047/test-blob-8dad4623-5860-8493-b9d4-fe800b9b40fb", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-1deb51c0-006a-b599-7ffb-d32e663c7047", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-9898a5dc60b1644bb0c47e308d8ca817-fa0ba718ecfcc244-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-8db5ff3ebfc5f145be056d1fe8ebe344-97f184481e445b43-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "1450f211-0b24-b5ea-5a5a-08e3109b4314", - "x-ms-date": "Fri, 04 Jun 2021 19:05:02 GMT", + "x-ms-client-request-id": "a0b6a313-d2a9-c482-0df8-31f69a1eb85b", + "x-ms-date": "Wed, 11 Aug 2021 19:42:20 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "BXqPZ1z1i+T2CUPsVk1TJbt11sqFpDFnvmZklgIZquS62CnsrAnqLrrJl1YVpi5rgNnFlcR2dWBIJ6n2kPXi3V9eMn0kZ3ixi6cQvA3aUhc4+BYoVBQgRGLIpIVg9J7F5rn3tnOwRxhhEwocZblSbdWRvZfeuYlLPu4bXMPzUZYJS9VU45yjh7H9x0AJA96pdTawzjYG5i0vq3eFletVbsFzExrj/ok47jXm4fJIQTsQcuaMQoJgAmSoJTglHfLFqFl/lvDExXasd98BHwU65mo8dSMEyCs+ExC1O9lREtBDITmZyatKTKxv38uiX+NfbT7N6ajPwN8uQIPgDomdW2UPvv7MoR2/8Sl2lOhgm7QtVc2bgyknc2BZaoknaj0j0oRlk6Dkk8whDvd/WCv2zaTOsrm7Atc750qecjaUl4brU8Jk+ggTScEBenQxqBo0Y53kWbeEZ8+sKqxWRSGVjXdxlAVpktOcu2n3uohjCT8vag+Zrz7OZ+vyt89bvAOgbOz8wBQUy9DJSJ1OjK1HSSBtJtsS+905oiwadtsDQP5lV02bZkkrGp4+0GeggNo+q22v7pUojXAPwx3n+lX1xQee6DVfq+PXQgw80yt2mCFS28ptVFFoPcndjKMrQx9JSQpfAZil3/+K16yJ7LlFmCr8lR6KiHC1Nqtrgh9Aq/7s8oohF5eJrPzL4n2l3lAPl/N4L64Bv8CZqcvtOVzfSiuunfkvJIGTc+giv6XzEFdaW+osx3xP6zPJh23Lm3Of65dR90FW4HNy5bvG3gAapph0kt5ys4OvXrLGZZwTx9d1gtMNohkVA3t2ueHBiQwzruHVVwmVLTcUopmPkHrWXh7kUVwsDQN/Xo5i+/mh7dWlk7a7PnDO4FWc+QCAhnMAn1vD3DewBqHdVfh6MjE9c7TD6f3DGyCtFXEGkBQD/9gbYVue3RGd9YwV3el3VK0jXoVLvJ12PIQ7FsfGqXaN2lUgXtDWn5WjJvRxrj02NcHD4zGOt0M6pSXWY8dK1ksVhwOTV/XcTb/vqJWoBI1HBOAFAsZF/yMR5bmr/zvOWVCoWyc6ot7M5pZxnw6ukaCXj1/nRNOF0IjggnE7MU2EIU9FAKlmDWEBOBwv02AUY1MZFG/c5xR8I4ueWSBskLVI7X2+aJH2MIL+5Qu3Vfwoyx4dIh3dpzo7yNwex7NAlKhn5ubiVfrBIuPt3gEIxc6Odo0CTm2Ya0VDg6C12GjOvVBjUG4WRnYkWwA58Mk4MgMOj1ElPkU6znugntFaDEl7HyCwpXRfeDAX3fNtXnp7ClGcp0gXqH8LKIHzdaekyU+2vtGpiIyOrxchDmBSzW8AJZOAvWUAY3ahpXzzawKIcg==", + "RequestBody": "I0atjWBYk4S51P6AC5tA\u002BwV6j2dc9Yvk9glD7FZNUyW7ddbKhaQxZ75mZJYCGarkutgp7KwJ6i66yZdWFaYua4DZxZXEdnVgSCep9pD14t1fXjJ9JGd4sYunELwN2lIXOPgWKFQUIERiyKSFYPSexea597ZzsEcYYRMKHGW5Um3Vkb2X3rmJSz7uG1zD81GWCUvVVOOco4ex/cdACQPeqXU2sM42BuYtL6t3hZXrVW7BcxMa4/6JOO415uHySEE7EHLmjEKCYAJkqCU4JR3yxahZf5bwxMV2rHffAR8FOuZqPHUjBMgrPhMQtTvZURLQQyE5mcmrSkysb9/Lol/jX20\u002Bzemoz8DfLkCD4A6JnVtlD77\u002BzKEdv/EpdpToYJu0LVXNm4MpJ3NgWWqJJ2o9I9KEZZOg5JPMIQ73f1gr9s2kzrK5uwLXO\u002BdKnnI2lJeG61PCZPoIE0nBAXp0MagaNGOd5Fm3hGfPrCqsVkUhlY13cZQFaZLTnLtp97qIYwk/L2oPma8\u002Bzmfr8rfPW7wDoGzs/MAUFMvQyUidToytR0kgbSbbEvvdOaIsGnbbA0D\u002BZVdNm2ZJKxqePtBnoIDaPqttr\u002B6VKI1wD8Md5/pV9cUHnug1X6vj10IMPNMrdpghUtvKbVRRaD3J3YyjK0MfSUkKXwGYpd//itesiey5RZgq/JUeiohwtTara4IfQKv\u002B7PKKIReXiaz8y\u002BJ9pd5QD5fzeC\u002BuAb/AmanL7Tlc30orrp35LySBk3PoIr\u002Bl8xBXWlvqLMd8T\u002BszyYdty5tzn\u002BuXUfdBVuBzcuW7xt4AGqaYdJLecrODr16yxmWcE8fXdYLTDaIZFQN7drnhwYkMM67h1VcJlS03FKKZj5B61l4e5FFcLA0Df16OYvv5oe3VpZO2uz5wzuBVnPkAgIZzAJ9bw9w3sAah3VX4ejIxPXO0w\u002Bn9wxsgrRVxBpAUA//YG2Fbnt0RnfWMFd3pd1StI16FS7yddjyEOxbHxql2jdpVIF7Q1p\u002BVoyb0ca49NjXBw\u002BMxjrdDOqUl1mPHStZLFYcDk1f13E2/76iVqASNRwTgBQLGRf8jEeW5q/87zllQqFsnOqLezOaWcZ8OrpGgl49f50TThdCI4IJxOzFNhCFPRQCpZg1hATgcL9NgFGNTGRRv3OcUfCOLnlkgbJC1SO19vmiR9jCC/uULt1X8KMseHSId3ac6O8jcHsezQJSoZ\u002Bbm4lX6wSLj7d4BCMXOjnaNAk5tmGtFQ4Ogtdhozr1QY1BuFkZ2JFsAOfDJODIDDo9RJT5FOs57oJ7RWgxJex8gsKV0X3gwF93zbV56ewpRnKdIF6h/CyiB83WnpMlPtr7RqYiMjq8XIQ5gUs1vAA==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "z7SZXgT6ybE7qEHT3SseOQ==", - "Date": "Fri, 04 Jun 2021 19:05:01 GMT", - "ETag": "\"0x8D9278BA82FD96E\"", - "Last-Modified": "Fri, 04 Jun 2021 19:05:02 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "1450f211-0b24-b5ea-5a5a-08e3109b4314", - "x-ms-content-crc64": "L4xnMnS2zys=", - "x-ms-request-id": "7b6a887b-b01e-0019-6474-597a16000000", + "Content-Length": "0", + "Content-MD5": "f5FA28tC3pw8HiIue6b4Og==", + "Date": "Wed, 11 Aug 2021 19:42:20 GMT", + "ETag": "\u00220x8D95D00224E4D14\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:20 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "a0b6a313-d2a9-c482-0df8-31f69a1eb85b", + "x-ms-content-crc64": "J0EfcRzFqIU=", + "x-ms-request-id": "b122618d-d01e-004a-16e8-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:05:02.528139Z" + "x-ms-version-id": "2021-08-11T19:42:20.6575892Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1deb51c0-006a-b599-7ffb-d32e663c7047/test-blob-8dad4623-5860-8493-b9d4-fe800b9b40fb?comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-1deb51c0-006a-b599-7ffb-d32e663c7047?comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-fb5209ce77873d46bcdd029316c09b52-2cb334a035228641-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "79e120ec-73b2-084e-b900-464eca9fb372", - "x-ms-date": "Fri, 04 Jun 2021 19:05:03 GMT", + "traceparent": "00-6703c065603afe42b9cc3dbcd2032d67-c75b4df994362d44-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "af4c9c99-cf16-5257-10bc-b06dcf6ddc82", + "x-ms-date": "Wed, 11 Aug 2021 19:42:20 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:10:03 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:20 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -62,32 +53,26 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:05:01 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "79e120ec-73b2-084e-b900-464eca9fb372", + "Date": "Wed, 11 Aug 2021 19:42:20 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "af4c9c99-cf16-5257-10bc-b06dcf6ddc82", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:10:03 GMT", - "x-ms-request-id": "7b6a887e-b01e-0019-6674-597a16000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:20 GMT", + "x-ms-request-id": "b1226239-d01e-004a-21e8-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1deb51c0-006a-b599-7ffb-d32e663c7047/test-blob-8dad4623-5860-8493-b9d4-fe800b9b40fb", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-1deb51c0-006a-b599-7ffb-d32e663c7047", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-91dbc273d06f4e42b89c7f9e8fec9e56-d89cc333bb91cf40-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "eff6857e-c9b9-2562-4d44-f61688088871", - "x-ms-date": "Fri, 04 Jun 2021 19:05:03 GMT", + "traceparent": "00-4ba01b1fe7a27649be11a7a02f07d75d-5b7b916b14527745-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fd5c1cb4-09d2-4245-9bfd-03685b7de6ec", + "x-ms-date": "Wed, 11 Aug 2021 19:42:20 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -96,45 +81,39 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "z7SZXgT6ybE7qEHT3SseOQ==", + "Content-MD5": "f5FA28tC3pw8HiIue6b4Og==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 19:05:01 GMT", - "ETag": "\"0x8D9278BA82FD96E\"", - "Last-Modified": "Fri, 04 Jun 2021 19:05:02 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:20 GMT", + "ETag": "\u00220x8D95D00224E4D14\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:20 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "eff6857e-c9b9-2562-4d44-f61688088871", - "x-ms-creation-time": "Fri, 04 Jun 2021 19:05:02 GMT", + "x-ms-client-request-id": "fd5c1cb4-09d2-4245-9bfd-03685b7de6ec", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:20 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:10:03 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:20 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-request-id": "7b6a887f-b01e-0019-6774-597a16000000", + "x-ms-request-id": "b122627e-d01e-004a-57e8-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:05:02.528139Z" + "x-ms-version-id": "2021-08-11T19:42:20.6575892Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1deb51c0-006a-b599-7ffb-d32e663c7047?restype=container&comp=list&include=Immutabilitypolicy", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf?restype=container\u0026comp=list\u0026prefix=test-blob-1deb51c0-006a-b599-7ffb-d32e663c7047\u0026include=Immutabilitypolicy", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-b7d08d42cce2714ea29f7ccff42ffa22-35e423d3506db34c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "44d05a1a-c3a8-eab8-ba37-b08d122fba92", - "x-ms-date": "Fri, 04 Jun 2021 19:05:03 GMT", + "traceparent": "00-6555c2953362da4c801b1ee1c7aebed7-8215efa528f88644-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b2b83e08-de10-e3b0-db9f-deb46fe6ac3b", + "x-ms-date": "Wed, 11 Aug 2021 19:42:20 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -142,31 +121,25 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:05:02 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:20 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "44d05a1a-c3a8-eab8-ba37-b08d122fba92", - "x-ms-request-id": "7b6a8882-b01e-0019-6974-597a16000000", + "x-ms-client-request-id": "b2b83e08-de10-e3b0-db9f-deb46fe6ac3b", + "x-ms-request-id": "b12262d6-d01e-004a-1be8-8e693e000000", "x-ms-version": "2020-10-02" }, - "ResponseBody": "test-blob-8dad4623-5860-8493-b9d4-fe800b9b40fb2021-06-04T19:05:02.5281390ZtrueFri, 04 Jun 2021 19:05:02 GMTFri, 04 Jun 2021 19:05:02 GMT0x8D9278BA82FD96E1024application/octet-streamz7SZXgT6ybE7qEHT3SseOQ==BlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 19:10:03 GMTunlocked" + "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://kasobolcanadanetoauth.blob.core.windows.net/\u0022 ContainerName=\u0022ccc0c3b3-39f3-484e-82af-1eeedc495adf\u0022\u003E\u003CPrefix\u003Etest-blob-1deb51c0-006a-b599-7ffb-d32e663c7047\u003C/Prefix\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-1deb51c0-006a-b599-7ffb-d32e663c7047\u003C/Name\u003E\u003CVersionId\u003E2021-08-11T19:42:20.6575892Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EWed, 11 Aug 2021 19:42:20 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EWed, 11 Aug 2021 19:42:20 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D95D00224E4D14\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003Ef5FA28tC3pw8HiIue6b4Og==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003CImmutabilityPolicyUntilDate\u003EWed, 11 Aug 2021 19:47:20 GMT\u003C/ImmutabilityPolicyUntilDate\u003E\u003CImmutabilityPolicyMode\u003Eunlocked\u003C/ImmutabilityPolicyMode\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1deb51c0-006a-b599-7ffb-d32e663c7047/test-blob-8dad4623-5860-8493-b9d4-fe800b9b40fb", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-1deb51c0-006a-b599-7ffb-d32e663c7047", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-1927f2b35b2ba5409e0d197af412640e-858354db18febf4a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "2efcba97-4438-44c9-85cd-f8d92d22d1ab", - "x-ms-date": "Fri, 04 Jun 2021 19:05:03 GMT", + "traceparent": "00-90f1257f71f23c44b68d99ccd693f47a-9d7b0a3f4fade541-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1d609175-33c4-a0db-d512-141aebadb567", + "x-ms-date": "Wed, 11 Aug 2021 19:42:21 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -175,129 +148,32 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "z7SZXgT6ybE7qEHT3SseOQ==", + "Content-MD5": "f5FA28tC3pw8HiIue6b4Og==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 19:05:02 GMT", - "ETag": "\"0x8D9278BA82FD96E\"", - "Last-Modified": "Fri, 04 Jun 2021 19:05:02 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:20 GMT", + "ETag": "\u00220x8D95D00224E4D14\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:20 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "2efcba97-4438-44c9-85cd-f8d92d22d1ab", - "x-ms-creation-time": "Fri, 04 Jun 2021 19:05:02 GMT", + "x-ms-client-request-id": "1d609175-33c4-a0db-d512-141aebadb567", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:20 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:10:03 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:20 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-request-id": "7b6a8883-b01e-0019-6a74-597a16000000", + "x-ms-request-id": "b122633e-d01e-004a-6fe9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:05:02.528139Z" - }, - "ResponseBody": "BXqPZ1z1i+T2CUPsVk1TJbt11sqFpDFnvmZklgIZquS62CnsrAnqLrrJl1YVpi5rgNnFlcR2dWBIJ6n2kPXi3V9eMn0kZ3ixi6cQvA3aUhc4+BYoVBQgRGLIpIVg9J7F5rn3tnOwRxhhEwocZblSbdWRvZfeuYlLPu4bXMPzUZYJS9VU45yjh7H9x0AJA96pdTawzjYG5i0vq3eFletVbsFzExrj/ok47jXm4fJIQTsQcuaMQoJgAmSoJTglHfLFqFl/lvDExXasd98BHwU65mo8dSMEyCs+ExC1O9lREtBDITmZyatKTKxv38uiX+NfbT7N6ajPwN8uQIPgDomdW2UPvv7MoR2/8Sl2lOhgm7QtVc2bgyknc2BZaoknaj0j0oRlk6Dkk8whDvd/WCv2zaTOsrm7Atc750qecjaUl4brU8Jk+ggTScEBenQxqBo0Y53kWbeEZ8+sKqxWRSGVjXdxlAVpktOcu2n3uohjCT8vag+Zrz7OZ+vyt89bvAOgbOz8wBQUy9DJSJ1OjK1HSSBtJtsS+905oiwadtsDQP5lV02bZkkrGp4+0GeggNo+q22v7pUojXAPwx3n+lX1xQee6DVfq+PXQgw80yt2mCFS28ptVFFoPcndjKMrQx9JSQpfAZil3/+K16yJ7LlFmCr8lR6KiHC1Nqtrgh9Aq/7s8oohF5eJrPzL4n2l3lAPl/N4L64Bv8CZqcvtOVzfSiuunfkvJIGTc+giv6XzEFdaW+osx3xP6zPJh23Lm3Of65dR90FW4HNy5bvG3gAapph0kt5ys4OvXrLGZZwTx9d1gtMNohkVA3t2ueHBiQwzruHVVwmVLTcUopmPkHrWXh7kUVwsDQN/Xo5i+/mh7dWlk7a7PnDO4FWc+QCAhnMAn1vD3DewBqHdVfh6MjE9c7TD6f3DGyCtFXEGkBQD/9gbYVue3RGd9YwV3el3VK0jXoVLvJ12PIQ7FsfGqXaN2lUgXtDWn5WjJvRxrj02NcHD4zGOt0M6pSXWY8dK1ksVhwOTV/XcTb/vqJWoBI1HBOAFAsZF/yMR5bmr/zvOWVCoWyc6ot7M5pZxnw6ukaCXj1/nRNOF0IjggnE7MU2EIU9FAKlmDWEBOBwv02AUY1MZFG/c5xR8I4ueWSBskLVI7X2+aJH2MIL+5Qu3Vfwoyx4dIh3dpzo7yNwex7NAlKhn5ubiVfrBIuPt3gEIxc6Odo0CTm2Ya0VDg6C12GjOvVBjUG4WRnYkWwA58Mk4MgMOj1ElPkU6znugntFaDEl7HyCwpXRfeDAX3fNtXnp7ClGcp0gXqH8LKIHzdaekyU+2vtGpiIyOrxchDmBSzW8AJZOAvWUAY3ahpXzzawKIcg==" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1deb51c0-006a-b599-7ffb-d32e663c7047?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-09f733e40a4d2c4691eb276485b93967-8d6938c6ff731a4f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "58f54881-8b33-3159-c81c-98f73b0172b3", - "x-ms-date": "Fri, 04 Jun 2021 19:05:03 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:05:02 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "58f54881-8b33-3159-c81c-98f73b0172b3", - "x-ms-request-id": "7b6a8884-b01e-0019-6b74-597a16000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:20.6575892Z" }, - "ResponseBody": "test-blob-8dad4623-5860-8493-b9d4-fe800b9b40fb2021-06-04T19:05:02.5281390ZtrueFri, 04 Jun 2021 19:05:02 GMTFri, 04 Jun 2021 19:05:02 GMT0x8D9278BA82FD96E1024application/octet-streamz7SZXgT6ybE7qEHT3SseOQ==BlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 19:10:03 GMTunlocked" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1deb51c0-006a-b599-7ffb-d32e663c7047/test-blob-8dad4623-5860-8493-b9d4-fe800b9b40fb?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-0703365337e9d94993d4797455153da4-121002d6e45af54f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "e558ebcd-782c-5978-f20d-1569f67faa7c", - "x-ms-date": "Fri, 04 Jun 2021 19:05:03 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:05:02 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "e558ebcd-782c-5978-f20d-1569f67faa7c", - "x-ms-request-id": "7b6a8885-b01e-0019-6c74-597a16000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1deb51c0-006a-b599-7ffb-d32e663c7047/test-blob-8dad4623-5860-8493-b9d4-fe800b9b40fb", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-af1b9078d37c98439c011d1df996367f-3715e3cc5405f140-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "5029b187-8da9-c887-efdb-ac61c27712c3", - "x-ms-date": "Fri, 04 Jun 2021 19:05:03 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 19:05:02 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "5029b187-8da9-c887-efdb-ac61c27712c3", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "7b6a8886-b01e-0019-6d74-597a16000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] + "ResponseBody": "I0atjWBYk4S51P6AC5tA\u002BwV6j2dc9Yvk9glD7FZNUyW7ddbKhaQxZ75mZJYCGarkutgp7KwJ6i66yZdWFaYua4DZxZXEdnVgSCep9pD14t1fXjJ9JGd4sYunELwN2lIXOPgWKFQUIERiyKSFYPSexea597ZzsEcYYRMKHGW5Um3Vkb2X3rmJSz7uG1zD81GWCUvVVOOco4ex/cdACQPeqXU2sM42BuYtL6t3hZXrVW7BcxMa4/6JOO415uHySEE7EHLmjEKCYAJkqCU4JR3yxahZf5bwxMV2rHffAR8FOuZqPHUjBMgrPhMQtTvZURLQQyE5mcmrSkysb9/Lol/jX20\u002Bzemoz8DfLkCD4A6JnVtlD77\u002BzKEdv/EpdpToYJu0LVXNm4MpJ3NgWWqJJ2o9I9KEZZOg5JPMIQ73f1gr9s2kzrK5uwLXO\u002BdKnnI2lJeG61PCZPoIE0nBAXp0MagaNGOd5Fm3hGfPrCqsVkUhlY13cZQFaZLTnLtp97qIYwk/L2oPma8\u002Bzmfr8rfPW7wDoGzs/MAUFMvQyUidToytR0kgbSbbEvvdOaIsGnbbA0D\u002BZVdNm2ZJKxqePtBnoIDaPqttr\u002B6VKI1wD8Md5/pV9cUHnug1X6vj10IMPNMrdpghUtvKbVRRaD3J3YyjK0MfSUkKXwGYpd//itesiey5RZgq/JUeiohwtTara4IfQKv\u002B7PKKIReXiaz8y\u002BJ9pd5QD5fzeC\u002BuAb/AmanL7Tlc30orrp35LySBk3PoIr\u002Bl8xBXWlvqLMd8T\u002BszyYdty5tzn\u002BuXUfdBVuBzcuW7xt4AGqaYdJLecrODr16yxmWcE8fXdYLTDaIZFQN7drnhwYkMM67h1VcJlS03FKKZj5B61l4e5FFcLA0Df16OYvv5oe3VpZO2uz5wzuBVnPkAgIZzAJ9bw9w3sAah3VX4ejIxPXO0w\u002Bn9wxsgrRVxBpAUA//YG2Fbnt0RnfWMFd3pd1StI16FS7yddjyEOxbHxql2jdpVIF7Q1p\u002BVoyb0ca49NjXBw\u002BMxjrdDOqUl1mPHStZLFYcDk1f13E2/76iVqASNRwTgBQLGRf8jEeW5q/87zllQqFsnOqLezOaWcZ8OrpGgl49f50TThdCI4IJxOzFNhCFPRQCpZg1hATgcL9NgFGNTGRRv3OcUfCOLnlkgbJC1SO19vmiR9jCC/uULt1X8KMseHSId3ac6O8jcHsezQJSoZ\u002Bbm4lX6wSLj7d4BCMXOjnaNAk5tmGtFQ4Ogtdhozr1QY1BuFkZ2JFsAOfDJODIDDo9RJT5FOs57oJ7RWgxJex8gsKV0X3gwF93zbV56ewpRnKdIF6h/CyiB83WnpMlPtr7RqYiMjq8XIQ5gUs1vAA==" } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T14:05:03.2769885-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:20.7260612-07:00", "RandomSeed": "1006288307", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsyncAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsyncAsync.json index e2430c324ab08..53aaec40ef700 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsyncAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsyncAsync.json @@ -1,60 +1,51 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-5b48c03b-aafd-daf7-82cd-787239570ece/test-blob-1179e3cb-15b5-07f8-aa2a-99ec5c4b4b63", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-5b48c03b-aafd-daf7-82cd-787239570ece", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-3aa7d6b45d783943ad548299967e71e9-1f20dc390d040641-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-c96a0b643053c247a4213b479a77e7e4-a1658347d626cb43-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "0e3bb4e6-e4d0-24d1-89d4-59db043c29c7", - "x-ms-date": "Fri, 04 Jun 2021 19:06:12 GMT", + "x-ms-client-request-id": "9653527f-8338-8b05-8b80-180ad38447b3", + "x-ms-date": "Wed, 11 Aug 2021 19:42:34 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "vOUsu2KV5GOFYlYKGkiRzGv8C5mVbl8myECw0xAKfjaCFLVTK1NrNf8Wi1K/7eximM2AYECxzk6FBvMh5RBSeuQfiAWTPqEYkNWaf+IMZtpTTjtCih710EZmzSRgSVDuwxFun2Xnz1osaM9qF05reJ8YzZbVEPDGKre+LHB8t0aFq7zRnsZ1bH/hFSFOirn4+1SFR3u5GbIhqHWtKaLpsLCI5WuRmtrYo2EW8/rOd5/+xTAb9nDLzJIKsPZQx0Lc92VxxqVNZmB6rKQaoiW3UjDWr2NxzrlAvRnYh+rkiNweOvyUXbH6sF7QoErLsCltUl3FehffaimsMAiMdd92liTI+2goI/V+3P4EoS1udAzvajWMHg3EP8/T6CyobTt/WQomA7XARC9oRp4Z2sn7Pbz8nAqp6XcWA7yZVTrI1W7DhEgiSHBWLyUGJNdvq2QF16pwrNEw1W+TDwD5J+/0n3AvVVWB2PVLpW3ko8Wfp1hXk32PWCmdkq/YjzhwXQc2EYRmP1UPhP+1JAdjTDKq9GenopNyZEdHksOmqEm82kdlrpFAOGgDSA5+2jMhOUZ8LpvRybt0xK09H6yRaNy1+Uq//p6gabv/pFmE9IoTJVl9KXmu6xGM8OnkAxm7cd8yyODpYjqo28Xf0SRh8NAiKvlTFD5iBw44Mg20vGaiQzJ6USupKsMe1E60zxnsKwAZwdggaF2hz8DSsC8t9B9fPI3y556kef81ND/wrjj0TAcMmvuNgtvV2YJr13mT8eAuVZKL+URidUfY6jQdsCGI3mQoIFkj0bqyHQ4cOaKGokJfwVimaFLDqSWztJemtyhg4vkUa9GGC4PX2dw2RjylUkjyvu/J4nUSZXY0cB0iC2Xlu1apcTdx2LbUzo91jWPoDWFPtPk5lgCDAgVaUptmtc13UIrm/OERgOU49BPmnNgTS2K70lZrrCVVJW8xFoYbbhnB/jzYAhGAPjMUAKLsnWUtRwY4q+J2C6NlkNdy32pfHYb6JJ6bO0lROpQjV6uCaIgJA89/4sI2SvOYcnE6Dl7JtOMb8njGkQu953BOU7P44ihOaNya4DvDxNqrA8jXFis1WaPIZ3YPQnLDwvpS6PY/oI9J66aCLtSnVy6dG45D5dFEGPoQL3uxPiVq1x1BcdvkbGI4jSuFsirPIQ9IcifjgN0pDc/8LnAUmKyAGFe2ZuZSua8sC1elv2bPQQ5sacz+hldAGGQM5z3xJPV+BJrSGLso9rh4t3SFg01pLO1ipy7fgpEAdk2CRdFxOuZhJrvL/ClTQ3IUhc/iupQWo7tQj3zGn4EJ0qJtprDmBnyOJFySnS/ED2S7y/zBHru4a6IWIapqmoc5wiqH5ZzCLQ==", + "RequestBody": "y\u002BN5EbUV\u002BAeqKpnsXEtLY7zlLLtileRjhWJWChpIkcxr/AuZlW5fJshAsNMQCn42ghS1UytTazX/FotSv\u002B3sYpjNgGBAsc5OhQbzIeUQUnrkH4gFkz6hGJDVmn/iDGbaU047Qooe9dBGZs0kYElQ7sMRbp9l589aLGjPahdOa3ifGM2W1RDwxiq3vixwfLdGhau80Z7GdWx/4RUhToq5\u002BPtUhUd7uRmyIah1rSmi6bCwiOVrkZra2KNhFvP6znef/sUwG/Zwy8ySCrD2UMdC3PdlccalTWZgeqykGqIlt1Iw1q9jcc65QL0Z2Ifq5IjcHjr8lF2x\u002BrBe0KBKy7ApbVJdxXoX32oprDAIjHXfdpYkyPtoKCP1ftz\u002BBKEtbnQM72o1jB4NxD/P0\u002BgsqG07f1kKJgO1wEQvaEaeGdrJ\u002Bz28/JwKqel3FgO8mVU6yNVuw4RIIkhwVi8lBiTXb6tkBdeqcKzRMNVvkw8A\u002BSfv9J9wL1VVgdj1S6Vt5KPFn6dYV5N9j1gpnZKv2I84cF0HNhGEZj9VD4T/tSQHY0wyqvRnp6KTcmRHR5LDpqhJvNpHZa6RQDhoA0gOftozITlGfC6b0cm7dMStPR\u002BskWjctflKv/6eoGm7/6RZhPSKEyVZfSl5rusRjPDp5AMZu3HfMsjg6WI6qNvF39EkYfDQIir5UxQ\u002BYgcOODINtLxmokMyelErqSrDHtROtM8Z7CsAGcHYIGhdoc/A0rAvLfQfXzyN8ueepHn/NTQ/8K449EwHDJr7jYLb1dmCa9d5k/HgLlWSi/lEYnVH2Oo0HbAhiN5kKCBZI9G6sh0OHDmihqJCX8FYpmhSw6kls7SXprcoYOL5FGvRhguD19ncNkY8pVJI8r7vyeJ1EmV2NHAdIgtl5btWqXE3cdi21M6PdY1j6A1hT7T5OZYAgwIFWlKbZrXNd1CK5vzhEYDlOPQT5pzYE0tiu9JWa6wlVSVvMRaGG24Zwf482AIRgD4zFACi7J1lLUcGOKvidgujZZDXct9qXx2G\u002BiSemztJUTqUI1ergmiICQPPf\u002BLCNkrzmHJxOg5eybTjG/J4xpELvedwTlOz\u002BOIoTmjcmuA7w8TaqwPI1xYrNVmjyGd2D0Jyw8L6Uuj2P6CPSeumgi7Up1cunRuOQ\u002BXRRBj6EC97sT4latcdQXHb5GxiOI0rhbIqzyEPSHIn44DdKQ3P/C5wFJisgBhXtmbmUrmvLAtXpb9mz0EObGnM/oZXQBhkDOc98ST1fgSa0hi7KPa4eLd0hYNNaSztYqcu34KRAHZNgkXRcTrmYSa7y/wpU0NyFIXP4rqUFqO7UI98xp\u002BBCdKibaaw5gZ8jiRckp0vxA9ku8v8wR67uA==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "dfYlB8meynFxF2FKRvuLoA==", - "Date": "Fri, 04 Jun 2021 19:06:11 GMT", - "ETag": "\"0x8D9278BD1C0F731\"", - "Last-Modified": "Fri, 04 Jun 2021 19:06:12 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "0e3bb4e6-e4d0-24d1-89d4-59db043c29c7", - "x-ms-content-crc64": "dw8L84BCNRI=", - "x-ms-request-id": "fefabbef-701e-000f-7074-59d0c5000000", + "Content-Length": "0", + "Content-MD5": "\u002B3Z/7d2cSC6HKXqnByuIKA==", + "Date": "Wed, 11 Aug 2021 19:42:34 GMT", + "ETag": "\u00220x8D95D002AC9CBAE\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:34 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "9653527f-8338-8b05-8b80-180ad38447b3", + "x-ms-content-crc64": "j87wWKhMnxw=", + "x-ms-request-id": "b122983a-d01e-004a-27e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:06:12.2657585Z" + "x-ms-version-id": "2021-08-11T19:42:34.8886958Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-5b48c03b-aafd-daf7-82cd-787239570ece/test-blob-1179e3cb-15b5-07f8-aa2a-99ec5c4b4b63?comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-5b48c03b-aafd-daf7-82cd-787239570ece?comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-9d798398b8a5eb44b09864ccc66499e3-a7081cdcd34f404e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "30a0777b-b461-9a5c-802f-0d632a2a864f", - "x-ms-date": "Fri, 04 Jun 2021 19:06:13 GMT", + "traceparent": "00-b5ed88f5bea05446935418471521bca2-677a68bf140a814a-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6f7d9ef9-24ca-e780-9c8a-952a518fb4b4", + "x-ms-date": "Wed, 11 Aug 2021 19:42:34 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:11:13 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:34 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -62,32 +53,26 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:06:11 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "30a0777b-b461-9a5c-802f-0d632a2a864f", + "Date": "Wed, 11 Aug 2021 19:42:34 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "6f7d9ef9-24ca-e780-9c8a-952a518fb4b4", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:11:13 GMT", - "x-ms-request-id": "fefabbf5-701e-000f-7674-59d0c5000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:34 GMT", + "x-ms-request-id": "b12298f7-d01e-004a-43e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-5b48c03b-aafd-daf7-82cd-787239570ece/test-blob-1179e3cb-15b5-07f8-aa2a-99ec5c4b4b63", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-5b48c03b-aafd-daf7-82cd-787239570ece", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-8ea349075fbd1e46a4ae779438b93d61-a75600bb87c10a4b-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8d5fa420-f89c-4565-41e2-ee9b171dbc71", - "x-ms-date": "Fri, 04 Jun 2021 19:06:13 GMT", + "traceparent": "00-9b8f0dd34206b14880862e0a6023fe5d-91877838c057f24c-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "34115156-d707-c1e8-3453-72454ea7d2f9", + "x-ms-date": "Wed, 11 Aug 2021 19:42:35 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -96,44 +81,38 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "dfYlB8meynFxF2FKRvuLoA==", + "Content-MD5": "\u002B3Z/7d2cSC6HKXqnByuIKA==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 19:06:11 GMT", - "ETag": "\"0x8D9278BD1C0F731\"", - "Last-Modified": "Fri, 04 Jun 2021 19:06:12 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:34 GMT", + "ETag": "\u00220x8D95D002AC9CBAE\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:34 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "8d5fa420-f89c-4565-41e2-ee9b171dbc71", - "x-ms-creation-time": "Fri, 04 Jun 2021 19:06:12 GMT", + "x-ms-client-request-id": "34115156-d707-c1e8-3453-72454ea7d2f9", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:34 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:11:13 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:34 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-request-id": "fefabbf6-701e-000f-7774-59d0c5000000", + "x-ms-request-id": "b1229919-d01e-004a-62e9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:06:12.2657585Z" + "x-ms-version-id": "2021-08-11T19:42:34.8886958Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-5b48c03b-aafd-daf7-82cd-787239570ece?restype=container&comp=list&include=Immutabilitypolicy", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111?restype=container\u0026comp=list\u0026prefix=test-blob-5b48c03b-aafd-daf7-82cd-787239570ece\u0026include=Immutabilitypolicy", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8642145c-f8ca-5eb2-ebcb-f224e94ca917", - "x-ms-date": "Fri, 04 Jun 2021 19:06:13 GMT", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "00d44604-7f7e-a3ad-8edf-fc0e41174bd9", + "x-ms-date": "Wed, 11 Aug 2021 19:42:35 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -141,31 +120,25 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:11 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:34 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8642145c-f8ca-5eb2-ebcb-f224e94ca917", - "x-ms-request-id": "fefabbf8-701e-000f-7874-59d0c5000000", + "x-ms-client-request-id": "00d44604-7f7e-a3ad-8edf-fc0e41174bd9", + "x-ms-request-id": "b1229976-d01e-004a-31e9-8e693e000000", "x-ms-version": "2020-10-02" }, - "ResponseBody": "test-blob-1179e3cb-15b5-07f8-aa2a-99ec5c4b4b632021-06-04T19:06:12.2657585ZtrueFri, 04 Jun 2021 19:06:12 GMTFri, 04 Jun 2021 19:06:12 GMT0x8D9278BD1C0F7311024application/octet-streamdfYlB8meynFxF2FKRvuLoA==BlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 19:11:13 GMTunlocked" + "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://kasobolcanadanetoauth.blob.core.windows.net/\u0022 ContainerName=\u002290185bea-b711-4aae-a98f-bb14f2a40111\u0022\u003E\u003CPrefix\u003Etest-blob-5b48c03b-aafd-daf7-82cd-787239570ece\u003C/Prefix\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-5b48c03b-aafd-daf7-82cd-787239570ece\u003C/Name\u003E\u003CVersionId\u003E2021-08-11T19:42:34.8886958Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EWed, 11 Aug 2021 19:42:34 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EWed, 11 Aug 2021 19:42:34 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D95D002AC9CBAE\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003E\u002B3Z/7d2cSC6HKXqnByuIKA==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003CImmutabilityPolicyUntilDate\u003EWed, 11 Aug 2021 19:47:34 GMT\u003C/ImmutabilityPolicyUntilDate\u003E\u003CImmutabilityPolicyMode\u003Eunlocked\u003C/ImmutabilityPolicyMode\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-5b48c03b-aafd-daf7-82cd-787239570ece/test-blob-1179e3cb-15b5-07f8-aa2a-99ec5c4b4b63", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-5b48c03b-aafd-daf7-82cd-787239570ece", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-f483a08e55a078429dbc0bb4c8314a23-cced26479978ce44-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "033e1497-36da-0ba7-9376-14b28d89b941", - "x-ms-date": "Fri, 04 Jun 2021 19:06:13 GMT", + "traceparent": "00-bef054b8cd56084cb79990559a379690-ac30ad32724a8c4d-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "08410096-d2d2-a07a-f6bc-febcfc57032a", + "x-ms-date": "Wed, 11 Aug 2021 19:42:35 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -174,128 +147,32 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "dfYlB8meynFxF2FKRvuLoA==", + "Content-MD5": "\u002B3Z/7d2cSC6HKXqnByuIKA==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 19:06:12 GMT", - "ETag": "\"0x8D9278BD1C0F731\"", - "Last-Modified": "Fri, 04 Jun 2021 19:06:12 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:34 GMT", + "ETag": "\u00220x8D95D002AC9CBAE\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:34 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "033e1497-36da-0ba7-9376-14b28d89b941", - "x-ms-creation-time": "Fri, 04 Jun 2021 19:06:12 GMT", + "x-ms-client-request-id": "08410096-d2d2-a07a-f6bc-febcfc57032a", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:34 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:11:13 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:34 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-request-id": "fefabbfa-701e-000f-7a74-59d0c5000000", + "x-ms-request-id": "b12299c2-d01e-004a-6ce9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:06:12.2657585Z" - }, - "ResponseBody": "vOUsu2KV5GOFYlYKGkiRzGv8C5mVbl8myECw0xAKfjaCFLVTK1NrNf8Wi1K/7eximM2AYECxzk6FBvMh5RBSeuQfiAWTPqEYkNWaf+IMZtpTTjtCih710EZmzSRgSVDuwxFun2Xnz1osaM9qF05reJ8YzZbVEPDGKre+LHB8t0aFq7zRnsZ1bH/hFSFOirn4+1SFR3u5GbIhqHWtKaLpsLCI5WuRmtrYo2EW8/rOd5/+xTAb9nDLzJIKsPZQx0Lc92VxxqVNZmB6rKQaoiW3UjDWr2NxzrlAvRnYh+rkiNweOvyUXbH6sF7QoErLsCltUl3FehffaimsMAiMdd92liTI+2goI/V+3P4EoS1udAzvajWMHg3EP8/T6CyobTt/WQomA7XARC9oRp4Z2sn7Pbz8nAqp6XcWA7yZVTrI1W7DhEgiSHBWLyUGJNdvq2QF16pwrNEw1W+TDwD5J+/0n3AvVVWB2PVLpW3ko8Wfp1hXk32PWCmdkq/YjzhwXQc2EYRmP1UPhP+1JAdjTDKq9GenopNyZEdHksOmqEm82kdlrpFAOGgDSA5+2jMhOUZ8LpvRybt0xK09H6yRaNy1+Uq//p6gabv/pFmE9IoTJVl9KXmu6xGM8OnkAxm7cd8yyODpYjqo28Xf0SRh8NAiKvlTFD5iBw44Mg20vGaiQzJ6USupKsMe1E60zxnsKwAZwdggaF2hz8DSsC8t9B9fPI3y556kef81ND/wrjj0TAcMmvuNgtvV2YJr13mT8eAuVZKL+URidUfY6jQdsCGI3mQoIFkj0bqyHQ4cOaKGokJfwVimaFLDqSWztJemtyhg4vkUa9GGC4PX2dw2RjylUkjyvu/J4nUSZXY0cB0iC2Xlu1apcTdx2LbUzo91jWPoDWFPtPk5lgCDAgVaUptmtc13UIrm/OERgOU49BPmnNgTS2K70lZrrCVVJW8xFoYbbhnB/jzYAhGAPjMUAKLsnWUtRwY4q+J2C6NlkNdy32pfHYb6JJ6bO0lROpQjV6uCaIgJA89/4sI2SvOYcnE6Dl7JtOMb8njGkQu953BOU7P44ihOaNya4DvDxNqrA8jXFis1WaPIZ3YPQnLDwvpS6PY/oI9J66aCLtSnVy6dG45D5dFEGPoQL3uxPiVq1x1BcdvkbGI4jSuFsirPIQ9IcifjgN0pDc/8LnAUmKyAGFe2ZuZSua8sC1elv2bPQQ5sacz+hldAGGQM5z3xJPV+BJrSGLso9rh4t3SFg01pLO1ipy7fgpEAdk2CRdFxOuZhJrvL/ClTQ3IUhc/iupQWo7tQj3zGn4EJ0qJtprDmBnyOJFySnS/ED2S7y/zBHru4a6IWIapqmoc5wiqH5ZzCLQ==" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-5b48c03b-aafd-daf7-82cd-787239570ece?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "d58dc7c8-a60e-603d-5935-745cbdc7136c", - "x-ms-date": "Fri, 04 Jun 2021 19:06:13 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:12 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "d58dc7c8-a60e-603d-5935-745cbdc7136c", - "x-ms-request-id": "fefabbfb-701e-000f-7b74-59d0c5000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:34.8886958Z" }, - "ResponseBody": "test-blob-1179e3cb-15b5-07f8-aa2a-99ec5c4b4b632021-06-04T19:06:12.2657585ZtrueFri, 04 Jun 2021 19:06:12 GMTFri, 04 Jun 2021 19:06:12 GMT0x8D9278BD1C0F7311024application/octet-streamdfYlB8meynFxF2FKRvuLoA==BlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 19:11:13 GMTunlocked" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-5b48c03b-aafd-daf7-82cd-787239570ece/test-blob-1179e3cb-15b5-07f8-aa2a-99ec5c4b4b63?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-b488191f8b94d74fb395e6f214013a9a-3fe7f08364264d42-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c5ea8014-e4fc-8e33-a717-e89fceaaccd1", - "x-ms-date": "Fri, 04 Jun 2021 19:06:13 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:06:12 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "c5ea8014-e4fc-8e33-a717-e89fceaaccd1", - "x-ms-request-id": "fefabbfc-701e-000f-7c74-59d0c5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-5b48c03b-aafd-daf7-82cd-787239570ece/test-blob-1179e3cb-15b5-07f8-aa2a-99ec5c4b4b63", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-ce51a0973b829d46b0809b44a645573e-70457c22658be049-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "3d48d624-4ddd-1e70-89f8-6fc8d9b58463", - "x-ms-date": "Fri, 04 Jun 2021 19:06:13 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 19:06:12 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3d48d624-4ddd-1e70-89f8-6fc8d9b58463", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "fefabbfd-701e-000f-7d74-59d0c5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] + "ResponseBody": "y\u002BN5EbUV\u002BAeqKpnsXEtLY7zlLLtileRjhWJWChpIkcxr/AuZlW5fJshAsNMQCn42ghS1UytTazX/FotSv\u002B3sYpjNgGBAsc5OhQbzIeUQUnrkH4gFkz6hGJDVmn/iDGbaU047Qooe9dBGZs0kYElQ7sMRbp9l589aLGjPahdOa3ifGM2W1RDwxiq3vixwfLdGhau80Z7GdWx/4RUhToq5\u002BPtUhUd7uRmyIah1rSmi6bCwiOVrkZra2KNhFvP6znef/sUwG/Zwy8ySCrD2UMdC3PdlccalTWZgeqykGqIlt1Iw1q9jcc65QL0Z2Ifq5IjcHjr8lF2x\u002BrBe0KBKy7ApbVJdxXoX32oprDAIjHXfdpYkyPtoKCP1ftz\u002BBKEtbnQM72o1jB4NxD/P0\u002BgsqG07f1kKJgO1wEQvaEaeGdrJ\u002Bz28/JwKqel3FgO8mVU6yNVuw4RIIkhwVi8lBiTXb6tkBdeqcKzRMNVvkw8A\u002BSfv9J9wL1VVgdj1S6Vt5KPFn6dYV5N9j1gpnZKv2I84cF0HNhGEZj9VD4T/tSQHY0wyqvRnp6KTcmRHR5LDpqhJvNpHZa6RQDhoA0gOftozITlGfC6b0cm7dMStPR\u002BskWjctflKv/6eoGm7/6RZhPSKEyVZfSl5rusRjPDp5AMZu3HfMsjg6WI6qNvF39EkYfDQIir5UxQ\u002BYgcOODINtLxmokMyelErqSrDHtROtM8Z7CsAGcHYIGhdoc/A0rAvLfQfXzyN8ueepHn/NTQ/8K449EwHDJr7jYLb1dmCa9d5k/HgLlWSi/lEYnVH2Oo0HbAhiN5kKCBZI9G6sh0OHDmihqJCX8FYpmhSw6kls7SXprcoYOL5FGvRhguD19ncNkY8pVJI8r7vyeJ1EmV2NHAdIgtl5btWqXE3cdi21M6PdY1j6A1hT7T5OZYAgwIFWlKbZrXNd1CK5vzhEYDlOPQT5pzYE0tiu9JWa6wlVSVvMRaGG24Zwf482AIRgD4zFACi7J1lLUcGOKvidgujZZDXct9qXx2G\u002BiSemztJUTqUI1ergmiICQPPf\u002BLCNkrzmHJxOg5eybTjG/J4xpELvedwTlOz\u002BOIoTmjcmuA7w8TaqwPI1xYrNVmjyGd2D0Jyw8L6Uuj2P6CPSeumgi7Up1cunRuOQ\u002BXRRBj6EC97sT4latcdQXHb5GxiOI0rhbIqzyEPSHIn44DdKQ3P/C5wFJisgBhXtmbmUrmvLAtXpb9mz0EObGnM/oZXQBhkDOc98ST1fgSa0hi7KPa4eLd0hYNNaSztYqcu34KRAHZNgkXRcTrmYSa7y/wpU0NyFIXP4rqUFqO7UI98xp\u002BBCdKibaaw5gZ8jiRckp0vxA9ku8v8wR67uA==" } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T14:06:13.0116777-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:34.9644450-07:00", "RandomSeed": "417865496", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_Error.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_Error.json index debfef5edc578..abc349cbeb95c 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_Error.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_Error.json @@ -1,20 +1,17 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a045b86d-61dd-3ee1-ee6d-2365e542bfee/test-blob-f125856e-25b7-1b77-0d3f-246034983aca?comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-a045b86d-61dd-3ee1-ee6d-2365e542bfee?comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-f45d8601c90cc447a98ee857effa11fb-d09b3ec67d162849-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "a44a09ef-d575-48c1-4129-939e3c800955", - "x-ms-date": "Fri, 04 Jun 2021 19:05:27 GMT", + "traceparent": "00-a2137b9b6187f34daefbe942f6ad2146-db2974ebd006aa40-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "720d304b-79c3-2903-7ccb-cb31031d1df6", + "x-ms-date": "Wed, 11 Aug 2021 19:42:21 GMT", "x-ms-immutability-policy-mode": "Locked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:05:32 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:42:26 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -23,59 +20,25 @@ "ResponseHeaders": { "Content-Length": "216", "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:05:26 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "a44a09ef-d575-48c1-4129-939e3c800955", + "Date": "Wed, 11 Aug 2021 19:42:20 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "720d304b-79c3-2903-7ccb-cb31031d1df6", "x-ms-error-code": "BlobNotFound", - "x-ms-request-id": "8afc4584-a01e-001a-6574-59a2b5000000", + "x-ms-request-id": "b12263c8-d01e-004a-65e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [ - "\n", - "BlobNotFoundThe specified blob does not exist.\n", - "RequestId:8afc4584-a01e-001a-6574-59a2b5000000\n", - "Time:2021-06-04T19:05:26.8505915Z" + "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\n", + "\u003CError\u003E\u003CCode\u003EBlobNotFound\u003C/Code\u003E\u003CMessage\u003EThe specified blob does not exist.\n", + "RequestId:b12263c8-d01e-004a-65e9-8e693e000000\n", + "Time:2021-08-11T19:42:21.1140140Z\u003C/Message\u003E\u003C/Error\u003E" ] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a045b86d-61dd-3ee1-ee6d-2365e542bfee?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-361f4827d09e2846a52e2bfbbe266f6f-227d3657be459f45-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "2b712d22-964e-7655-6fc5-319ae665ecfb", - "x-ms-date": "Fri, 04 Jun 2021 19:05:27 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:05:26 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "2b712d22-964e-7655-6fc5-319ae665ecfb", - "x-ms-request-id": "8afc4585-a01e-001a-6674-59a2b5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "" } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T14:05:27.5308478-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:21.1029909-07:00", "RandomSeed": "1699357393", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_ErrorAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_ErrorAsync.json index 5f7518cec44bb..4bef26fedfc93 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_ErrorAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_ErrorAsync.json @@ -1,20 +1,17 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f0910db7-9595-79cb-4d3d-227d12d35615/test-blob-6c3edb9f-cedf-cd26-d528-7497ce6af41e?comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-f0910db7-9595-79cb-4d3d-227d12d35615?comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-0106a0981ad47f4e930360e57883d397-81f6791e80b26849-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8d965aee-e9ec-e946-e7c3-1a6d2134abe2", - "x-ms-date": "Fri, 04 Jun 2021 19:06:15 GMT", + "traceparent": "00-a8342cd165f5db4d85a9bc3a1f1e69af-a642a9caee2e614d-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5c461c2e-69ad-6a07-fb0a-4b7991ed6cb4", + "x-ms-date": "Wed, 11 Aug 2021 19:42:35 GMT", "x-ms-immutability-policy-mode": "Locked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:06:20 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:42:40 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -23,58 +20,25 @@ "ResponseHeaders": { "Content-Length": "216", "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:14 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "8d965aee-e9ec-e946-e7c3-1a6d2134abe2", + "Date": "Wed, 11 Aug 2021 19:42:34 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "5c461c2e-69ad-6a07-fb0a-4b7991ed6cb4", "x-ms-error-code": "BlobNotFound", - "x-ms-request-id": "fefabc14-701e-000f-0b74-59d0c5000000", + "x-ms-request-id": "b1229a17-d01e-004a-33e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [ - "\n", - "BlobNotFoundThe specified blob does not exist.\n", - "RequestId:fefabc14-701e-000f-0b74-59d0c5000000\n", - "Time:2021-06-04T19:06:14.7746753Z" + "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\n", + "\u003CError\u003E\u003CCode\u003EBlobNotFound\u003C/Code\u003E\u003CMessage\u003EThe specified blob does not exist.\n", + "RequestId:b1229a17-d01e-004a-33e9-8e693e000000\n", + "Time:2021-08-11T19:42:35.2821048Z\u003C/Message\u003E\u003C/Error\u003E" ] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f0910db7-9595-79cb-4d3d-227d12d35615?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "73a8bfbc-67d3-4431-d65c-74e94e9a48c7", - "x-ms-date": "Fri, 04 Jun 2021 19:06:15 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:14 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "73a8bfbc-67d3-4431-d65c-74e94e9a48c7", - "x-ms-request-id": "fefabc16-701e-000f-0d74-59d0c5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "" } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T14:06:15.4559794-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:35.2704472-07:00", "RandomSeed": "212019041", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_IfModifiedSince.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_IfModifiedSince.json index b4eb4b59a5be1..cfe69addc5123 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_IfModifiedSince.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_IfModifiedSince.json @@ -1,61 +1,52 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6e89d41c-25af-f2bb-3be7-f7b26e747abe/test-blob-f2bce271-f6d0-6892-019a-640b2ea4441f", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-6e89d41c-25af-f2bb-3be7-f7b26e747abe", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-24eb5db5fa8d1744a64fe4972365becb-fbdad71d8ca7af42-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-f9de6870e76d924a87a5119a5d3d6ee9-ebda36a6b6c94c42-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "67ad9d32-7316-eb88-5fbd-d6495d6877b5", - "x-ms-date": "Fri, 04 Jun 2021 19:05:29 GMT", + "x-ms-client-request-id": "1019b9f4-1028-4d5d-760a-ca625613cc89", + "x-ms-date": "Wed, 11 Aug 2021 19:42:21 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "nP+U33JnRzA7WaZ02Ub+ZUBAf7Ox/hYmQSFsFcGww5aj1xVu35pMCZuMt3ZPHo67m/7K7iWQbp7pbZ5R+jFvi5YP0QEwkIWl9HUXJUef1yOSsXrC5dVxEml2hXL8+w9qHSvgP0yNigt5JPqveUlXSZZ7vkm3rKXBnb6YuQsTqflmrQgbv5fWBCZvScDawpkgHzvbgTzFsnCGHqGO9dD/ZXsBSMtAO4n+pLkiSGLk5tskeJrPNyi8ofuXlaD1SA9Wb+NF2XrO3+Sx3NyCo2oNoTjGaX02MC1SRKbQqabpCVuqzNl/ngxgVpi2HVpLOv6QivNoL9+RID618pXT/jU9yNOB19eRjgIrZRLkgBPTBwqoPx+zgdl8Gauayat3jVhjeFSGymIm//vwPMnNrJ8q4uuKKr4WiUf5BL4r9sRWtNe6gQe+TD2ngT8jwkUQr2wMb+bA7GKZTO4MjcWk+wk2mYjxEyuYbJat46h/88cC6VVRH4bdlsd1IDUYsb94A4Y27Cm8HpxBcwNQEwm5GVknCqNwUtyCWAPBfPL1f7rXNd8iSQadRcq5EKuDjYO9uwbc8KcbB7Cps5Mm+6GpS/NJed0ql9BSisTYtkIx/8uAA8HrGY8Suy0ueZVyd0kpD8S3OROlkyQ2iWbiQlFud7TIpfjgvjJkN72v+x063xJ6r6d+ecW32nCdtY8oL3jcwAHhqtFRSFGRUgJW9ZgG/KlTZ5Op8P3uEMuHQgmiOwdE0zobWDVBKWZW7CfDYeTYlrjm1cflM88D85oGygVH7xb7ESJd6qN0Ej4sUgTWKq7mr6xQvGY/X59rGGWbO15hDvwQyFDBe6wVccKJuODLLMjrHxtZ9zOwu7GC8dI+2dffy0QHxmJeJTP/Okqjtqa/n+ucsBxDBxfJYAyePonZ15jrqe2cw2ZmjPnnWbzoDAULw1Lmoim7m8MtPmVVwOaqJWOyuA24I9yENiMiXK5a4VQHkns38jRuMA0qb4UBEMsTPTNZNVP4UqB2YmsFmT8V0lwQTi1rcjIuQ4j/jrNWgiZXDh96AawADkDawZDJaZfOFJwp8MGeqMoAKvHL+MTsH99FrYofm9GwED/tkLGiZdrxMXkXLZJluWZVeda6NRZ87qGwhLsMrnnKeOCBsBgYXsQX2sZK1fJN4PMkyiH69dopcaIP8eEe5IP/TLSy4wlNPBoRo1tPMRmvY6PH6ORY0IIGVz91CGzj+PVDS4g9m/zq1o0G6FJ+2j+JYI09Vvuep3wxq4vJ2DSuLqtlC+aQccin3RJXUecwh33/7KfepqH5pKMLC+9wIP5YWLqnGM5Z+O7FlXnpR1WVASQOyuuMz4cJa2ZChGbZNrwT/vgsiW6upg==", + "RequestBody": "ceK88tD2kmgBmmQLLqREH5z/lN9yZ0cwO1mmdNlG/mVAQH\u002Bzsf4WJkEhbBXBsMOWo9cVbt\u002BaTAmbjLd2Tx6Ou5v\u002Byu4lkG6e6W2eUfoxb4uWD9EBMJCFpfR1FyVHn9cjkrF6wuXVcRJpdoVy/PsPah0r4D9MjYoLeST6r3lJV0mWe75Jt6ylwZ2\u002BmLkLE6n5Zq0IG7\u002BX1gQmb0nA2sKZIB8724E8xbJwhh6hjvXQ/2V7AUjLQDuJ/qS5Ikhi5ObbJHiazzcovKH7l5Wg9UgPVm/jRdl6zt/ksdzcgqNqDaE4xml9NjAtUkSm0Kmm6QlbqszZf54MYFaYth1aSzr\u002BkIrzaC/fkSA\u002BtfKV0/41PcjTgdfXkY4CK2US5IAT0wcKqD8fs4HZfBmrmsmrd41YY3hUhspiJv/78DzJzayfKuLriiq\u002BFolH\u002BQS\u002BK/bEVrTXuoEHvkw9p4E/I8JFEK9sDG/mwOximUzuDI3FpPsJNpmI8RMrmGyWreOof/PHAulVUR\u002BG3ZbHdSA1GLG/eAOGNuwpvB6cQXMDUBMJuRlZJwqjcFLcglgDwXzy9X\u002B61zXfIkkGnUXKuRCrg42DvbsG3PCnGwewqbOTJvuhqUvzSXndKpfQUorE2LZCMf/LgAPB6xmPErstLnmVcndJKQ/EtzkTpZMkNolm4kJRbne0yKX44L4yZDe9r/sdOt8Seq\u002BnfnnFt9pwnbWPKC943MAB4arRUUhRkVICVvWYBvypU2eTqfD97hDLh0IJojsHRNM6G1g1QSlmVuwnw2Hk2Ja45tXH5TPPA/OaBsoFR\u002B8W\u002BxEiXeqjdBI\u002BLFIE1iqu5q\u002BsULxmP1\u002BfaxhlmzteYQ78EMhQwXusFXHCibjgyyzI6x8bWfczsLuxgvHSPtnX38tEB8ZiXiUz/zpKo7amv5/rnLAcQwcXyWAMnj6J2deY66ntnMNmZoz551m86AwFC8NS5qIpu5vDLT5lVcDmqiVjsrgNuCPchDYjIlyuWuFUB5J7N/I0bjANKm\u002BFARDLEz0zWTVT\u002BFKgdmJrBZk/FdJcEE4ta3IyLkOI/46zVoImVw4fegGsAA5A2sGQyWmXzhScKfDBnqjKACrxy/jE7B/fRa2KH5vRsBA/7ZCxomXa8TF5Fy2SZblmVXnWujUWfO6hsIS7DK55ynjggbAYGF7EF9rGStXyTeDzJMoh\u002BvXaKXGiD/HhHuSD/0y0suMJTTwaEaNbTzEZr2Ojx\u002BjkWNCCBlc/dQhs4/j1Q0uIPZv86taNBuhSfto/iWCNPVb7nqd8MauLydg0ri6rZQvmkHHIp90SV1HnMId9/\u002Byn3qah\u002BaSjCwvvcCD\u002BWFi6pxjOWfjuxZV56UdVlQEkDsrrjM\u002BHCQ==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "9383ZsKC+pdQqKMPKuNlAw==", - "Date": "Fri, 04 Jun 2021 19:05:28 GMT", - "ETag": "\"0x8D9278BB81A0731\"", - "Last-Modified": "Fri, 04 Jun 2021 19:05:29 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "67ad9d32-7316-eb88-5fbd-d6495d6877b5", - "x-ms-content-crc64": "5m9EKeJO95s=", - "x-ms-request-id": "8afc458a-a01e-001a-6874-59a2b5000000", + "Content-Length": "0", + "Content-MD5": "RL7xJEsn4MDmX79tpdV9eA==", + "Date": "Wed, 11 Aug 2021 19:42:20 GMT", + "ETag": "\u00220x8D95D0022AA87A3\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:21 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "1019b9f4-1028-4d5d-760a-ca625613cc89", + "x-ms-content-crc64": "q7ZWn7aLltU=", + "x-ms-request-id": "b122641a-d01e-004a-2be9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:05:29.2286769Z" + "x-ms-version-id": "2021-08-11T19:42:21.2620195Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6e89d41c-25af-f2bb-3be7-f7b26e747abe/test-blob-f2bce271-f6d0-6892-019a-640b2ea4441f?comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-6e89d41c-25af-f2bb-3be7-f7b26e747abe?comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "If-Unmodified-Since": "Sat, 05 Jun 2021 19:05:29 GMT", - "traceparent": "00-cf2a0273c9da2d429e372273d5cb0d8a-9c669db165d6424e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ebfa6f32-46c1-808f-312e-b16b3914f00d", - "x-ms-date": "Fri, 04 Jun 2021 19:05:29 GMT", + "If-Unmodified-Since": "Thu, 12 Aug 2021 19:42:21 GMT", + "traceparent": "00-3113f809e5db0a4eba11f001a2ff3f38-68b43c23aa636348-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d3f7235f-77b5-5be0-09f5-0e5b0ed46500", + "x-ms-date": "Wed, 11 Aug 2021 19:42:21 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:10:29 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:21 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -63,118 +54,21 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:05:28 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "ebfa6f32-46c1-808f-312e-b16b3914f00d", + "Date": "Wed, 11 Aug 2021 19:42:20 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "d3f7235f-77b5-5be0-09f5-0e5b0ed46500", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:10:29 GMT", - "x-ms-request-id": "8afc458d-a01e-001a-6974-59a2b5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6e89d41c-25af-f2bb-3be7-f7b26e747abe?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-a05ba7a7a6718b4e82c498a743a13181-b597a99c6c015140-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ed16d557-8c6e-18f4-9476-a287c57521f5", - "x-ms-date": "Fri, 04 Jun 2021 19:05:30 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:05:28 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "ed16d557-8c6e-18f4-9476-a287c57521f5", - "x-ms-request-id": "8afc458e-a01e-001a-6a74-59a2b5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-f2bce271-f6d0-6892-019a-640b2ea4441f2021-06-04T19:05:29.2286769ZtrueFri, 04 Jun 2021 19:05:29 GMTFri, 04 Jun 2021 19:05:29 GMT0x8D9278BB81A07311024application/octet-stream9383ZsKC+pdQqKMPKuNlAw==BlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 19:10:29 GMTunlocked" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6e89d41c-25af-f2bb-3be7-f7b26e747abe/test-blob-f2bce271-f6d0-6892-019a-640b2ea4441f?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-7d55d5c9f12b8242a28dbd8b44dba436-0c59c484c820984f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "64132651-03fd-069f-20ea-9fa5564cf547", - "x-ms-date": "Fri, 04 Jun 2021 19:05:30 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:05:28 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "64132651-03fd-069f-20ea-9fa5564cf547", - "x-ms-request-id": "8afc4590-a01e-001a-6b74-59a2b5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6e89d41c-25af-f2bb-3be7-f7b26e747abe/test-blob-f2bce271-f6d0-6892-019a-640b2ea4441f", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-e4a946a56e7edd4eaf63c4c2855a3da9-ee935e0f509b2446-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "9e359d5c-bd62-01f7-60c3-dae6933fe250", - "x-ms-date": "Fri, 04 Jun 2021 19:05:30 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 19:05:28 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9e359d5c-bd62-01f7-60c3-dae6933fe250", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "8afc4591-a01e-001a-6c74-59a2b5000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:21 GMT", + "x-ms-request-id": "b12264b9-d01e-004a-29e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T14:05:29.9743834-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:21.3239977-07:00", "RandomSeed": "1028247603", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_IfModifiedSinceAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_IfModifiedSinceAsync.json index 1e66f93bc6dc0..a14b4d2302415 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_IfModifiedSinceAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_IfModifiedSinceAsync.json @@ -1,61 +1,52 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6ee9e4f8-4e50-9053-e1cf-5b7bca589395/test-blob-88b6a428-b751-409f-9e1c-601a3fd95e61", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-6ee9e4f8-4e50-9053-e1cf-5b7bca589395", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-c6f9750363980540811cb64de35ffbe3-0357d84391254249-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-7505d88ead5e64419d06d032cce985c7-6574303e3985c342-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "f8ac5787-3808-8b85-5b03-29c22a62b563", - "x-ms-date": "Fri, 04 Jun 2021 19:06:17 GMT", + "x-ms-client-request-id": "784628c4-42ca-de64-e6d9-7b8725b5fc77", + "x-ms-date": "Wed, 11 Aug 2021 19:42:35 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "S/Yyec7rqJA40C+XHctW/3SHBmYnYhRBRKnPM+45UQdw+TDUJRnHPPsmT4CHCCLSxmGmt9P3Oujh8TUkG3Wh/38oJiSbgdpbwMlqABOUuTyH/WyNk5kzeL5H8zPjoiCFhE8AX+H9N0WHSvYJjTrVTDj5nR4JFGzm9K1lU46mdx6p5XvEk1paicUnBkiiKeuEcqb76gQBfHDiGmo0mOS24NLYYKi+EbnenxNZ4g0kQ8vC4eDoq40Zp2gK4XnvJvHhcCV1yslDxmHtHEvwqJpjvdefcbcDzjVFv7k/sy8/7nkid3HnrnkCfht/+45CKP7NpyOhULQ63qHwLwsPAxIxrS7SzjEoew9enPOcg9OmA5a6cQsLnp7E6JnQ9n5t8noITk1gcFnNpSwUQ7PBnlrOSix0VZIGJQ6QDeWXWISQ8Kp4kzWFRpM87czf9lrqA0o+AaxS+Z3oASg+z2J0NUynhFIJSAolSASZN2jFJy+0pQmbWVbYPvYNj5ENRnYwyLd/N3IH4bo/GbmouMI1Itr4iipY2Nz1z0Zc/Ll5FwGNaW6wRu+8rMRPXD+dMIU012y3FLtM1/DaiWgrq+UBxgG3Gk5ThNzqPN5lCXucV5/AJyRMwgJFQZF91byGkQDfTZY95hU24FOPzNjd5s10PjHJaoPBtQP/cdm81a4gY6vdhrzlX3GJikfQvPUqaFvECZeKvSZ9HZeSPnU8eQqkb2gt/18Rj9/AQOA88PkO1Ah9+MwXlqaEYGgkUyD7TBA8K02N/Gj7snm4yX1FQS2ehGlsvoE+jdjBqJ/37Du+xPPQ/8SrgNeggkVSXs0pPx87hc62j46O/p50y1TIA8Y++gSJdEFo8wORzDs76y4LmGmAvGZtBzVkQQAmNrWD135/FGTIn8rd0pLLJMNSUxNvaTLqSEdf0PLPJDJAQrxODvS9vNbKQ/meounUoeNyEu7tts2CmI43IENy+XqYnI/WfBbOlZY8pSY5TKVdii8PXBJDU4zvzHVlhZyTV0l+BgZa/iXMpH1XsRCmSEzp2ZUUY5xoVEkC56+gaA/6qU3cu0afA4wJQriV66J8SIQpfKsHfvStFrG8Vxd1KzttXQjCyowFSdYICiDj0minhp4rd+tj8ypZLqSU46t1lBZ9KI6ZuX33IzPV/nPTyUNJFdB4SbRPCWndaZvncGUrknYKZqrZDc0gM1O4jvW2hWVhS83a/UpiLR4kvFDiD7LNqWv9yWOZbwcDVxZgl3p0JuM2hiWXUJUspzmLtVB8PiSg6uWJubwCyNvF1qY0AZaksJVtrImNNljW0SEpDbq3hhjyv6yV620mM75K0Xrv96Wi5wW6D5GbE7SMs+ia2LogDk+NQkLpDg==", + "RequestBody": "KKS2iFG3n0CeHGAaP9leYUv2MnnO66iQONAvlx3LVv90hwZmJ2IUQUSpzzPuOVEHcPkw1CUZxzz7Jk\u002BAhwgi0sZhprfT9zro4fE1JBt1of9/KCYkm4HaW8DJagATlLk8h/1sjZOZM3i\u002BR/Mz46IghYRPAF/h/TdFh0r2CY061Uw4\u002BZ0eCRRs5vStZVOOpnceqeV7xJNaWonFJwZIoinrhHKm\u002B\u002BoEAXxw4hpqNJjktuDS2GCovhG53p8TWeINJEPLwuHg6KuNGadoCuF57ybx4XAldcrJQ8Zh7RxL8KiaY73Xn3G3A841Rb\u002B5P7MvP\u002B55Indx5655An4bf/uOQij\u002BzacjoVC0Ot6h8C8LDwMSMa0u0s4xKHsPXpzznIPTpgOWunELC56exOiZ0PZ\u002BbfJ6CE5NYHBZzaUsFEOzwZ5azkosdFWSBiUOkA3ll1iEkPCqeJM1hUaTPO3M3/Za6gNKPgGsUvmd6AEoPs9idDVMp4RSCUgKJUgEmTdoxScvtKUJm1lW2D72DY\u002BRDUZ2MMi3fzdyB\u002BG6Pxm5qLjCNSLa\u002BIoqWNjc9c9GXPy5eRcBjWlusEbvvKzET1w/nTCFNNdstxS7TNfw2oloK6vlAcYBtxpOU4Tc6jzeZQl7nFefwCckTMICRUGRfdW8hpEA302WPeYVNuBTj8zY3ebNdD4xyWqDwbUD/3HZvNWuIGOr3Ya85V9xiYpH0Lz1KmhbxAmXir0mfR2Xkj51PHkKpG9oLf9fEY/fwEDgPPD5DtQIffjMF5amhGBoJFMg\u002B0wQPCtNjfxo\u002B7J5uMl9RUEtnoRpbL6BPo3Ywaif9\u002Bw7vsTz0P/Eq4DXoIJFUl7NKT8fO4XOto\u002BOjv6edMtUyAPGPvoEiXRBaPMDkcw7O\u002BsuC5hpgLxmbQc1ZEEAJja1g9d\u002BfxRkyJ/K3dKSyyTDUlMTb2ky6khHX9DyzyQyQEK8Tg70vbzWykP5nqLp1KHjchLu7bbNgpiONyBDcvl6mJyP1nwWzpWWPKUmOUylXYovD1wSQ1OM78x1ZYWck1dJfgYGWv4lzKR9V7EQpkhM6dmVFGOcaFRJAuevoGgP\u002BqlN3LtGnwOMCUK4leuifEiEKXyrB370rRaxvFcXdSs7bV0IwsqMBUnWCAog49Jop4aeK3frY/MqWS6klOOrdZQWfSiOmbl99yMz1f5z08lDSRXQeEm0Twlp3Wmb53BlK5J2Cmaq2Q3NIDNTuI71toVlYUvN2v1KYi0eJLxQ4g\u002Byzalr/cljmW8HA1cWYJd6dCbjNoYll1CVLKc5i7VQfD4koOrlibm8AsjbxdamNAGWpLCVbayJjTZY1tEhKQ26t4YY8r\u002BslettJjO\u002BStF67/eloucFug\u002BRmw==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "Ki5OaAxJdVk6S0ufX6vOOg==", - "Date": "Fri, 04 Jun 2021 19:06:16 GMT", - "ETag": "\"0x8D9278BD4568243\"", - "Last-Modified": "Fri, 04 Jun 2021 19:06:16 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "f8ac5787-3808-8b85-5b03-29c22a62b563", - "x-ms-content-crc64": "yS2oBLvJqhA=", - "x-ms-request-id": "fefabc25-701e-000f-1874-59d0c5000000", + "Content-Length": "0", + "Content-MD5": "Z1lZ6yxPXo09QajVAaPxoA==", + "Date": "Wed, 11 Aug 2021 19:42:34 GMT", + "ETag": "\u00220x8D95D002B1EFFF2\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:35 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "784628c4-42ca-de64-e6d9-7b8725b5fc77", + "x-ms-content-crc64": "d2pPs79iM74=", + "x-ms-request-id": "b1229a5d-d01e-004a-73e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:06:16.6012483Z" + "x-ms-version-id": "2021-08-11T19:42:35.4470898Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6ee9e4f8-4e50-9053-e1cf-5b7bca589395/test-blob-88b6a428-b751-409f-9e1c-601a3fd95e61?comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-6ee9e4f8-4e50-9053-e1cf-5b7bca589395?comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "If-Unmodified-Since": "Sat, 05 Jun 2021 19:06:17 GMT", - "traceparent": "00-f43f34945cd0fc458b09ee5342f4355a-1792ad6b33d76944-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ea06d812-f095-8c05-a3ba-1cc619a1b384", - "x-ms-date": "Fri, 04 Jun 2021 19:06:17 GMT", + "If-Unmodified-Since": "Thu, 12 Aug 2021 19:42:35 GMT", + "traceparent": "00-88dc825c8a94884d9e649584c6d02f81-a2a1f9b284524e46-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9240d8b9-19c9-d0d0-50ae-cc0e1e51956b", + "x-ms-date": "Wed, 11 Aug 2021 19:42:35 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:11:17 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:35 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -63,117 +54,21 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:06:16 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "ea06d812-f095-8c05-a3ba-1cc619a1b384", + "Date": "Wed, 11 Aug 2021 19:42:34 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "9240d8b9-19c9-d0d0-50ae-cc0e1e51956b", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:11:17 GMT", - "x-ms-request-id": "fefabc26-701e-000f-1974-59d0c5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6ee9e4f8-4e50-9053-e1cf-5b7bca589395?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "51b0be6d-cb5c-c8ce-d2b3-ee0ffc09b7ae", - "x-ms-date": "Fri, 04 Jun 2021 19:06:17 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:16 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "51b0be6d-cb5c-c8ce-d2b3-ee0ffc09b7ae", - "x-ms-request-id": "fefabc27-701e-000f-1a74-59d0c5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-88b6a428-b751-409f-9e1c-601a3fd95e612021-06-04T19:06:16.6012483ZtrueFri, 04 Jun 2021 19:06:16 GMTFri, 04 Jun 2021 19:06:16 GMT0x8D9278BD45682431024application/octet-streamKi5OaAxJdVk6S0ufX6vOOg==BlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 19:11:17 GMTunlocked" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6ee9e4f8-4e50-9053-e1cf-5b7bca589395/test-blob-88b6a428-b751-409f-9e1c-601a3fd95e61?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-d25461416eed094b946967144c539d36-d1ee5cc2d704e947-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "5b58124d-62f1-5828-4a04-79c17b9e717c", - "x-ms-date": "Fri, 04 Jun 2021 19:06:17 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:06:16 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "5b58124d-62f1-5828-4a04-79c17b9e717c", - "x-ms-request-id": "fefabc29-701e-000f-1b74-59d0c5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6ee9e4f8-4e50-9053-e1cf-5b7bca589395/test-blob-88b6a428-b751-409f-9e1c-601a3fd95e61", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-613aa56e18094a49aa537bc51e67d45c-3f9ef6d1cd9bb441-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "eac1c192-5cb0-97bd-2092-bc7ecf342d8c", - "x-ms-date": "Fri, 04 Jun 2021 19:06:17 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 19:06:16 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "eac1c192-5cb0-97bd-2092-bc7ecf342d8c", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "fefabc2b-701e-000f-1d74-59d0c5000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:35 GMT", + "x-ms-request-id": "b1229ae5-d01e-004a-62e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T14:06:17.346676-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:35.5094436-07:00", "RandomSeed": "635204753", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_IfModifiedSince_Failed.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_IfModifiedSince_Failed.json index f4428bf0aad95..7ed1778a34de7 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_IfModifiedSince_Failed.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_IfModifiedSince_Failed.json @@ -1,61 +1,52 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-20837971-ce7d-314a-6ab8-eab2982bd27a/test-blob-7d7014ce-3f25-0c56-9e78-31ab9d6d9427", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-20837971-ce7d-314a-6ab8-eab2982bd27a", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-e905882874bee94da2f7cdd16289c63b-b74f5e7c7a2fae44-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-802c05381e80774aa7fa8327c88fe218-083f84ef78506841-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "5c581981-769b-a0bc-cfb1-dcf6c94c3bcb", - "x-ms-date": "Fri, 04 Jun 2021 19:05:32 GMT", + "x-ms-client-request-id": "0c53b99a-70df-ea72-a2ac-1588b3b2f64d", + "x-ms-date": "Wed, 11 Aug 2021 19:42:21 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "Nnj/2CaJnXbv4el1YKYT/wKhQTaEsf8xIneCBJyelP0kwnwgLPpTRHb5jkNW4Kz3ZDGo+ytdooV5zrWvB5nZUE3sUZ0q89MITvzAiyO720LKi59r9pnRxiD2pl1Eoz3dHz32aY4PzXFen6wunRdivfNz5Hz5blq0G4t9M0x1xKu+42vlxXGzu70tDFbsoigIlOlq0L7B47HjQk4Dkpol6NsBb7qsfPiBvym+y2EDx3hidJ5jC/Ps/f+5AoMjrykjCCR76jJuXBfw6BCVAxhQ33rVoR77wtznFXK68np1Xg//msM9iNxF8xeGciPiV/rnaSIJTQ4LJ0ZHk9XAs2qde4kAlWhVE1edkK0GdU+5BL1404hXbBAB9HN89fQHhECs6faZ4cGRklbLa71gBLL2jo4XR+DhRQ95/6H12B1ilgttWoxYHyP85kAyiwBToO/Ahmdl7zxfyqPnIOIgnLo4adWx86omnW5rG2Gfr7oPJV6xNFK2/KbODY/ocf9A3EmG+SIqoa1Fmej4+dPbvxro2PqDbmhogmwu4uUaPSxuKz8XGbaX5IOxbJppvQPS8010AJgFvW7hHna2+7/HKly8is6Uw6ZkUfR20QHN/sVoW++XpT2TaW7RNvtA4OjE6kI+rTM0Pi+nEK6kjutsEx+xTZ/PL4QeKCBgw42rJHELsee/jlGSMx3A8JSP79qCZCLbjpJI9bq9IIUS1Hqh++w9mN0ErYXOHxmCDj7vjzhF3V5rz5Xew7wsAW7Mf1+jHvSoUlb9fbecDW94xuZ8zZFMzPYbNitXXtQh2KsXAp+63/BKRzzhSGCnzsIlZf3VsDTcgLJph+fJUPOC3KUMhQvPvuf2MoVUaoSWc2hpMfnXSyh2OoHtUVcIgPZJX2y6m0i3VacW3n2uiBYt0hN/YB76qpB9lUuJ4m2P7rGPCgoY29ggsdxRwW2qx7Frv35EiSDXT7XcPQb8LnM6hvDMH30LFfY7Xq5CqOki0s2ZHSLuS2WQt7tUO57RI4NpFzp93ac0X6mHCCpylabMuWo4YxBQSzuLPGjBt9lXaToq2ZGupfUlZb14ZkI6HSIViII0mcByGMv+8aA/cqjQL5/vR7wVHRN0E/1S2OT5UB9GrC9XI9B5uMDFsLNU5vMVqDaiStZl/2puwIbDIEDmBaGB+cV5eAzPdo/7UG1gHy0KPS+uVgZJ4K3F6GNJtpd/3qoS0+wtnDAq09RGaa/8DqBZuOIROK6bOBgYs4+phb/3fHLDTUxA3KH/g4MxAnb+yNrD8P21bqX7dpvTFeiggE4VTu08OcBTGNxBEbUraTWiGeu15pTBQg7Mx9axbMe4XgI1HLOJwY8Zb9ghc1zw0A1lMfv96w==", + "RequestBody": "zhRwfSU/VgyeeDGrnW2UJzZ4/9gmiZ127\u002BHpdWCmE/8CoUE2hLH/MSJ3ggScnpT9JMJ8ICz6U0R2\u002BY5DVuCs92QxqPsrXaKFec61rweZ2VBN7FGdKvPTCE78wIsju9tCyoufa/aZ0cYg9qZdRKM93R899mmOD81xXp\u002BsLp0XYr3zc\u002BR8\u002BW5atBuLfTNMdcSrvuNr5cVxs7u9LQxW7KIoCJTpatC\u002BweOx40JOA5KaJejbAW\u002B6rHz4gb8pvsthA8d4YnSeYwvz7P3/uQKDI68pIwgke\u002BoyblwX8OgQlQMYUN961aEe\u002B8Lc5xVyuvJ6dV4P/5rDPYjcRfMXhnIj4lf652kiCU0OCydGR5PVwLNqnXuJAJVoVRNXnZCtBnVPuQS9eNOIV2wQAfRzfPX0B4RArOn2meHBkZJWy2u9YASy9o6OF0fg4UUPef\u002Bh9dgdYpYLbVqMWB8j/OZAMosAU6DvwIZnZe88X8qj5yDiIJy6OGnVsfOqJp1uaxthn6\u002B6DyVesTRStvymzg2P6HH/QNxJhvkiKqGtRZno\u002BPnT278a6Nj6g25oaIJsLuLlGj0sbis/Fxm2l\u002BSDsWyaab0D0vNNdACYBb1u4R52tvu/xypcvIrOlMOmZFH0dtEBzf7FaFvvl6U9k2lu0Tb7QODoxOpCPq0zND4vpxCupI7rbBMfsU2fzy\u002BEHiggYMONqyRxC7Hnv45RkjMdwPCUj\u002B/agmQi246SSPW6vSCFEtR6ofvsPZjdBK2Fzh8Zgg4\u002B7484Rd1ea8\u002BV3sO8LAFuzH9fox70qFJW/X23nA1veMbmfM2RTMz2GzYrV17UIdirFwKfut/wSkc84Uhgp87CJWX91bA03ICyaYfnyVDzgtylDIULz77n9jKFVGqElnNoaTH510sodjqB7VFXCID2SV9suptIt1WnFt59rogWLdITf2Ae\u002BqqQfZVLieJtj\u002B6xjwoKGNvYILHcUcFtqsexa79\u002BRIkg10\u002B13D0G/C5zOobwzB99CxX2O16uQqjpItLNmR0i7ktlkLe7VDue0SODaRc6fd2nNF\u002BphwgqcpWmzLlqOGMQUEs7izxowbfZV2k6KtmRrqX1JWW9eGZCOh0iFYiCNJnAchjL/vGgP3Ko0C\u002Bf70e8FR0TdBP9Utjk\u002BVAfRqwvVyPQebjAxbCzVObzFag2okrWZf9qbsCGwyBA5gWhgfnFeXgMz3aP\u002B1BtYB8tCj0vrlYGSeCtxehjSbaXf96qEtPsLZwwKtPURmmv/A6gWbjiETiumzgYGLOPqYW/93xyw01MQNyh/4ODMQJ2/sjaw/D9tW6l\u002B3ab0xXooIBOFU7tPDnAUxjcQRG1K2k1ohnrteaUwUIOzMfWsWzHuF4CNRyziQ==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "hkuA2m3rFb9LE1eOp02pbw==", - "Date": "Fri, 04 Jun 2021 19:05:31 GMT", - "ETag": "\"0x8D9278BB9A79839\"", - "Last-Modified": "Fri, 04 Jun 2021 19:05:31 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "5c581981-769b-a0bc-cfb1-dcf6c94c3bcb", - "x-ms-content-crc64": "1B8QJWGhyt8=", - "x-ms-request-id": "8afc4593-a01e-001a-6d74-59a2b5000000", + "Content-Length": "0", + "Content-MD5": "9mzy30fwLr/TTWymetiCfw==", + "Date": "Wed, 11 Aug 2021 19:42:20 GMT", + "ETag": "\u00220x8D95D0022D4857B\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:21 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "0c53b99a-70df-ea72-a2ac-1588b3b2f64d", + "x-ms-content-crc64": "rp0b0jSN\u002BYk=", + "x-ms-request-id": "b1226504-d01e-004a-68e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:05:31.8341689Z" + "x-ms-version-id": "2021-08-11T19:42:21.5372155Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-20837971-ce7d-314a-6ab8-eab2982bd27a/test-blob-7d7014ce-3f25-0c56-9e78-31ab9d6d9427?comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-20837971-ce7d-314a-6ab8-eab2982bd27a?comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "If-Unmodified-Since": "Thu, 03 Jun 2021 19:05:32 GMT", - "traceparent": "00-510efa5244aec444b61ae35b08fb5cd3-760420a0f7fce941-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "18e3bfd9-a1a3-2350-fdb3-3d2d937b2056", - "x-ms-date": "Fri, 04 Jun 2021 19:05:32 GMT", + "If-Unmodified-Since": "Tue, 10 Aug 2021 19:42:21 GMT", + "traceparent": "00-1b20c382cdfb7445a7b9c7b69525273e-68a5338763a1024d-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7b6872bb-a7c8-51a9-1d2f-cd2b0ceaa83e", + "x-ms-date": "Wed, 11 Aug 2021 19:42:21 GMT", "x-ms-immutability-policy-mode": "Locked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:05:33 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:42:22 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -64,91 +55,25 @@ "ResponseHeaders": { "Content-Length": "253", "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:05:31 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "18e3bfd9-a1a3-2350-fdb3-3d2d937b2056", + "Date": "Wed, 11 Aug 2021 19:42:21 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "7b6872bb-a7c8-51a9-1d2f-cd2b0ceaa83e", "x-ms-error-code": "ConditionNotMet", - "x-ms-request-id": "8afc4594-a01e-001a-6e74-59a2b5000000", + "x-ms-request-id": "b122657a-d01e-004a-45e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [ - "\n", - "ConditionNotMetThe condition specified using HTTP conditional header(s) is not met.\n", - "RequestId:8afc4594-a01e-001a-6e74-59a2b5000000\n", - "Time:2021-06-04T19:05:31.8997936Z" + "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\n", + "\u003CError\u003E\u003CCode\u003EConditionNotMet\u003C/Code\u003E\u003CMessage\u003EThe condition specified using HTTP conditional header(s) is not met.\n", + "RequestId:b122657a-d01e-004a-45e9-8e693e000000\n", + "Time:2021-08-11T19:42:21.6093670Z\u003C/Message\u003E\u003C/Error\u003E" ] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-20837971-ce7d-314a-6ab8-eab2982bd27a?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-fc24f935a969a14b82bf54e5d43b0c10-11a88bdd219bd443-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "091d9e08-2268-1a28-2244-7e15697cbda1", - "x-ms-date": "Fri, 04 Jun 2021 19:05:32 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:05:31 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "091d9e08-2268-1a28-2244-7e15697cbda1", - "x-ms-request-id": "8afc4599-a01e-001a-7374-59a2b5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-7d7014ce-3f25-0c56-9e78-31ab9d6d94272021-06-04T19:05:31.8341689ZtrueFri, 04 Jun 2021 19:05:31 GMTFri, 04 Jun 2021 19:05:31 GMT0x8D9278BB9A798391024application/octet-streamhkuA2m3rFb9LE1eOp02pbw==BlockBlobHottrueunlockedavailabletrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-20837971-ce7d-314a-6ab8-eab2982bd27a/test-blob-7d7014ce-3f25-0c56-9e78-31ab9d6d9427", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-213601cc20e4d24091d2556658e80296-ae92d5eb170cda41-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "f524581f-165e-4eed-21b2-1d05fc6f70f3", - "x-ms-date": "Fri, 04 Jun 2021 19:05:32 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 19:05:31 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "f524581f-165e-4eed-21b2-1d05fc6f70f3", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "8afc459b-a01e-001a-7474-59a2b5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T14:05:32.5797842-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:21.5979877-07:00", "RandomSeed": "2115828966", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_IfModifiedSince_FailedAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_IfModifiedSince_FailedAsync.json index 9134f44267dde..4d3d0ab55a0ae 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_IfModifiedSince_FailedAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_IfModifiedSince_FailedAsync.json @@ -1,61 +1,52 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-08b5d4a4-2ccc-978e-1000-1242e0153972/test-blob-6c3092d6-2450-cf5f-b6f5-808ccaea371f", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-08b5d4a4-2ccc-978e-1000-1242e0153972", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-192e33543504584ba577f6ec688f758f-9a54b7a9cc09d340-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-10aa662ec71e0f4b8efaff92c7ad07b9-c149ca9395304e4a-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "5a8e8215-b9c2-6132-c34e-e4e87efbcad8", - "x-ms-date": "Fri, 04 Jun 2021 19:06:19 GMT", + "x-ms-client-request-id": "52af6ce2-45cd-fa00-2ace-efb57d3155ba", + "x-ms-date": "Wed, 11 Aug 2021 19:42:35 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "7o+Uvkx26QFVP5KzVT6RxWkwkGWuSIF/dOVR1qsBzCXI8lNRgXolYKguFxGRrHp3ZLoimlnScaUOFEpnJBNWU3Js62LrP0TuCi+8gDBw7shr2nLw3zLL9oGtQ2wwvjuV18SeJcAYjCR2M48qFfF0niaC+0qgZXNAoPXhPfzYvkz0J6hs0sgHU05NequioeCPOKVFrcLx9HJQXYTLNk4onXRDNu1JCMxdeqj8UuvInf4UUgRWkxCJAjI1G3REOxz/Jdw2X2vyRTDZ5zIa9KGGiMCGt+RJ0QpkujO7E+xXGT+M/CwPkT6SIQzUfavdbw2Rr5O0voM3tlTR0qQ4NzJDgc3zjvh0d/aB85bYdVNehkslKWRZo1u7VEbYPb6ZWunZkPve6uEVHDicMsvtX0EAckxZEw3O6t5yNzmynDk355is/uRYgJtqDw0rvHCQzvQE18pyQEfcC6YcbLKnY3/+ZEsyQWBcqPKw7wMAoi1u4WlFrcVuxadR0PI+OxTowquOLVgkXYyUpy7YwVBD22l5ropJYra5kJ+k4XFtHm3dyCxXcXXVSYPcsQWXlQNWDfSJxYyKn2D11Jy4gHwbJojB+/kk62r0o2UGbLGwIvqbTdN85FngUyjLYZ3YHMgHwYp81poKMSGKlSEngzOvRbGhHTKpnkIv4KjRWInMG4ec/6smM0xgkRyx8k44uc/1HBzsNv+VXSJITfXxOdmXvXqZioSIiRJkQYwW96vz9ibZ2zxt4OSIB6GI3eVXb1dCGTXUni9LbZMKh/VzfmZ3VVbOGF2dKt2VEYPi/6ssDdI00912H1j3jm6pY1nvFYg6EIiOiFb5pe9XPoysaG3n3nkjPquIADX+14rv88eEpvz6p+4inYV7Oi7uHuDLSyUAwYXfy9bdshBTkLDMCrEn05iQscB+xEDzpwR8meFUMoxk7jJCpNolHfXezwzVry98xktIO5plgvxE6yPSYBgu/l4kZxx/5S6+apPKn/Q0HvjUANOWDPfy/ms1/bm2U73dsNGusEcT/OEcidEGmuIIEM0r/l9Fl/FmMmmwSud1BxbW7e8jhW2xwAPxeYIl62OJLe3silVdlxjgR37eY7L5p4K6MK3y5Ypfej1cUx5uQEYFJx36iXzBeFXXQj3v0l1R+NIAa7q2lkdijBAXAUT6cQY32TuV/h0F+bhXG6JMcKfgClpLbdWMT5HVmPxsqXcR3NA3t/khvPm0+3ICXnqlFRxpN/bprgQxq4qqv2YhmE9BRj7RFbmtvk5glnJiifAWMILgAnGAKC3MBQtvdvyTk2IjwRg70/9ju3mniBiRziKZlI/kQJXdwB0QBA+tPkdSzQMPP8jX2lyCfEf42J8VOjfo1Q==", + "RequestBody": "1pIwbFAkX8\u002B29YCMyuo3H\u002B6PlL5MdukBVT\u002BSs1U\u002BkcVpMJBlrkiBf3TlUdarAcwlyPJTUYF6JWCoLhcRkax6d2S6IppZ0nGlDhRKZyQTVlNybOti6z9E7govvIAwcO7Ia9py8N8yy/aBrUNsML47ldfEniXAGIwkdjOPKhXxdJ4mgvtKoGVzQKD14T382L5M9CeobNLIB1NOTXqroqHgjzilRa3C8fRyUF2EyzZOKJ10QzbtSQjMXXqo/FLryJ3\u002BFFIEVpMQiQIyNRt0RDsc/yXcNl9r8kUw2ecyGvShhojAhrfkSdEKZLozuxPsVxk/jPwsD5E\u002BkiEM1H2r3W8Nka\u002BTtL6DN7ZU0dKkODcyQ4HN8474dHf2gfOW2HVTXoZLJSlkWaNbu1RG2D2\u002BmVrp2ZD73urhFRw4nDLL7V9BAHJMWRMNzurecjc5spw5N\u002BeYrP7kWICbag8NK7xwkM70BNfKckBH3AumHGyyp2N//mRLMkFgXKjysO8DAKItbuFpRa3FbsWnUdDyPjsU6MKrji1YJF2MlKcu2MFQQ9tpea6KSWK2uZCfpOFxbR5t3cgsV3F11UmD3LEFl5UDVg30icWMip9g9dScuIB8GyaIwfv5JOtq9KNlBmyxsCL6m03TfORZ4FMoy2Gd2BzIB8GKfNaaCjEhipUhJ4Mzr0WxoR0yqZ5CL\u002BCo0ViJzBuHnP\u002BrJjNMYJEcsfJOOLnP9Rwc7Db/lV0iSE318TnZl716mYqEiIkSZEGMFver8/Ym2ds8beDkiAehiN3lV29XQhk11J4vS22TCof1c35md1VWzhhdnSrdlRGD4v\u002BrLA3SNNPddh9Y945uqWNZ7xWIOhCIjohW\u002BaXvVz6MrGht5955Iz6riAA1/teK7/PHhKb8\u002BqfuIp2Fezou7h7gy0slAMGF38vW3bIQU5CwzAqxJ9OYkLHAfsRA86cEfJnhVDKMZO4yQqTaJR313s8M1a8vfMZLSDuaZYL8ROsj0mAYLv5eJGccf\u002BUuvmqTyp/0NB741ADTlgz38v5rNf25tlO93bDRrrBHE/zhHInRBpriCBDNK/5fRZfxZjJpsErndQcW1u3vI4VtscAD8XmCJetjiS3t7IpVXZcY4Ed\u002B3mOy\u002BaeCujCt8uWKX3o9XFMebkBGBScd\u002Bol8wXhV10I979JdUfjSAGu6tpZHYowQFwFE\u002BnEGN9k7lf4dBfm4VxuiTHCn4ApaS23VjE\u002BR1Zj8bKl3EdzQN7f5Ibz5tPtyAl56pRUcaTf26a4EMauKqr9mIZhPQUY\u002B0RW5rb5OYJZyYonwFjCC4AJxgCgtzAULb3b8k5NiI8EYO9P/Y7t5p4gYkc4imZSP5ECV3cAdEAQPrT5HUs0DDw==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "Qp0WRnDQ/su/rXvVNb9xvw==", - "Date": "Fri, 04 Jun 2021 19:06:17 GMT", - "ETag": "\"0x8D9278BD56FDEDD\"", - "Last-Modified": "Fri, 04 Jun 2021 19:06:18 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "5a8e8215-b9c2-6132-c34e-e4e87efbcad8", - "x-ms-content-crc64": "LPnIzpE33kw=", - "x-ms-request-id": "fefabc35-701e-000f-2674-59d0c5000000", + "Content-Length": "0", + "Content-MD5": "MF6sWqtQbKdMEXu1/EEdxw==", + "Date": "Wed, 11 Aug 2021 19:42:35 GMT", + "ETag": "\u00220x8D95D002B410D1C\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:35 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "52af6ce2-45cd-fa00-2ace-efb57d3155ba", + "x-ms-content-crc64": "/XqRjrjqBJo=", + "x-ms-request-id": "b1229b2d-d01e-004a-1ae9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:06:18.4451805Z" + "x-ms-version-id": "2021-08-11T19:42:35.6702492Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-08b5d4a4-2ccc-978e-1000-1242e0153972/test-blob-6c3092d6-2450-cf5f-b6f5-808ccaea371f?comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-08b5d4a4-2ccc-978e-1000-1242e0153972?comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "If-Unmodified-Since": "Thu, 03 Jun 2021 19:06:19 GMT", - "traceparent": "00-38108227ddafd3418422833babdf9d3e-6b965648db1e994b-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "b700e582-8ea8-2813-394d-8e7e60187c2f", - "x-ms-date": "Fri, 04 Jun 2021 19:06:19 GMT", + "If-Unmodified-Since": "Tue, 10 Aug 2021 19:42:35 GMT", + "traceparent": "00-37880d9220fbf049af716e44089f62c9-75a9a97868803c43-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e56568c5-b01e-f942-c7dc-b08e92c7cac6", + "x-ms-date": "Wed, 11 Aug 2021 19:42:35 GMT", "x-ms-immutability-policy-mode": "Locked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:06:20 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:42:36 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -64,90 +55,25 @@ "ResponseHeaders": { "Content-Length": "253", "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:17 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "b700e582-8ea8-2813-394d-8e7e60187c2f", + "Date": "Wed, 11 Aug 2021 19:42:35 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "e56568c5-b01e-f942-c7dc-b08e92c7cac6", "x-ms-error-code": "ConditionNotMet", - "x-ms-request-id": "fefabc36-701e-000f-2774-59d0c5000000", + "x-ms-request-id": "b1229ba8-d01e-004a-01e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [ - "\n", - "ConditionNotMetThe condition specified using HTTP conditional header(s) is not met.\n", - "RequestId:fefabc36-701e-000f-2774-59d0c5000000\n", - "Time:2021-06-04T19:06:18.5185065Z" + "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\n", + "\u003CError\u003E\u003CCode\u003EConditionNotMet\u003C/Code\u003E\u003CMessage\u003EThe condition specified using HTTP conditional header(s) is not met.\n", + "RequestId:b1229ba8-d01e-004a-01e9-8e693e000000\n", + "Time:2021-08-11T19:42:35.7424317Z\u003C/Message\u003E\u003C/Error\u003E" ] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-08b5d4a4-2ccc-978e-1000-1242e0153972?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "99651e84-12fa-362f-543c-abd021c399af", - "x-ms-date": "Fri, 04 Jun 2021 19:06:19 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:17 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "99651e84-12fa-362f-543c-abd021c399af", - "x-ms-request-id": "fefabc38-701e-000f-2874-59d0c5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-6c3092d6-2450-cf5f-b6f5-808ccaea371f2021-06-04T19:06:18.4451805ZtrueFri, 04 Jun 2021 19:06:18 GMTFri, 04 Jun 2021 19:06:18 GMT0x8D9278BD56FDEDD1024application/octet-streamQp0WRnDQ/su/rXvVNb9xvw==BlockBlobHottrueunlockedavailabletrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-08b5d4a4-2ccc-978e-1000-1242e0153972/test-blob-6c3092d6-2450-cf5f-b6f5-808ccaea371f", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-b99f5b038d0d2d4ab2d74cbf9211586a-318433d22c063b44-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "42fa927e-e3b3-f235-e7b9-bf90c4cb437d", - "x-ms-date": "Fri, 04 Jun 2021 19:06:19 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 19:06:18 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "42fa927e-e3b3-f235-e7b9-bf90c4cb437d", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "fefabc3b-701e-000f-2974-59d0c5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T14:06:19.1907123-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:35.7324393-07:00", "RandomSeed": "1685917555", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfMatch%).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfMatch%).json index df71206b203eb..f7533ec511de9 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfMatch%).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfMatch%).json @@ -1,7 +1,9 @@ -{ +{ "Entries": [], "Variables": { - "DateTimeOffsetNow": "2021-06-10T14:13:59.7871328-05:00", - "RandomSeed": "1370847292" + "DateTimeOffsetNow": "2021-08-11T12:42:23.1969902-07:00", + "RandomSeed": "1370847292", + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfMatch%)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfMatch%)Async.json index 3b190c070ec92..20b6e096c672f 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfMatch%)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfMatch%)Async.json @@ -1,7 +1,9 @@ -{ +{ "Entries": [], "Variables": { - "DateTimeOffsetNow": "2021-06-10T14:13:59.912659-05:00", - "RandomSeed": "293560002" + "DateTimeOffsetNow": "2021-08-11T12:42:37.2014409-07:00", + "RandomSeed": "293560002", + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfModifiedSince%).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfModifiedSince%).json index 46f51c914fbcd..7adb43cfba9c4 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfModifiedSince%).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfModifiedSince%).json @@ -1,7 +1,9 @@ -{ +{ "Entries": [], "Variables": { - "DateTimeOffsetNow": "2021-06-10T14:13:59.9026572-05:00", - "RandomSeed": "644931893" + "DateTimeOffsetNow": "2021-08-11T12:42:23.2339871-07:00", + "RandomSeed": "644931893", + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfModifiedSince%)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfModifiedSince%)Async.json index f0575db056c2f..1722ad93cf062 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfModifiedSince%)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfModifiedSince%)Async.json @@ -1,7 +1,9 @@ -{ +{ "Entries": [], "Variables": { - "DateTimeOffsetNow": "2021-06-10T14:13:59.9136589-05:00", - "RandomSeed": "293560002" + "DateTimeOffsetNow": "2021-08-11T12:42:37.2154401-07:00", + "RandomSeed": "293560002", + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfNoneMatch%).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfNoneMatch%).json index 4b6e9dc68edd1..6b07e7cac70f4 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfNoneMatch%).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfNoneMatch%).json @@ -1,7 +1,9 @@ -{ +{ "Entries": [], "Variables": { - "DateTimeOffsetNow": "2021-06-10T14:13:59.9046579-05:00", - "RandomSeed": "293560002" + "DateTimeOffsetNow": "2021-08-11T12:42:23.2439878-07:00", + "RandomSeed": "293560002", + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfNoneMatch%)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfNoneMatch%)Async.json index f41fd435fc347..50f78122d474b 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfNoneMatch%)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%IfNoneMatch%)Async.json @@ -1,7 +1,9 @@ -{ +{ "Entries": [], "Variables": { - "DateTimeOffsetNow": "2021-06-10T14:13:59.9146582-05:00", - "RandomSeed": "293560002" + "DateTimeOffsetNow": "2021-08-11T12:42:37.2244409-07:00", + "RandomSeed": "293560002", + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%LeaseId%).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%LeaseId%).json index dcc2f91578e1f..50c2c461d3d78 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%LeaseId%).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%LeaseId%).json @@ -1,7 +1,9 @@ { "Entries": [], "Variables": { - "DateTimeOffsetNow": "2021-06-22T16:20:37.8725009-05:00", - "RandomSeed": "293560002" + "DateTimeOffsetNow": "2021-08-11T12:42:23.2509881-07:00", + "RandomSeed": "293560002", + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%LeaseId%)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%LeaseId%)Async.json index 611d4aed36001..67bf30d9ba7f4 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%LeaseId%)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%LeaseId%)Async.json @@ -1,7 +1,9 @@ { "Entries": [], "Variables": { - "DateTimeOffsetNow": "2021-06-22T16:20:37.9069001-05:00", - "RandomSeed": "293560002" + "DateTimeOffsetNow": "2021-08-11T12:42:37.2334403-07:00", + "RandomSeed": "293560002", + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%TagConditions%).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%TagConditions%).json index ad6c679c52e05..67dfa28f19093 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%TagConditions%).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%TagConditions%).json @@ -1,7 +1,9 @@ -{ +{ "Entries": [], "Variables": { - "DateTimeOffsetNow": "2021-06-10T14:13:59.9066584-05:00", - "RandomSeed": "293560002" + "DateTimeOffsetNow": "2021-08-11T12:42:23.2629879-07:00", + "RandomSeed": "293560002", + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%TagConditions%)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%TagConditions%)Async.json index bcdfef156ce53..854b75d61e6ba 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%TagConditions%)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_InvalidRequestConditions(%TagConditions%)Async.json @@ -1,7 +1,9 @@ -{ +{ "Entries": [], "Variables": { - "DateTimeOffsetNow": "2021-06-10T14:13:59.9226574-05:00", - "RandomSeed": "1064087930" + "DateTimeOffsetNow": "2021-08-11T12:42:37.2454402-07:00", + "RandomSeed": "1064087930", + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_Mutable.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_Mutable.json index d09ae5fcf70b9..194b175528351 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_Mutable.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_Mutable.json @@ -1,41 +1,9 @@ -{ - "Entries": [ - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-773b955e-1a00-9568-1974-d797dbcc9875?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-046db102d2d51a41b9e305c986693ea8-47146cc8103a014e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "152e4bd7-8f99-0ad6-2dc2-a150a4557dea", - "x-ms-date": "Fri, 04 Jun 2021 19:05:34 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:05:33 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "152e4bd7-8f99-0ad6-2dc2-a150a4557dea", - "x-ms-request-id": "8afc45a8-a01e-001a-7a74-59a2b5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "" - } - ], +{ + "Entries": [], "Variables": { - "DateTimeOffsetNow": "2021-06-04T14:05:34.6336514-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:21.6819897-07:00", "RandomSeed": "1796943519", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_MutableAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_MutableAsync.json index 410d5b360ee48..8fecf2118bbcd 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_MutableAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_MutableAsync.json @@ -1,40 +1,9 @@ -{ - "Entries": [ - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-9babdbb7-b312-c724-9df0-10d3888bdb83?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "9088a6b7-7015-8dde-a657-c2de211d1939", - "x-ms-date": "Fri, 04 Jun 2021 19:06:20 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:19 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9088a6b7-7015-8dde-a657-c2de211d1939", - "x-ms-request-id": "fefabc4d-701e-000f-3374-59d0c5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "" - } - ], +{ + "Entries": [], "Variables": { - "DateTimeOffsetNow": "2021-06-04T14:06:20.9456231-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:35.8184411-07:00", "RandomSeed": "959480233", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(All).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(All).json index ba0a21cfaaf9f..99857d41114c7 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(All).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(All).json @@ -1,58 +1,49 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-fd8af1c9-412a-9331-710c-7cce9785b066/test-blob-664feb3c-c71b-81cb-448f-b50bc5629618", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-fd8af1c9-412a-9331-710c-7cce9785b066", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-04df06b851a624418befded5aa6f72b8-1a699d290d6ea54e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-341d3e58e177cf4baba40aa4e5960576-8ad01b13c201e34b-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "f7df8d91-e23b-c33e-a0b7-fc92b4a880a0", - "x-ms-date": "Fri, 04 Jun 2021 19:06:47 GMT", + "x-ms-client-request-id": "24f58498-bd0c-ba1e-b8af-3fa58691691b", + "x-ms-date": "Wed, 11 Aug 2021 19:42:23 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "Jht+GhThqBsBqc6QcV+4K0HMd/yB1usCJQm5mowlzg51ZKh7B5VSWkMzZXH4Og/l14rK+Oqal08wfPUKKA6P29q/Gg22PCOrehy5TXF5Cer508ICW9Uk28xYS4ugRzI1o4mXOSACLppmH37N4Enet3IKEVRLjYAFmz9AXvGYCjLqhKnn4tDK96UomztXV/uDeZMYlTXd6hYJkZ7gws+ozhRL4lyf9tWiPxqvIvFErkREveRegHX8DZmT3lAx6TXVf80nC3Se44O+dVUbLcckxONZnATrSk2fTtXCDBeEcFbk2qIkHKLPpdlhnwof4N/Sbxls2Eww6jV/iLye29drOQT/N1MkAKdAivcriapDgG318J39GJgJtPBspJTmMcoC9WYGH6mMrW9yK01VBWCLPAhOqOs5bSFr9YJjt1sTWlktKJREPGDDaUIui+xKtK+Q4WeMl4jfyIdEmiknKPUTXtH0KNzLRv+nij6oC+I1IEHT09Xzh8LQTl8M/6I2nEFNGi0bVovSxJto5A1JNrylD3nnU1UfINcOI9p9v0ZdcO39WvG0Gsq1AQ86i6K1hxeiZvAoT0nrLfpVDDKxVARUCnMfS9zL8PWvMlJG5ZQ0WZzD2lhWNCGkEi33Xw2YBKwK5YAvlTs613X6eR32pEdlIbOV7nmr/tZRejmu1JHnFi2lPP8UBcNgiAPjW7sErm3lkT1aAhUyXuaq3RsCjALjEmLvUWhIUBvvNWZ2yKMbTczLyUJUjRQYct0YaiinXfsA/0hYFV0FnUAias2vvJZDj5BON8PAj4VO1t6KL+bzR9dqdclawjdvxisBMSJHabZH1duYWSY4QG/CCj9+em1aLiL1REfM6MxY33CXvl1jBm0nQloLW+6xMjVZmLj48Eu9pwL/UiRveuwOP3m1oIESXwPRVjcTTtM0RBIRc1AUYO4l2hdaZLRIuMht/Bt0+5G0Rzm0JpkUqVguyw0SXQeb+t6LkMZpt/tOiZ5vpVG4v0iBXSwXXzpUETC/K5imNlvB0gI86WvKSo8+ZZz7pAQGdgvFkQDahJqkNn+Wqotip1NDrtNPe9XdthKc2fmdWWwruLWN4aVa5k5ol7PsNKAE275JuPYwt/s16NrtPaqgB90SavLW1Mau6MeF5uMi8IJyl/07U6B1+wC5V/nKbaijyJDV2cmuLgb3m9Avq9AXE/dYeqWtZLQ8nW/xHH3N43oe4R5TTBe4xGn2RLfQRk8vokMBcvIC9mPbmTxavBKJKrhVEcqyxMbgn7Y8tiD8a1cfwXk5y3GIG+q7d7LbXgdWbRn/ezWFfd59IdI8xkBC3y7lOvuYT15GzPXf90wTBUCu5kgH/O8hmkSbvKqeTFWqeA==", + "RequestBody": "POtPZhvHy4FEj7ULxWKWGCYbfhoU4agbAanOkHFfuCtBzHf8gdbrAiUJuZqMJc4OdWSoeweVUlpDM2Vx\u002BDoP5deKyvjqmpdPMHz1CigOj9vavxoNtjwjq3ocuU1xeQnq\u002BdPCAlvVJNvMWEuLoEcyNaOJlzkgAi6aZh9\u002BzeBJ3rdyChFUS42ABZs/QF7xmAoy6oSp5\u002BLQyvelKJs7V1f7g3mTGJU13eoWCZGe4MLPqM4US\u002BJcn/bVoj8aryLxRK5ERL3kXoB1/A2Zk95QMek11X/NJwt0nuODvnVVGy3HJMTjWZwE60pNn07VwgwXhHBW5NqiJByiz6XZYZ8KH\u002BDf0m8ZbNhMMOo1f4i8ntvXazkE/zdTJACnQIr3K4mqQ4Bt9fCd/RiYCbTwbKSU5jHKAvVmBh\u002BpjK1vcitNVQVgizwITqjrOW0ha/WCY7dbE1pZLSiURDxgw2lCLovsSrSvkOFnjJeI38iHRJopJyj1E17R9Cjcy0b/p4o\u002BqAviNSBB09PV84fC0E5fDP\u002BiNpxBTRotG1aL0sSbaOQNSTa8pQ9551NVHyDXDiPafb9GXXDt/VrxtBrKtQEPOouitYcXombwKE9J6y36VQwysVQEVApzH0vcy/D1rzJSRuWUNFmcw9pYVjQhpBIt918NmASsCuWAL5U7Otd1\u002Bnkd9qRHZSGzle55q/7WUXo5rtSR5xYtpTz/FAXDYIgD41u7BK5t5ZE9WgIVMl7mqt0bAowC4xJi71FoSFAb7zVmdsijG03My8lCVI0UGHLdGGoop137AP9IWBVdBZ1AImrNr7yWQ4\u002BQTjfDwI\u002BFTtbeii/m80fXanXJWsI3b8YrATEiR2m2R9XbmFkmOEBvwgo/fnptWi4i9URHzOjMWN9wl75dYwZtJ0JaC1vusTI1WZi4\u002BPBLvacC/1Ikb3rsDj95taCBEl8D0VY3E07TNEQSEXNQFGDuJdoXWmS0SLjIbfwbdPuRtEc5tCaZFKlYLssNEl0Hm/rei5DGabf7Tomeb6VRuL9IgV0sF186VBEwvyuYpjZbwdICPOlrykqPPmWc\u002B6QEBnYLxZEA2oSapDZ/lqqLYqdTQ67TT3vV3bYSnNn5nVlsK7i1jeGlWuZOaJez7DSgBNu\u002BSbj2MLf7Neja7T2qoAfdEmry1tTGrujHhebjIvCCcpf9O1OgdfsAuVf5ym2oo8iQ1dnJri4G95vQL6vQFxP3WHqlrWS0PJ1v8Rx9zeN6HuEeU0wXuMRp9kS30EZPL6JDAXLyAvZj25k8WrwSiSq4VRHKssTG4J\u002B2PLYg/GtXH8F5OctxiBvqu3ey214HVm0Z/3s1hX3efSHSPMZAQt8u5Tr7mE9eRsz13/dMEwVArg==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "9cO6vymsJqpwNKlAPZjmsw==", - "Date": "Fri, 04 Jun 2021 19:06:46 GMT", - "ETag": "\"0x8D9278BE654E95F\"", - "Last-Modified": "Fri, 04 Jun 2021 19:06:46 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "f7df8d91-e23b-c33e-a0b7-fc92b4a880a0", - "x-ms-content-crc64": "2/xBm8465I0=", - "x-ms-request-id": "ccb6165c-c01e-002f-4474-59f776000000", + "Content-Length": "0", + "Content-MD5": "V0xqck8KaPW\u002BmJ1IW6mzDw==", + "Date": "Wed, 11 Aug 2021 19:42:22 GMT", + "ETag": "\u00220x8D95D0023F173F3\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:23 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "24f58498-bd0c-ba1e-b8af-3fa58691691b", + "x-ms-content-crc64": "mdX/o7u8lck=", + "x-ms-request-id": "b1226c20-d01e-004a-39e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:06:46.7897695Z" + "x-ms-version-id": "2021-08-11T19:42:23.4055446Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-fd8af1c9-412a-9331-710c-7cce9785b066/test-blob-664feb3c-c71b-81cb-448f-b50bc5629618?sv=2020-10-02&ss=b&srt=sco&se=2021-06-05T19%3A06%3A47Z&sp=rwdxlacuptfi&sig=Sanitized&comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-fd8af1c9-412a-9331-710c-7cce9785b066?sv=2020-10-02\u0026ss=b\u0026srt=sco\u0026se=2021-08-12T19%3A42%3A23Z\u0026sp=rwdxlacuptfi\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-6775c260a8154142b510e95ae123725c-5b854ba48e36f44c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "be0c8e52-b375-b63c-4532-8355c18b0610", + "traceparent": "00-64f67073a40daa4c9b005db8a3c0951d-567dc52b045e2a49-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8eb37e34-1c0f-28a2-2a4c-4440e2f4be0a", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:11:47 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:23 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -60,30 +51,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:06:46 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "be0c8e52-b375-b63c-4532-8355c18b0610", + "Date": "Wed, 11 Aug 2021 19:42:23 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "8eb37e34-1c0f-28a2-2a4c-4440e2f4be0a", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:11:47 GMT", - "x-ms-request-id": "ccb6165f-c01e-002f-4674-59f776000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:23 GMT", + "x-ms-request-id": "b1226d5e-d01e-004a-44e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-fd8af1c9-412a-9331-710c-7cce9785b066/test-blob-664feb3c-c71b-81cb-448f-b50bc5629618?sv=2020-10-02&ss=b&srt=sco&se=2021-06-05T19%3A06%3A47Z&sp=rwdxlacuptfi&sig=Sanitized&comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-fd8af1c9-412a-9331-710c-7cce9785b066?sv=2020-10-02\u0026ss=b\u0026srt=sco\u0026se=2021-08-12T19%3A42%3A23Z\u0026sp=rwdxlacuptfi\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-4f367cb3f869a644a99654cf5526238b-f2ca6f4d34a44846-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "2540f2f9-c19b-812a-42fd-49dc984d679f", + "traceparent": "00-9e1c51ac01656c4a85fa4f00c097a721-6ffb1267f8a69c42-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "07719e2e-dadd-750c-ebb6-ccef9efee0ab", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -92,117 +77,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:06:46 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "2540f2f9-c19b-812a-42fd-49dc984d679f", + "Date": "Wed, 11 Aug 2021 19:42:23 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "07719e2e-dadd-750c-ebb6-ccef9efee0ab", "x-ms-legal-hold": "false", - "x-ms-request-id": "ccb61660-c01e-002f-4774-59f776000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-fd8af1c9-412a-9331-710c-7cce9785b066?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-03e740bcf0ad3e4ba512b21b83312c15-141310ca07d7504d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ce5cd851-e04a-6d75-74ef-c4e0912fdc9e", - "x-ms-date": "Fri, 04 Jun 2021 19:06:47 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:46 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "ce5cd851-e04a-6d75-74ef-c4e0912fdc9e", - "x-ms-request-id": "ccb61661-c01e-002f-4874-59f776000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-664feb3c-c71b-81cb-448f-b50bc56296182021-06-04T19:06:46.7897695ZtrueFri, 04 Jun 2021 19:06:46 GMTFri, 04 Jun 2021 19:06:46 GMT0x8D9278BE654E95F1024application/octet-stream9cO6vymsJqpwNKlAPZjmsw==BlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 19:11:47 GMTunlockedfalse" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-fd8af1c9-412a-9331-710c-7cce9785b066/test-blob-664feb3c-c71b-81cb-448f-b50bc5629618?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-18b36008dac45a4197dfaf6d17395f61-4c214ecb8b9bfd4d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c08b01e5-98f1-6554-bea3-cf93f24ce552", - "x-ms-date": "Fri, 04 Jun 2021 19:06:47 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:06:47 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "c08b01e5-98f1-6554-bea3-cf93f24ce552", - "x-ms-request-id": "ccb61663-c01e-002f-4974-59f776000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-fd8af1c9-412a-9331-710c-7cce9785b066/test-blob-664feb3c-c71b-81cb-448f-b50bc5629618", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-ea76e78e4afd1f459bf741a3973ed16f-8f093cc39808ed48-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8ffacf53-1ba4-b6ac-d944-ac49cd944f78", - "x-ms-date": "Fri, 04 Jun 2021 19:06:47 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 19:06:47 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8ffacf53-1ba4-b6ac-d944-ac49cd944f78", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "ccb61668-c01e-002f-4e74-59f776000000", + "x-ms-request-id": "b1226da6-d01e-004a-76e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T14:06:47.5436089-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:23.4669903-07:00", "RandomSeed": "557210022", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(All)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(All)Async.json index 6bea0a1b50b9b..9ad51590e695b 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(All)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(All)Async.json @@ -1,58 +1,49 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8ffb7625-02ba-2aa9-1441-5300db714b9a/test-blob-2fd76b0a-5b5c-b178-9897-17ef3cae4a27", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-8ffb7625-02ba-2aa9-1441-5300db714b9a", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-1b5f36ae9850a24eb6c7667b6bde820f-bf24ec0609f0db41-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-6659e8e2166534458c5191358f5cebc3-e5ee183b1950c94f-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "59dc393d-c966-b692-ab03-a2fae1ddef1a", - "x-ms-date": "Fri, 04 Jun 2021 19:07:08 GMT", + "x-ms-client-request-id": "f1e2e4f1-8f34-5160-9a0c-5ad90d9a0ffd", + "x-ms-date": "Wed, 11 Aug 2021 19:42:37 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "Uvsd2OdmLANSb5grYqUfXWJRcdJJiq7J/Ur2Iuu67mX3K63fU3OzpD/T3O3DTU7zeLmM6j133chNVNqdbwoYmIEzMzf4Pwrvnc2Tda3BBrD7A6kxLQMogE7kkv+YFjU1u0RrkBkX+jmunUxv42cbi00qoWtg5mt+CrPpE60LV4eYXbpoVXaX4whwg4+2uJzmyAaxbnTJ1NTZ7YVlLueMo0bF14WssjXXkr1i8GPbx1IWAkqmWegSzonmj2jxMbUh5N9J8OAWORbR2tu2ZuRx/SUyTyuc5Updsgj8xiLN5mAIQQyEktZxAMk01H8MW2ikdZJCvuKJhP6U6z3YGXLzBPN7rSTY7GtOwE9iaBHKUFegWFGQiid9f7wN76aZmeZWQdCLka1Dy4gn8/6TJhzsyprmOMEhYnnM/S5oyv3EtSdoDCZBP7+pXIzIaJYp6lifISULsmEkNd5Wv5R/2wGLYz3WKhr1q4rbPds1WPnioxPVyKnXuAPGRNZI6oAqKYGLPQVZUr8+qXWaMHSF79zkcxuBqRJXs6o6EOZDrcEKsRRaqRr0iVFUlx40PIiPQFT5ZHZkqX9uM4lbHkHY+vy0j39gKkXB8OnJLRLzI3ciq8+SSUhKpQeU7HaRmWsQe5wif6wILhYOOHSNmnxseg8SOHNxRrG0aul3zD7OMFZ+ubF20aPKGXy5gxHTvQuLJ3FnfmD3nzXrbhXDkWLYPwcdDuHK9qlrSB73t8Kf4K3e66TMZ7H2hxp7i2OOB4gZ4UMJtq4pwTDI+zZCAOdyS41o5Ka9C9hWJ4bHTmtF3UGV3dZ/lSr+tSp0BGx6s4cyCT/VJSLiW9Vrs44nYnLFgh71rCIR8rVjai57SQds23P/lEUrb7ges4EAFOGb1lK3roFOhQdkIRaJcrvzZhHO/9gaKM4smRNl1vigEN7Tx5Pcw5uFHVVsmnIvof39KkxvMRUJgK6EixRu6K8OxBA3taonF6J2SeGCro1b/fcVaKysMN/IykfkWDiGFzWmXtZh9+xS1ROq+eg0htIhKI0dWH8DYpMxb+tjQr9p8DGr3E+2+gYLw5OYATf3lEN0wzCrab+2o/xDMIgA75NUQAm2iaqCai6HEZXsamBcOtqn7n+OvoZy9DlTc8l9CtP/RMEuQAuZ8lgCJFcpyjib5vatWQAUxYGCRJRwLvdkCQbB7CWeLfrODfwmjJovSCoAt4zT0LHT639ArPt3KMNhnRpRaN0T/bn83ksD7TjnU/xpcHdqkTlV7gCmXoH+V+Q5xe9/3t9N7LrT1vFmz/5GWVn/DrhM9gvh+3rcbZ83/YdmyihJZ3QcHIO8lrpH7x8CXwQo/0ks7c7jneJlcH8am9lq/wTV/A==", + "RequestBody": "CmvXL1xbeLGYlxfvPK5KJ1L7HdjnZiwDUm\u002BYK2KlH11iUXHSSYquyf1K9iLruu5l9yut31Nzs6Q/09ztw01O83i5jOo9d93ITVTanW8KGJiBMzM3\u002BD8K753Nk3WtwQaw\u002BwOpMS0DKIBO5JL/mBY1NbtEa5AZF/o5rp1Mb\u002BNnG4tNKqFrYOZrfgqz6ROtC1eHmF26aFV2l\u002BMIcIOPtric5sgGsW50ydTU2e2FZS7njKNGxdeFrLI115K9YvBj28dSFgJKplnoEs6J5o9o8TG1IeTfSfDgFjkW0drbtmbkcf0lMk8rnOVKXbII/MYizeZgCEEMhJLWcQDJNNR/DFtopHWSQr7iiYT\u002BlOs92Bly8wTze60k2OxrTsBPYmgRylBXoFhRkIonfX\u002B8De\u002BmmZnmVkHQi5GtQ8uIJ/P\u002BkyYc7Mqa5jjBIWJ5zP0uaMr9xLUnaAwmQT\u002B/qVyMyGiWKepYnyElC7JhJDXeVr\u002BUf9sBi2M91ioa9auK2z3bNVj54qMT1cip17gDxkTWSOqAKimBiz0FWVK/Pql1mjB0he/c5HMbgakSV7OqOhDmQ63BCrEUWqka9IlRVJceNDyIj0BU\u002BWR2ZKl/bjOJWx5B2Pr8tI9/YCpFwfDpyS0S8yN3IqvPkklISqUHlOx2kZlrEHucIn\u002BsCC4WDjh0jZp8bHoPEjhzcUaxtGrpd8w\u002BzjBWfrmxdtGjyhl8uYMR070LiydxZ35g9581624Vw5Fi2D8HHQ7hyvapa0ge97fCn\u002BCt3uukzGex9ocae4tjjgeIGeFDCbauKcEwyPs2QgDnckuNaOSmvQvYVieGx05rRd1Bld3Wf5Uq/rUqdARserOHMgk/1SUi4lvVa7OOJ2JyxYIe9awiEfK1Y2oue0kHbNtz/5RFK2\u002B4HrOBABThm9ZSt66BToUHZCEWiXK782YRzv/YGijOLJkTZdb4oBDe08eT3MObhR1VbJpyL6H9/SpMbzEVCYCuhIsUbuivDsQQN7WqJxeidknhgq6NW/33FWisrDDfyMpH5Fg4hhc1pl7WYffsUtUTqvnoNIbSISiNHVh/A2KTMW/rY0K/afAxq9xPtvoGC8OTmAE395RDdMMwq2m/tqP8QzCIAO\u002BTVEAJtomqgmouhxGV7GpgXDrap\u002B5/jr6GcvQ5U3PJfQrT/0TBLkALmfJYAiRXKco4m\u002Bb2rVkAFMWBgkSUcC73ZAkGwewlni36zg38JoyaL0gqALeM09Cx0\u002Bt/QKz7dyjDYZ0aUWjdE/25/N5LA\u002B0451P8aXB3apE5Ve4Apl6B/lfkOcXvf97fTey609bxZs/\u002BRllZ/w64TPYL4ft63G2fN/2HZsooSWd0HByDvJa6R\u002B8fAl8EKP9JLA==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "ySM1DBDvkXbj2JmtHCwxCg==", - "Date": "Fri, 04 Jun 2021 19:07:07 GMT", - "ETag": "\"0x8D9278BF2C9FBB3\"", - "Last-Modified": "Fri, 04 Jun 2021 19:07:07 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "59dc393d-c966-b692-ab03-a2fae1ddef1a", - "x-ms-content-crc64": "faklqAjG0hU=", - "x-ms-request-id": "ccb61ab8-c01e-002f-5f74-59f776000000", + "Content-Length": "0", + "Content-MD5": "sDF7dsYvX5LDcGiA23\u002BmCA==", + "Date": "Wed, 11 Aug 2021 19:42:36 GMT", + "ETag": "\u00220x8D95D002C403500\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:37 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "f1e2e4f1-8f34-5160-9a0c-5ad90d9a0ffd", + "x-ms-content-crc64": "Qb2AkRswD/I=", + "x-ms-request-id": "b122a0e8-d01e-004a-14e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:07:07.6896691Z" + "x-ms-version-id": "2021-08-11T19:42:37.3434384Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8ffb7625-02ba-2aa9-1441-5300db714b9a/test-blob-2fd76b0a-5b5c-b178-9897-17ef3cae4a27?sv=2020-10-02&ss=b&srt=sco&se=2021-06-05T19%3A07%3A08Z&sp=rwdxlacuptfi&sig=Sanitized&comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-8ffb7625-02ba-2aa9-1441-5300db714b9a?sv=2020-10-02\u0026ss=b\u0026srt=sco\u0026se=2021-08-12T19%3A42%3A37Z\u0026sp=rwdxlacuptfi\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-3ff6937305bcd345bf20dc137e80faaf-3047168ffc6e8e4e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c52cdb8c-7c28-2796-512b-4630ed656fbc", + "traceparent": "00-241ac25ddbcb504f9e4ff13c92dcf103-134dd9eb6f7a9147-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4413632c-571d-5df8-6e92-03d60a967280", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:12:08 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:37 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -60,30 +51,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:07:07 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "c52cdb8c-7c28-2796-512b-4630ed656fbc", + "Date": "Wed, 11 Aug 2021 19:42:36 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "4413632c-571d-5df8-6e92-03d60a967280", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:12:08 GMT", - "x-ms-request-id": "ccb61ab9-c01e-002f-6074-59f776000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:37 GMT", + "x-ms-request-id": "b122a168-d01e-004a-0be9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8ffb7625-02ba-2aa9-1441-5300db714b9a/test-blob-2fd76b0a-5b5c-b178-9897-17ef3cae4a27?sv=2020-10-02&ss=b&srt=sco&se=2021-06-05T19%3A07%3A08Z&sp=rwdxlacuptfi&sig=Sanitized&comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-8ffb7625-02ba-2aa9-1441-5300db714b9a?sv=2020-10-02\u0026ss=b\u0026srt=sco\u0026se=2021-08-12T19%3A42%3A37Z\u0026sp=rwdxlacuptfi\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-870c30a4c791c545b6c64b91dd1309a6-9fd96fabcca9744e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "056e2191-29b1-b0f2-cceb-f2f111c77009", + "traceparent": "00-c171da4c393ba9448e6da29351113827-f23a6000fbc6374d-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "aaad401c-cb87-e6e0-417f-ebd4c6bcab14", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -92,116 +77,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:07:07 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "056e2191-29b1-b0f2-cceb-f2f111c77009", + "Date": "Wed, 11 Aug 2021 19:42:36 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "aaad401c-cb87-e6e0-417f-ebd4c6bcab14", "x-ms-legal-hold": "false", - "x-ms-request-id": "ccb61abb-c01e-002f-6274-59f776000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8ffb7625-02ba-2aa9-1441-5300db714b9a?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "cb9f3180-6af6-f20a-4efc-dd9cd9efd579", - "x-ms-date": "Fri, 04 Jun 2021 19:07:08 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:07:07 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "cb9f3180-6af6-f20a-4efc-dd9cd9efd579", - "x-ms-request-id": "ccb61abd-c01e-002f-6474-59f776000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-2fd76b0a-5b5c-b178-9897-17ef3cae4a272021-06-04T19:07:07.6896691ZtrueFri, 04 Jun 2021 19:07:07 GMTFri, 04 Jun 2021 19:07:07 GMT0x8D9278BF2C9FBB31024application/octet-streamySM1DBDvkXbj2JmtHCwxCg==BlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 19:12:08 GMTunlockedfalse" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8ffb7625-02ba-2aa9-1441-5300db714b9a/test-blob-2fd76b0a-5b5c-b178-9897-17ef3cae4a27?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-3827a66d87413247844fa7b3c04a4420-fe62782a44620540-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "df715d89-a528-b812-3cc6-7becea5ce70c", - "x-ms-date": "Fri, 04 Jun 2021 19:07:08 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:07:07 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "df715d89-a528-b812-3cc6-7becea5ce70c", - "x-ms-request-id": "ccb61abf-c01e-002f-6574-59f776000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8ffb7625-02ba-2aa9-1441-5300db714b9a/test-blob-2fd76b0a-5b5c-b178-9897-17ef3cae4a27", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-bf1343f97952554ea48235090b544507-1bb8d26bf5c09940-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "7b12d3dc-f57d-6951-d0f9-423d663edecc", - "x-ms-date": "Fri, 04 Jun 2021 19:07:08 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 19:07:07 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "7b12d3dc-f57d-6951-d0f9-423d663edecc", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "ccb61ac1-c01e-002f-6774-59f776000000", + "x-ms-request-id": "b122a1bc-d01e-004a-53e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T14:07:08.4399521-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:37.4064430-07:00", "RandomSeed": "2012453537", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(SetImmutabilityPolicy).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(SetImmutabilityPolicy).json index e63873905e652..9cf4816ea705e 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(SetImmutabilityPolicy).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(SetImmutabilityPolicy).json @@ -1,58 +1,49 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a77e6359-2ad0-bc71-2c91-4d7bbbcbd1b3/test-blob-d61d7122-e969-10a8-17fd-65d18e4cc445", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-a77e6359-2ad0-bc71-2c91-4d7bbbcbd1b3", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-b9dccb855d46534781d9e4e7d2ad9f89-642124cae925ac40-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-35c5fa5135af3f44a49efe3ac0347e5c-e08fd608cb04bc4b-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "988e3bb2-11b5-a196-0a3d-bd51d5f2fe86", - "x-ms-date": "Fri, 04 Jun 2021 19:06:49 GMT", + "x-ms-client-request-id": "9def1124-35ae-24bd-91e9-9958a0a2d8ff", + "x-ms-date": "Wed, 11 Aug 2021 19:42:23 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "47gO4DiKToNbyHGhR/uKUw/37/RaP4Bwu26Q08SgLeDMCJgCvPB7lyOae6F4BsgbchHBl1zQ6qQ3nSXJ+Xq+u5qR1D9jiJYee1fQv8Pf+LSmdWCy3pWD/B3zyh/LsZ6o3MAG5zGIt+p7ohwF/yrgWKVwI4QZC9wEDdgib753U8m5J+MD2RGCHb12Nzt5fvzyE3J5W44ZjtHjAtlZZkcrBE9SS9hH3H+U7QbHo9Ohio/bL1xL/fc7oJgSINc4Kbd1SjLrJzIkqzby5W2IUuv9QXdJfTbr4AdYFqs/NbyoXMNPUVigtmNct4QlWBeJs02sFN5f7quAimorkxCH5HV6SompOACTXIsT7MaxxYfvzmNdkiDdSG0XzsftdSJS1dIOqg2O33pNGbhTTAHlzsTjPMStKVFVnQIbkmo4pedowRb0oxp5YO7oEHloivxrMv8DCThepayAuQ0Lck0QFHPQ6orr8CupatvWxBnY7BMGr19qNZyuChtqc+kNbe2g2PsGl6BxgEHUWZ9ch+GSqMz5BMLupd/XId9vgH1BnPztNesd0VVzlS8dldv8UoM62MscE2krsjMcL3XBAQDEkr2iblL2ddZ3hm+T0A8D2s9bNaixJYiTwoO3AaLfspMuWQMeWuMxRGL0pIz6l+EjGFSmZcxYEm00D6vOPnMzmNTbZHcM5X/rKvFFvYD7mCuhk+hOOE3G1kaV6Uo4YgXvwQy4HjJqFzLUuzrbElXtOHaALKqL5V+HFI4wd/w1s8jrVvt0Q3n4N3y1eX0S68PxqLDUtzVbZNusMAqkOaA2nwdx8LxZefX8h/Qt1WzhdCnKPs5MYfuSkPIfxxJvVP3cf9l1oPsGly661zBBLY5vyrzh2fvR6T4M32DKObHijTP3UVWSa9Muw6agkYnLUWJjsPxWjnsCC5WaacGbO1582En8Sdw53F7oshVUMVi0QI79Z4m0i/+39Ea/+AISk4hII7hAzgeGKtOebttlrdk95SgyndTVx01KRFWWeeRc1h+NDA2fdHKHdz21Fh0jUkZsghLZ3/Wzc1tr9omy77DvQZe72KHLnnG2qyWWILEvJvIOKfbSgvYp2ZiyM37o1YeMxdSFZ3qloOSgIzTPHVOqPM+Wo8a6Hb+hkv4IGWrzzdaeClrcqr54aYgSMV/CWbxFCPeuUTHB0qgV5NV7nId5rVVdMRL4zZEQHjo9p+tf3jhCwxByRHul3Texxsbo/c0BmYQKZCipTDplnTP3gyu9tgWdONl3BmnZuFTbRwfLKCFtPA5mVHkQmHbVDaZIrlkM9A/AS8T0ipIbMazTzgUzmnUSikccVmGLjaBiofnCkAr6z1P3C9xceLF7SyPNPMpwonMwNg==", + "RequestBody": "InEd1mnpqBAX/WXRjkzEReO4DuA4ik6DW8hxoUf7ilMP9\u002B/0Wj\u002BAcLtukNPEoC3gzAiYArzwe5cjmnuheAbIG3IRwZdc0OqkN50lyfl6vruakdQ/Y4iWHntX0L/D3/i0pnVgst6Vg/wd88ofy7GeqNzABucxiLfqe6IcBf8q4FilcCOEGQvcBA3YIm\u002B\u002Bd1PJuSfjA9kRgh29djc7eX788hNyeVuOGY7R4wLZWWZHKwRPUkvYR9x/lO0Gx6PToYqP2y9cS/33O6CYEiDXOCm3dUoy6ycyJKs28uVtiFLr/UF3SX026\u002BAHWBarPzW8qFzDT1FYoLZjXLeEJVgXibNNrBTeX\u002B6rgIpqK5MQh\u002BR1ekqJqTgAk1yLE\u002BzGscWH785jXZIg3UhtF87H7XUiUtXSDqoNjt96TRm4U0wB5c7E4zzErSlRVZ0CG5JqOKXnaMEW9KMaeWDu6BB5aIr8azL/Awk4XqWsgLkNC3JNEBRz0OqK6/ArqWrb1sQZ2OwTBq9fajWcrgobanPpDW3toNj7BpegcYBB1FmfXIfhkqjM\u002BQTC7qXf1yHfb4B9QZz87TXrHdFVc5UvHZXb/FKDOtjLHBNpK7IzHC91wQEAxJK9om5S9nXWd4Zvk9APA9rPWzWosSWIk8KDtwGi37KTLlkDHlrjMURi9KSM\u002BpfhIxhUpmXMWBJtNA\u002Brzj5zM5jU22R3DOV/6yrxRb2A\u002B5groZPoTjhNxtZGlelKOGIF78EMuB4yahcy1Ls62xJV7Th2gCyqi\u002BVfhxSOMHf8NbPI61b7dEN5\u002BDd8tXl9EuvD8aiw1Lc1W2TbrDAKpDmgNp8HcfC8WXn1/If0LdVs4XQpyj7OTGH7kpDyH8cSb1T93H/ZdaD7BpcuutcwQS2Ob8q84dn70ek\u002BDN9gyjmx4o0z91FVkmvTLsOmoJGJy1FiY7D8Vo57AguVmmnBmztefNhJ/EncOdxe6LIVVDFYtECO/WeJtIv/t/RGv/gCEpOISCO4QM4HhirTnm7bZa3ZPeUoMp3U1cdNSkRVlnnkXNYfjQwNn3Ryh3c9tRYdI1JGbIIS2d/1s3Nba/aJsu\u002Bw70GXu9ihy55xtqslliCxLybyDin20oL2KdmYsjN\u002B6NWHjMXUhWd6paDkoCM0zx1TqjzPlqPGuh2/oZL\u002BCBlq883Wngpa3Kq\u002BeGmIEjFfwlm8RQj3rlExwdKoFeTVe5yHea1VXTES\u002BM2REB46PafrX944QsMQckR7pd03scbG6P3NAZmECmQoqUw6ZZ0z94MrvbYFnTjZdwZp2bhU20cHyyghbTwOZlR5EJh21Q2mSK5ZDPQPwEvE9IqSGzGs084FM5p1EopHHFZhi42gYqH5wpAK\u002Bs9T9w==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "BgX61xSNmQD5WfcApw8eHA==", - "Date": "Fri, 04 Jun 2021 19:06:48 GMT", - "ETag": "\"0x8D9278BE7A1836C\"", - "Last-Modified": "Fri, 04 Jun 2021 19:06:48 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "988e3bb2-11b5-a196-0a3d-bd51d5f2fe86", - "x-ms-content-crc64": "h/qzXPc4Dck=", - "x-ms-request-id": "ccb61677-c01e-002f-5774-59f776000000", + "Content-Length": "0", + "Content-MD5": "Mawi88cIVS/A3e1fxD117g==", + "Date": "Wed, 11 Aug 2021 19:42:23 GMT", + "ETag": "\u00220x8D95D0024342E71\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:23 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "9def1124-35ae-24bd-91e9-9958a0a2d8ff", + "x-ms-content-crc64": "KmiMBS2gSpE=", + "x-ms-request-id": "b1226e03-d01e-004a-47e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:06:48.9695084Z" + "x-ms-version-id": "2021-08-11T19:42:23.8428549Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a77e6359-2ad0-bc71-2c91-4d7bbbcbd1b3/test-blob-d61d7122-e969-10a8-17fd-65d18e4cc445?sv=2020-10-02&ss=b&srt=sco&se=2021-06-05T19%3A06%3A49Z&sp=i&sig=Sanitized&comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-a77e6359-2ad0-bc71-2c91-4d7bbbcbd1b3?sv=2020-10-02\u0026ss=b\u0026srt=sco\u0026se=2021-08-12T19%3A42%3A23Z\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-5bb4746194f0e845ad664f45874be1cf-9cf4ceb44b80b048-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "66becb63-97e4-1280-7b4e-9270776c4e9f", + "traceparent": "00-b72f5115534f9242a2861faa1355188d-4f2030a30a1bdd41-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e9e65a92-b5df-d548-1f38-e7c8e2f3832b", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:11:49 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:23 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -60,30 +51,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:06:48 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "66becb63-97e4-1280-7b4e-9270776c4e9f", + "Date": "Wed, 11 Aug 2021 19:42:23 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "e9e65a92-b5df-d548-1f38-e7c8e2f3832b", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:11:49 GMT", - "x-ms-request-id": "ccb61678-c01e-002f-5874-59f776000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:23 GMT", + "x-ms-request-id": "b1226e8e-d01e-004a-3ae9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a77e6359-2ad0-bc71-2c91-4d7bbbcbd1b3/test-blob-d61d7122-e969-10a8-17fd-65d18e4cc445?sv=2020-10-02&ss=b&srt=sco&se=2021-06-05T19%3A06%3A49Z&sp=i&sig=Sanitized&comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-a77e6359-2ad0-bc71-2c91-4d7bbbcbd1b3?sv=2020-10-02\u0026ss=b\u0026srt=sco\u0026se=2021-08-12T19%3A42%3A23Z\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-2673d46541d95541a7a4e9a3f132f5cf-b91a4fef19d57a45-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "09ed92b9-9833-faa1-d9d3-6d9122d85eb2", + "traceparent": "00-990d00ed34ad4647bf04383d3fba174a-ddb829d4a7183b44-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "45c512ea-efbb-fc1f-f2b9-797c29cdbe17", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -92,117 +77,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:06:48 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "09ed92b9-9833-faa1-d9d3-6d9122d85eb2", + "Date": "Wed, 11 Aug 2021 19:42:23 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "45c512ea-efbb-fc1f-f2b9-797c29cdbe17", "x-ms-legal-hold": "false", - "x-ms-request-id": "ccb61679-c01e-002f-5974-59f776000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a77e6359-2ad0-bc71-2c91-4d7bbbcbd1b3?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-f67e2a2202193746ae1a86b2ae919b36-91331afe76a37f4d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "e4b77b8f-447e-516b-70cb-6be8828ed91a", - "x-ms-date": "Fri, 04 Jun 2021 19:06:49 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:48 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e4b77b8f-447e-516b-70cb-6be8828ed91a", - "x-ms-request-id": "ccb6167a-c01e-002f-5a74-59f776000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-d61d7122-e969-10a8-17fd-65d18e4cc4452021-06-04T19:06:48.9695084ZtrueFri, 04 Jun 2021 19:06:48 GMTFri, 04 Jun 2021 19:06:48 GMT0x8D9278BE7A1836C1024application/octet-streamBgX61xSNmQD5WfcApw8eHA==BlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 19:11:49 GMTunlockedfalse" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a77e6359-2ad0-bc71-2c91-4d7bbbcbd1b3/test-blob-d61d7122-e969-10a8-17fd-65d18e4cc445?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-fe7bf81076d7a24b97aa8a685bd6ca16-19e94aba7963114e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "a701bfea-7921-a534-dc8c-5e62d286f11d", - "x-ms-date": "Fri, 04 Jun 2021 19:06:49 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:06:49 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "a701bfea-7921-a534-dc8c-5e62d286f11d", - "x-ms-request-id": "ccb6167d-c01e-002f-5c74-59f776000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a77e6359-2ad0-bc71-2c91-4d7bbbcbd1b3/test-blob-d61d7122-e969-10a8-17fd-65d18e4cc445", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-f11e3a14c8bbb94db0667ba74addce24-765810c7de90204f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c2fe95ee-328d-e1f9-92ed-04628f86a89c", - "x-ms-date": "Fri, 04 Jun 2021 19:06:50 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 19:06:49 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "c2fe95ee-328d-e1f9-92ed-04628f86a89c", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "ccb6167f-c01e-002f-5d74-59f776000000", + "x-ms-request-id": "b1226ece-d01e-004a-70e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T14:06:49.7190804-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:23.9049943-07:00", "RandomSeed": "782655438", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(SetImmutabilityPolicy)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(SetImmutabilityPolicy)Async.json index 223891b3d73ea..b8f5690ab104c 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(SetImmutabilityPolicy)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_AccoutnSas(SetImmutabilityPolicy)Async.json @@ -1,58 +1,49 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-01860b3d-c9de-2360-1f8a-9b7803d618c8/test-blob-2e892812-15d9-9c25-e3d6-1fd0329a3c0c", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-01860b3d-c9de-2360-1f8a-9b7803d618c8", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-00ff138408cd9b43bf16ad0118e32ec2-74090db759c35944-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-c3fc6b29f8fcb84c93522f6afbde9db2-eeba5ba7585deb45-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "cbf484ae-3c10-3e11-ece5-0fbe3e4cedc3", - "x-ms-date": "Fri, 04 Jun 2021 19:07:10 GMT", + "x-ms-client-request-id": "20f76ee3-e839-3bce-2afd-1bc194fe26ab", + "x-ms-date": "Wed, 11 Aug 2021 19:42:37 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "NpbodkviP6Od0kT1OIijqvu98cPpuC0o5ekeCKqQ8IROjkJt7qJ8L+jmkAbQMGRaMnTUdah4I35pv5BixDf4DeLApqlGNrxYQcHbAycmV7SFw9U1u3vb1WvEAy4RGmux7YMkEIm7FPy4fDTnnSBWQmjc3QBhwlFm5NE+gjKNRyZWKRWkAkcqya/ZfT9G9DhLbcDGNT1rUCoxvSy4fJHJKjQNkXMKskAhsRNQh0QSIPCZ8xRxxxHp6tnrckQackwdD1MKOWPEQLuApYMpGsjlH507H4l9V2MjI6aaH0D7Bj/GM3fxCOeM1LJZ8SGNv88RBVOn3lLDoLjw5xW8KiF7hJ9EY+dQ9Ba2r0rXJGVBlWTWiBnsVCfsA5K/ASHR0KqQ3m2CSVzowBE88S8I63xSrlGx5qEHjjB4V2BUkfL15N6fRkX4v0wH7sgIsGL35BcWbVLPIOoJiU88CvH7ky4eRg1RaKQ2We8FqffY/97NgHNIPiSfJsT0lb32u7RaDFqZ6WlVpnty3xNjynbyMYpxbol+s1QKfiBIXNLnQJ06qp2cPhV1eNr31V4RPFtNAWQzhUwr3FgFj2pIDEmoi591KSDZVfJ0+/avht32+ULE+1putLtQD81El6+qLGyRTkq/mxM7c6xyvolWfFZ6D5UohBDuOtfkJBlSlb5Cys+KHTiTN10viYiu+/Yx+pN3yYcZgqhbohNz2nf56N7uL/O5zF4d59g4+PuIQD7gsiqG28s3KUgnLnskIFzmNqCqwMwCeC01WeKu4Yms02HUkihNcw0StgWrkZ3i+cZ8UsJa3YBy3jr8UYLpiEi/elsZT440mcKTlwnGV+aQUmAbMY/GUvXhYrPuUCGKKS697BdCyak3SLj/x0Z2q4dTbP4hzVa4+ChlN+3bRUigCG7bCGvPTYm24+nWxouvarYsmuQjaFzXBPPv3JG8XAJwXr7Ym6IchB51a+lt4jKdts02r6tkfZ8SBAN34HH4+ofnZWfM1s4TDxbFrf1yaiLBUSXDha1XDOEfxpefpKStfXBihn3K0OD+Ip+Uns+in5nhto5MNHTZj1iGrRA3dGtyGDCMEOOl9oFFxWIOwm4RfCb9ve0VYUj8iPYkQyPPx640IoWeFY61PMANBm4Ry8zqdTDpObd9XLfokIftgLJddf602qDocmeXR4AtCFrZ6r0pOc7y5o32tsXOtoUHyLsNr5FwXfAsAgPJUfE2T1RdDqXJxEfkao9wvSPaGbvikH/FH1jIaY3M/DfLKZSbwGdxcajfPQR0KUQC/5/NUehH5sBycS/7lKUY/McQGED61P28aagTAlJ7UPYTxmnu/6tOhELTKU83ddwCxkE8ZBEDCCqhEec/NA==", + "RequestBody": "EiiJLtkVJZzj1h/QMpo8DDaW6HZL4j\u002BjndJE9TiIo6r7vfHD6bgtKOXpHgiqkPCETo5Cbe6ifC/o5pAG0DBkWjJ01HWoeCN\u002Bab\u002BQYsQ3\u002BA3iwKapRja8WEHB2wMnJle0hcPVNbt729VrxAMuERprse2DJBCJuxT8uHw0550gVkJo3N0AYcJRZuTRPoIyjUcmVikVpAJHKsmv2X0/RvQ4S23AxjU9a1AqMb0suHyRySo0DZFzCrJAIbETUIdEEiDwmfMUcccR6erZ63JEGnJMHQ9TCjljxEC7gKWDKRrI5R\u002BdOx\u002BJfVdjIyOmmh9A\u002BwY/xjN38QjnjNSyWfEhjb/PEQVTp95Sw6C48OcVvCohe4SfRGPnUPQWtq9K1yRlQZVk1ogZ7FQn7AOSvwEh0dCqkN5tgklc6MARPPEvCOt8Uq5RseahB44weFdgVJHy9eTen0ZF\u002BL9MB\u002B7ICLBi9\u002BQXFm1SzyDqCYlPPArx\u002B5MuHkYNUWikNlnvBan32P/ezYBzSD4knybE9JW99ru0WgxamelpVaZ7ct8TY8p28jGKcW6JfrNUCn4gSFzS50CdOqqdnD4VdXja99VeETxbTQFkM4VMK9xYBY9qSAxJqIufdSkg2VXydPv2r4bd9vlCxPtabrS7UA/NRJevqixskU5Kv5sTO3Oscr6JVnxWeg\u002BVKIQQ7jrX5CQZUpW\u002BQsrPih04kzddL4mIrvv2MfqTd8mHGYKoW6ITc9p3\u002Beje7i/zucxeHefYOPj7iEA\u002B4LIqhtvLNylIJy57JCBc5jagqsDMAngtNVniruGJrNNh1JIoTXMNErYFq5Gd4vnGfFLCWt2Act46/FGC6YhIv3pbGU\u002BONJnCk5cJxlfmkFJgGzGPxlL14WKz7lAhiikuvewXQsmpN0i4/8dGdquHU2z\u002BIc1WuPgoZTft20VIoAhu2whrz02JtuPp1saLr2q2LJrkI2hc1wTz79yRvFwCcF6\u002B2JuiHIQedWvpbeIynbbNNq\u002BrZH2fEgQDd\u002BBx\u002BPqH52VnzNbOEw8Wxa39cmoiwVElw4WtVwzhH8aXn6SkrX1wYoZ9ytDg/iKflJ7Pop\u002BZ4baOTDR02Y9Yhq0QN3RrchgwjBDjpfaBRcViDsJuEXwm/b3tFWFI/Ij2JEMjz8euNCKFnhWOtTzADQZuEcvM6nUw6Tm3fVy36JCH7YCyXXX\u002BtNqg6HJnl0eALQha2eq9KTnO8uaN9rbFzraFB8i7Da\u002BRcF3wLAIDyVHxNk9UXQ6lycRH5GqPcL0j2hm74pB/xR9YyGmNzPw3yymUm8BncXGo3z0EdClEAv\u002BfzVHoR\u002BbAcnEv\u002B5SlGPzHEBhA\u002BtT9vGmoEwJSe1D2E8Zp7v\u002BrToRC0ylPNw==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "ST7qbOtFJ5meAc4b9Ao42Q==", - "Date": "Fri, 04 Jun 2021 19:07:09 GMT", - "ETag": "\"0x8D9278BF42DC3C6\"", - "Last-Modified": "Fri, 04 Jun 2021 19:07:10 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "cbf484ae-3c10-3e11-ece5-0fbe3e4cedc3", - "x-ms-content-crc64": "kyPjfeb7FBI=", - "x-ms-request-id": "ccb61ae0-c01e-002f-7574-59f776000000", + "Content-Length": "0", + "Content-MD5": "ktxhmbY1/RH3X5LYtacl1A==", + "Date": "Wed, 11 Aug 2021 19:42:37 GMT", + "ETag": "\u00220x8D95D002C73F89F\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:37 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "20f76ee3-e839-3bce-2afd-1bc194fe26ab", + "x-ms-content-crc64": "7Byz5e9TsiM=", + "x-ms-request-id": "b122a20e-d01e-004a-19e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:07:10.021319Z" + "x-ms-version-id": "2021-08-11T19:42:37.6816799Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-01860b3d-c9de-2360-1f8a-9b7803d618c8/test-blob-2e892812-15d9-9c25-e3d6-1fd0329a3c0c?sv=2020-10-02&ss=b&srt=sco&se=2021-06-05T19%3A07%3A10Z&sp=i&sig=Sanitized&comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-01860b3d-c9de-2360-1f8a-9b7803d618c8?sv=2020-10-02\u0026ss=b\u0026srt=sco\u0026se=2021-08-12T19%3A42%3A37Z\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-398af1a2a5699040a687c759e476a2e9-167c828530f33040-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8cf37fe1-74f3-a723-5cb8-3353d810fddd", + "traceparent": "00-809dafbc1b8bdd4698eafac556f2d673-1c4c689353d2ce43-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "655f500f-2e32-8dfd-0ec6-9c4320a27c05", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:12:10 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:37 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -60,30 +51,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:07:09 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "8cf37fe1-74f3-a723-5cb8-3353d810fddd", + "Date": "Wed, 11 Aug 2021 19:42:37 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "655f500f-2e32-8dfd-0ec6-9c4320a27c05", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 19:12:10 GMT", - "x-ms-request-id": "ccb61ae1-c01e-002f-7674-59f776000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:37 GMT", + "x-ms-request-id": "b122a297-d01e-004a-12e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-01860b3d-c9de-2360-1f8a-9b7803d618c8/test-blob-2e892812-15d9-9c25-e3d6-1fd0329a3c0c?sv=2020-10-02&ss=b&srt=sco&se=2021-06-05T19%3A07%3A10Z&sp=i&sig=Sanitized&comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-01860b3d-c9de-2360-1f8a-9b7803d618c8?sv=2020-10-02\u0026ss=b\u0026srt=sco\u0026se=2021-08-12T19%3A42%3A37Z\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-0f34ea0b74933a4bae35df601265d22d-63c5c8cade916f4f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "bfdc0968-6059-9bd0-2cb7-0979fba9b5fe", + "traceparent": "00-159f89d730d2754e911d7301a306079e-5736ae3b46bf194c-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "44b15810-c09e-7f79-8667-bd49a0ce1d49", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -92,116 +77,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:07:09 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "bfdc0968-6059-9bd0-2cb7-0979fba9b5fe", + "Date": "Wed, 11 Aug 2021 19:42:37 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "44b15810-c09e-7f79-8667-bd49a0ce1d49", "x-ms-legal-hold": "false", - "x-ms-request-id": "ccb61ae3-c01e-002f-7874-59f776000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-01860b3d-c9de-2360-1f8a-9b7803d618c8?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ceebe99a-3e33-af84-8716-17e7b7ff84dc", - "x-ms-date": "Fri, 04 Jun 2021 19:07:10 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:07:09 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "ceebe99a-3e33-af84-8716-17e7b7ff84dc", - "x-ms-request-id": "ccb61ae4-c01e-002f-7974-59f776000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-2e892812-15d9-9c25-e3d6-1fd0329a3c0c2021-06-04T19:07:10.0213190ZtrueFri, 04 Jun 2021 19:07:10 GMTFri, 04 Jun 2021 19:07:10 GMT0x8D9278BF42DC3C61024application/octet-streamST7qbOtFJ5meAc4b9Ao42Q==BlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 19:12:10 GMTunlockedfalse" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-01860b3d-c9de-2360-1f8a-9b7803d618c8/test-blob-2e892812-15d9-9c25-e3d6-1fd0329a3c0c?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-a4b60e8038f1284c962f6232d12ebcf3-a2a26efa3aa1bb46-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "11de7ab0-e6be-8aca-3a84-41da207f6806", - "x-ms-date": "Fri, 04 Jun 2021 19:07:11 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:07:09 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "11de7ab0-e6be-8aca-3a84-41da207f6806", - "x-ms-request-id": "ccb61ae7-c01e-002f-7b74-59f776000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-01860b3d-c9de-2360-1f8a-9b7803d618c8/test-blob-2e892812-15d9-9c25-e3d6-1fd0329a3c0c", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-bb23e65c320ae54182aa02b0663a23b1-0082cf83314f9047-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "3c37c432-7320-cb1e-f4f5-a716147e0f23", - "x-ms-date": "Fri, 04 Jun 2021 19:07:11 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 19:07:09 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3c37c432-7320-cb1e-f4f5-a716147e0f23", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "ccb61ae9-c01e-002f-7d74-59f776000000", + "x-ms-request-id": "b122a2cc-d01e-004a-3fe9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T14:07:10.7673802-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:37.7474392-07:00", "RandomSeed": "1197677344", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(All).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(All).json index 5afe50c3f8c81..3aa74dcc9264d 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(All).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(All).json @@ -1,58 +1,49 @@ { "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8a50af57-9187-16e0-0566-05c79c7e0056/test-blob-f46066c1-3fcd-678e-01f3-3756fed16ab6", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-8a50af57-9187-16e0-0566-05c79c7e0056", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-3f9fb48f66438f439ad16c74c0932b1a-95cfff8459065645-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-bf974e2ff67bd54cb8c42b0d037f3b6a-e2506f83934b254f-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "cb4bdeda-c881-fa7e-be27-ad3317db0cd7", - "x-ms-date": "Thu, 08 Jul 2021 16:23:24 GMT", + "x-ms-client-request-id": "71f41459-4041-ded0-4e71-136358cbcaee", + "x-ms-date": "Wed, 11 Aug 2021 19:42:24 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "C9JgRgMuwPAa\u002BRZjAli6QRUB/7hyP3gYIOiIlFqJFzP7T7vKHrlTkqVw2dQoK2WpOfVB/dKxQ8tZRyYapiuVkeHjZ7Kc7yNbrWwTAmak8PSD31tkRxpgSQzwcNaTOOx62kfzRcSzDEnS5VBmnkFltVcxl8bQMUnHgh6lrH9MyHWAmScesasw0NISkmLK\u002BqrLirt/YqElqan\u002BLMKmDWDJhR3a5QUZRwSrAMb0vZ7n/Idz2SHDzWXTW\u002B99IIToisJySA1F7xWlsUO202HaMesLFi86MjM/Bri3BooWnCd/w3UDgnWQog1yzijdDfkE\u002BCoDcglVrVePMkJVjeiKjhUcNxDr1692enMhx2QLYfm\u002Bsg5gEiodKRUddE8zOxQl6D8SwdXpGCF6jfeVM\u002BbzhNFJltraKXvr/g36zWNfQj9f/N8l\u002BKAj1Zrs5YUyiPUvKvB96qQ5Sr7DJ8LI7kq\u002BG0q4NjcHzosxJcFA7kT2uXYXy6Ny4ViaJbEgYdHdW\u002BdPLco7elG\u002BKFxkTMTj\u002BVx6zW5MsCKnSznxHRCF5my5U8rZ8MB5uj4kWaNHDpWUtyxVppRjkarEqOKRSlxBOEHvq/n5CQicABIvJ1d/YD2kXWbjMEDXVcIfFUje6HDh4yBhV2Kbmq0juKaCNGlTRUik7e32XQgBF1U22fPAvhehTUM2HQjaCMK4v3eaVSFYzND/OfuD64YXYEANZcC5Y/qO4OYlHCc/yeQqPp2RZ8E03g0jwIQcHWK9H73IzaMB/lx9C3Q6Mq\u002Bpv28WWa3ohvh\u002B2IazlqJ1ccKEaP1qd/xBKT9AFFtM\u002BatdegAVBsS01JjESfUcTme5B5qytcqyPkhz1DBtp3KdMd7bVRyhYGv9z5Nkpi0HJdrXhgzBmkTgqzu4ojGURy0mJhgWQPlLGKcutOU3TZgabK9VliBl3Jaa\u002B6nh6b05aYhmPX8V8OXhjG5kkuZeqF2inTWCP7AMwEqBfERPai7p9Etd0RAZBXvKdAqyAUmwPFNLPkuHtynXWX00k3SgkSFAe52bAdZNiZi6uMqmWb8B0T/xAyzjYT0hhXeT5HIGKePocoasFDt8/rSzzf9eMQC9M8E0r431XBlfentfuqQls47nvuc5VbwEdQV3L5Q\u002BwlN31bGw0npV8hVsTJq/HUMQjRlwdnMYhN0ELzqHfi2FIbcn5\u002BXydeEUksvSzAkiRVfBZ6F6zUvgX1HTq6JAzXTn5yrilzVeHRg4XOSoRbfU4urixRaLClNsR4eTHsk/08RW6\u002BXeP64iYkmJQnFnOBqZ/si3XghdXNzWdlCtyv5P\u002BIggUVrS9qM8wGPNAsjiBQ5t\u002Bh8Ah3W8\u002BI4IB8hddJdLOknoRubAxggle56kkA==", + "RequestBody": "wWZg9M0/jmcB8zdW/tFqtgvSYEYDLsDwGvkWYwJYukEVAf\u002B4cj94GCDoiJRaiRcz\u002B0\u002B7yh65U5KlcNnUKCtlqTn1Qf3SsUPLWUcmGqYrlZHh42eynO8jW61sEwJmpPD0g99bZEcaYEkM8HDWkzjsetpH80XEswxJ0uVQZp5BZbVXMZfG0DFJx4Iepax/TMh1gJknHrGrMNDSEpJiyvqqy4q7f2KhJamp/izCpg1gyYUd2uUFGUcEqwDG9L2e5/yHc9khw81l01vvfSCE6IrCckgNRe8VpbFDttNh2jHrCxYvOjIzPwa4twaKFpwnf8N1A4J1kKINcs4o3Q35BPgqA3IJVa1XjzJCVY3oio4VHDcQ69evdnpzIcdkC2H5vrIOYBIqHSkVHXRPMzsUJeg/EsHV6Rgheo33lTPm84TRSZba2il76/4N\u002Bs1jX0I/X/zfJfigI9Wa7OWFMoj1LyrwfeqkOUq\u002BwyfCyO5KvhtKuDY3B86LMSXBQO5E9rl2F8ujcuFYmiWxIGHR3VvnTy3KO3pRvihcZEzE4/lces1uTLAip0s58R0QheZsuVPK2fDAebo\u002BJFmjRw6VlLcsVaaUY5GqxKjikUpcQThB76v5\u002BQkInAASLydXf2A9pF1m4zBA11XCHxVI3uhw4eMgYVdim5qtI7imgjRpU0VIpO3t9l0IARdVNtnzwL4XoU1DNh0I2gjCuL93mlUhWMzQ/zn7g\u002BuGF2BADWXAuWP6juDmJRwnP8nkKj6dkWfBNN4NI8CEHB1ivR\u002B9yM2jAf5cfQt0OjKvqb9vFlmt6Ib4ftiGs5aidXHChGj9anf8QSk/QBRbTPmrXXoAFQbEtNSYxEn1HE5nuQeasrXKsj5Ic9QwbadynTHe21UcoWBr/c\u002BTZKYtByXa14YMwZpE4Ks7uKIxlEctJiYYFkD5SxinLrTlN02YGmyvVZYgZdyWmvup4em9OWmIZj1/FfDl4YxuZJLmXqhdop01gj\u002BwDMBKgXxET2ou6fRLXdEQGQV7ynQKsgFJsDxTSz5Lh7cp11l9NJN0oJEhQHudmwHWTYmYurjKplm/AdE/8QMs42E9IYV3k\u002BRyBinj6HKGrBQ7fP60s83/XjEAvTPBNK\u002BN9VwZX3p7X7qkJbOO577nOVW8BHUFdy\u002BUPsJTd9WxsNJ6VfIVbEyavx1DEI0ZcHZzGITdBC86h34thSG3J\u002Bfl8nXhFJLL0swJIkVXwWehes1L4F9R06uiQM105\u002Bcq4pc1Xh0YOFzkqEW31OLq4sUWiwpTbEeHkx7JP9PEVuvl3j\u002BuImJJiUJxZzgamf7It14IXVzc1nZQrcr\u002BT/iIIFFa0vajPMBjzQLI4gUObfofAId1vPiOCAfIXQ==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "0us3xnzF\u002By0IUQLvQMzsPQ==", - "Date": "Thu, 08 Jul 2021 16:23:24 GMT", - "ETag": "\u00220x8D9422CB5F31E8E\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:24 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "cb4bdeda-c881-fa7e-be27-ad3317db0cd7", - "x-ms-content-crc64": "XUfFyxLLmWI=", - "x-ms-request-id": "4a2eeed4-101e-0004-4115-7405ac000000", + "Content-Length": "0", + "Content-MD5": "/kbV0HYbnkGQe5IFWwaAMw==", + "Date": "Wed, 11 Aug 2021 19:42:23 GMT", + "ETag": "\u00220x8D95D002465A7C0\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:24 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "71f41459-4041-ded0-4e71-136358cbcaee", + "x-ms-content-crc64": "38k\u002BWksmWfM=", + "x-ms-request-id": "b1226f36-d01e-004a-44e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:24.8239246Z" + "x-ms-version-id": "2021-08-11T19:42:24.1660864Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8a50af57-9187-16e0-0566-05c79c7e0056/test-blob-f46066c1-3fcd-678e-01f3-3756fed16ab6?sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A25Z\u0026sr=b\u0026sp=racwdxltmei\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-8a50af57-9187-16e0-0566-05c79c7e0056?sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A24Z\u0026sr=b\u0026sp=racwdxltmei\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-181de0464ea903439e5105fd990e551a-2495d3ec1c991246-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "9d4b19fc-d952-910e-95f9-b319939cc773", + "traceparent": "00-9e3a546392e69046ab79ea112103335c-78d60ccea489f94e-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f3356817-5713-331c-c76c-ebd8d4e28ef5", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:25 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:24 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -60,30 +51,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:24 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "9d4b19fc-d952-910e-95f9-b319939cc773", + "Date": "Wed, 11 Aug 2021 19:42:23 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "f3356817-5713-331c-c76c-ebd8d4e28ef5", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:25 GMT", - "x-ms-request-id": "4a2eeed7-101e-0004-4315-7405ac000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:24 GMT", + "x-ms-request-id": "b1226fc2-d01e-004a-32e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8a50af57-9187-16e0-0566-05c79c7e0056/test-blob-f46066c1-3fcd-678e-01f3-3756fed16ab6?sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A25Z\u0026sr=b\u0026sp=racwdxltmei\u0026sig=Sanitized\u0026comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-8a50af57-9187-16e0-0566-05c79c7e0056?sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A24Z\u0026sr=b\u0026sp=racwdxltmei\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-fe1e4d44f6c4274088889dd466fec282-1ebf5a3cc3928f4b-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "fd37b799-6f8f-3d84-59a3-5d19a302a02a", + "traceparent": "00-bf0115f534c02a45aba10f894e6029eb-07ab9e7b72c4dd4f-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f04c3c64-d695-82da-c218-0315dca625db", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -92,119 +77,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:24 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "fd37b799-6f8f-3d84-59a3-5d19a302a02a", + "Date": "Wed, 11 Aug 2021 19:42:23 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "f04c3c64-d695-82da-c218-0315dca625db", "x-ms-legal-hold": "false", - "x-ms-request-id": "4a2eeeda-101e-0004-4615-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8a50af57-9187-16e0-0566-05c79c7e0056?restype=container\u0026comp=list\u0026include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-b4f5be1d7f2d5443ae726a838887506f-648bba139444ce4c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "db80d8d4-c964-f5e3-b70e-96f279c1dfc0", - "x-ms-date": "Thu, 08 Jul 2021 16:23:25 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "x-ms-request-id,x-ms-client-request-id,Server,x-ms-version,Content-Type,Content-Length,Date,Transfer-Encoding", - "Content-Type": "application/xml", - "Date": "Thu, 08 Jul 2021 16:23:24 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "db80d8d4-c964-f5e3-b70e-96f279c1dfc0", - "x-ms-request-id": "4a2eeedd-101e-0004-4915-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://seanoauthstage.blob.core.windows.net/\u0022 ContainerName=\u0022test-container-8a50af57-9187-16e0-0566-05c79c7e0056\u0022\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-f46066c1-3fcd-678e-01f3-3756fed16ab6\u003C/Name\u003E\u003CVersionId\u003E2021-07-08T16:23:24.8239246Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 08 Jul 2021 16:23:24 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 08 Jul 2021 16:23:24 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D9422CB5F31E8E\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003E0us3xnzF\u002By0IUQLvQMzsPQ==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003CImmutabilityPolicyUntilDate\u003EThu, 08 Jul 2021 16:28:25 GMT\u003C/ImmutabilityPolicyUntilDate\u003E\u003CImmutabilityPolicyMode\u003Eunlocked\u003C/ImmutabilityPolicyMode\u003E\u003CLegalHold\u003Efalse\u003C/LegalHold\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8a50af57-9187-16e0-0566-05c79c7e0056/test-blob-f46066c1-3fcd-678e-01f3-3756fed16ab6?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-ef55124f9c388b4fa72ce062052d5a6f-0e5cf6301fbe854e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "cb456ded-c581-dbc6-947d-e087076cab7d", - "x-ms-date": "Thu, 08 Jul 2021 16:23:25 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:24 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "cb456ded-c581-dbc6-947d-e087076cab7d", - "x-ms-request-id": "4a2eeedf-101e-0004-4a15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-8a50af57-9187-16e0-0566-05c79c7e0056/test-blob-f46066c1-3fcd-678e-01f3-3756fed16ab6", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-b20c93d04e720341af1bd3ef5d511b34-276008a988b9bd4f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "0b0435a6-137b-b23e-1295-ceb4acbdf4eb", - "x-ms-date": "Thu, 08 Jul 2021 16:23:25 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:24 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "0b0435a6-137b-b23e-1295-ceb4acbdf4eb", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2eeee1-101e-0004-4c15-7405ac000000", + "x-ms-request-id": "b122700a-d01e-004a-67e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-07-08T11:23:25.0734027-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:24.2329902-07:00", "RandomSeed": "1278407028", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\nXClient\nba45b233-e2ef-4169-8808-49eb0d8eba0d" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(All)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(All)Async.json index 8f8478df8dfe7..562810c6fa03f 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(All)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(All)Async.json @@ -1,58 +1,49 @@ { "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-121ccbbd-a9ef-c4cf-c3f0-0ea18b198c92/test-blob-6a3ac776-83fd-c126-6d7a-7469bb1f042e", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-121ccbbd-a9ef-c4cf-c3f0-0ea18b198c92", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-440a0bc072dc6d428e720cc91b63e70c-d372473aad633a4c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-8caf248645e9c644b0e7300fe0d7cda5-7fd667d4d86f2f45-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "c513266c-907a-c9ec-0a2d-941511d2a7f7", - "x-ms-date": "Thu, 08 Jul 2021 16:23:48 GMT", + "x-ms-client-request-id": "b802175f-73d9-f8bb-f038-f4f3d1b42106", + "x-ms-date": "Wed, 11 Aug 2021 19:42:37 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "c8F/wc/qHviKIDyVprzRqwHxJWgNoY06pFuldDVmCaTs4C7KmcrDi6lC4N1HkBqwqchnyfmcINE0RRxzRanCJBeXqcaOBhI3Lpm/y8Gv8hRA9Mps/j\u002BqUMBcllOuT0X/f7zGsOZUIqK1MJtg3FUQhFIIMlHeViXX7FkGMXC\u002BiN5TwEsF6UIt7NEots6jSnNqSxEBphz0ICmW7sONTvAy96e8DBwJC5oQ2kZ/tp9WM6Hmm\u002BZeveLCX58ibvt/n57g9b8n5z1WYUB38cvVdGmJP7ohp7MK0znF\u002Bq195pyekTqonsHfL0xjjzmm5swW7Oo2mC5BXfjq1iGFYuyQ2Xqj2F\u002BQLdWoqg9tvhd5ZOxtrg3CRk5tXTNCvcifWc1f07a/Ag5shr8Vje4e05/gcXI1GLPfzpIsNXssTXANCFBCDephumHeASdOrblgTomUYktWakEZgAUjk8ySQDhOB4Sd3Ma0frcQVhaLkCDZzObxl\u002Bsktp4OKIzlPiaUS8Dv/6U0wnLC4OOURRMqjfDkSsfmoalMKlDmj7Q6zkCQewpWnJB7pQl0LrYIkHGK45qbAfRfrqoXo9VUTjK9iBGjA8oI1PFgaaS9cXLyRJrfW6sZnsxMMM1gPvm7JlfXtqakZIyngQ6oO5hPojw4JV46dPKGo\u002BpEV9L8qJb4pEJN5brLTd8NONmdcGI0/I6QJxiagLFkUBK7Xw26qtl4sJdVAb2CbNh/LDwZ6TOIEFpEbIF9XSOR6ZSnEO3RU44AJMDK3/rQDrpAG1N1SmffMk\u002BzdT1X\u002BlNzxBgo2lzqrdmtGcRyvTBfc17GPUHPG54tyN2eHt1QqCpsVxviqDNeVW56yDGibHUeVALfkbwRo6h6\u002BhF\u002BTI/7XXGaBWUVfcoqZ\u002BfTVVNti1tof8nbcBZtW7RyaK4h4Anef2rACGYPCNc3tSrVPU5UDG\u002B2Fc3FIOxaLKqxoxQcCIfe9NXorIL0WXbyo7vsmB5mHVs\u002Ba8o8GV9\u002BZdu8XWXCG6yj90h4bF/swrxW0nwwbpSLS4W53Z28odt2aUenN/sQMIgOSaHW7rH7UqkN5UbiTvdHMRLgCD0P5lVsAQIYRYrBRaH0ISTztVzTvovzr7uUkxtPYAboMChK/mNLaeyv4g0eS6Cl7izTU3u2DEqyGzaZ2G3myeSE2RV5qSPBp0xwJNt\u002B1WMb76XvfAyLMiPdmOMsspB\u002ByBkomnKLK0QJEawuRehvM0bTfujI90zY\u002BafxmxFAlfS78lvBVTrxkMNh5mpfXOw7bmScWDSottHMUKHLmo8zyXy4c1OMrd4M4u4kZhDieJy6tS2sozzAEzuK9QWYJvU0Lhzup\u002BiZrsCGkHZGg0/A6tcEEORhhiU/9w==", + "RequestBody": "dsc6av2DJsFtenRpux8ELnPBf8HP6h74iiA8laa80asB8SVoDaGNOqRbpXQ1Zgmk7OAuypnKw4upQuDdR5AasKnIZ8n5nCDRNEUcc0WpwiQXl6nGjgYSNy6Zv8vBr/IUQPTKbP4/qlDAXJZTrk9F/3\u002B8xrDmVCKitTCbYNxVEIRSCDJR3lYl1\u002BxZBjFwvojeU8BLBelCLezRKLbOo0pzaksRAaYc9CAplu7DjU7wMvenvAwcCQuaENpGf7afVjOh5pvmXr3iwl\u002BfIm77f5\u002Be4PW/J\u002Bc9VmFAd/HL1XRpiT\u002B6IaezCtM5xfqtfeacnpE6qJ7B3y9MY485pubMFuzqNpguQV346tYhhWLskNl6o9hfkC3VqKoPbb4XeWTsba4NwkZObV0zQr3In1nNX9O2vwIObIa/FY3uHtOf4HFyNRiz386SLDV7LE1wDQhQQg3qYbph3gEnTq25YE6JlGJLVmpBGYAFI5PMkkA4TgeEndzGtH63EFYWi5Ag2czm8ZfrJLaeDiiM5T4mlEvA7/\u002BlNMJywuDjlEUTKo3w5ErH5qGpTCpQ5o\u002B0Os5AkHsKVpyQe6UJdC62CJBxiuOamwH0X66qF6PVVE4yvYgRowPKCNTxYGmkvXFy8kSa31urGZ7MTDDNYD75uyZX17ampGSMp4EOqDuYT6I8OCVeOnTyhqPqRFfS/KiW\u002BKRCTeW6y03fDTjZnXBiNPyOkCcYmoCxZFASu18NuqrZeLCXVQG9gmzYfyw8GekziBBaRGyBfV0jkemUpxDt0VOOACTAyt/60A66QBtTdUpn3zJPs3U9V/pTc8QYKNpc6q3ZrRnEcr0wX3Nexj1BzxueLcjdnh7dUKgqbFcb4qgzXlVuesgxomx1HlQC35G8EaOoevoRfkyP\u002B11xmgVlFX3KKmfn01VTbYtbaH/J23AWbVu0cmiuIeAJ3n9qwAhmDwjXN7Uq1T1OVAxvthXNxSDsWiyqsaMUHAiH3vTV6KyC9Fl28qO77JgeZh1bPmvKPBlffmXbvF1lwhuso/dIeGxf7MK8VtJ8MG6Ui0uFud2dvKHbdmlHpzf7EDCIDkmh1u6x\u002B1KpDeVG4k73RzES4Ag9D\u002BZVbAECGEWKwUWh9CEk87Vc076L86\u002B7lJMbT2AG6DAoSv5jS2nsr\u002BINHkugpe4s01N7tgxKshs2mdht5snkhNkVeakjwadMcCTbftVjG\u002B\u002Bl73wMizIj3ZjjLLKQfsgZKJpyiytECRGsLkXobzNG037oyPdM2Pmn8ZsRQJX0u/JbwVU68ZDDYeZqX1zsO25knFg0qLbRzFChy5qPM8l8uHNTjK3eDOLuJGYQ4nicurUtrKM8wBM7ivUFmCb1NC4c7qfoma7Ahg==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "\u002BVaoWyJkX6ZSnvadwUhAvQ==", - "Date": "Thu, 08 Jul 2021 16:23:47 GMT", - "ETag": "\u00220x8D9422CC3D98C5F\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:48 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "c513266c-907a-c9ec-0a2d-941511d2a7f7", - "x-ms-content-crc64": "K2aL7ITA6Ok=", - "x-ms-request-id": "4a2ef09f-101e-0004-2315-7405ac000000", + "Content-Length": "0", + "Content-MD5": "r2npo6NOqhLOEEdC9cMivQ==", + "Date": "Wed, 11 Aug 2021 19:42:37 GMT", + "ETag": "\u00220x8D95D002CA1526E\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:37 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "b802175f-73d9-f8bb-f038-f4f3d1b42106", + "x-ms-content-crc64": "VOrnrZNoNik=", + "x-ms-request-id": "b122a308-d01e-004a-6fe9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:48.1454441Z" + "x-ms-version-id": "2021-08-11T19:42:37.9788910Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-121ccbbd-a9ef-c4cf-c3f0-0ea18b198c92/test-blob-6a3ac776-83fd-c126-6d7a-7469bb1f042e?sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A48Z\u0026sr=b\u0026sp=racwdxltmei\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-121ccbbd-a9ef-c4cf-c3f0-0ea18b198c92?sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A38Z\u0026sr=b\u0026sp=racwdxltmei\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-914fc8ccd5c3d749be627dd1f476c42d-ba442d47ab0ce649-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "5ff5ddef-7a11-cf7d-2b38-adabdfa5e61e", + "traceparent": "00-2afa7cb5aa80c74da2f7f0e71eb7d807-170503daeae9f24b-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8189afae-08ac-1cad-bb4e-9216ccf60650", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:48 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:38 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -60,30 +51,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:47 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "5ff5ddef-7a11-cf7d-2b38-adabdfa5e61e", + "Date": "Wed, 11 Aug 2021 19:42:37 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "8189afae-08ac-1cad-bb4e-9216ccf60650", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:48 GMT", - "x-ms-request-id": "4a2ef0a0-101e-0004-2415-7405ac000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:38 GMT", + "x-ms-request-id": "b122a382-d01e-004a-59e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-121ccbbd-a9ef-c4cf-c3f0-0ea18b198c92/test-blob-6a3ac776-83fd-c126-6d7a-7469bb1f042e?sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A48Z\u0026sr=b\u0026sp=racwdxltmei\u0026sig=Sanitized\u0026comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-121ccbbd-a9ef-c4cf-c3f0-0ea18b198c92?sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A38Z\u0026sr=b\u0026sp=racwdxltmei\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-f38fa0bf7bee8743942a72791d3bdeed-f381a4ebfbe3134c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "33264326-48dd-34e5-31b9-55735a013d15", + "traceparent": "00-d6280adfe59db94f828d575401636e67-8dd63a9f554dde41-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2144fc90-9f2a-645a-79f7-0a2bfdd5fc13", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -92,118 +77,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:48 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "33264326-48dd-34e5-31b9-55735a013d15", + "Date": "Wed, 11 Aug 2021 19:42:37 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "2144fc90-9f2a-645a-79f7-0a2bfdd5fc13", "x-ms-legal-hold": "false", - "x-ms-request-id": "4a2ef0a2-101e-0004-2615-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-121ccbbd-a9ef-c4cf-c3f0-0ea18b198c92?restype=container\u0026comp=list\u0026include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "9c84993c-b27f-4840-170f-ef7049e60977", - "x-ms-date": "Thu, 08 Jul 2021 16:23:48 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "x-ms-request-id,x-ms-client-request-id,Server,x-ms-version,Content-Type,Content-Length,Date,Transfer-Encoding", - "Content-Type": "application/xml", - "Date": "Thu, 08 Jul 2021 16:23:48 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9c84993c-b27f-4840-170f-ef7049e60977", - "x-ms-request-id": "4a2ef0a4-101e-0004-2815-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://seanoauthstage.blob.core.windows.net/\u0022 ContainerName=\u0022test-container-121ccbbd-a9ef-c4cf-c3f0-0ea18b198c92\u0022\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-6a3ac776-83fd-c126-6d7a-7469bb1f042e\u003C/Name\u003E\u003CVersionId\u003E2021-07-08T16:23:48.1454441Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 08 Jul 2021 16:23:48 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 08 Jul 2021 16:23:48 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D9422CC3D98C5F\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003E\u002BVaoWyJkX6ZSnvadwUhAvQ==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003CImmutabilityPolicyUntilDate\u003EThu, 08 Jul 2021 16:28:48 GMT\u003C/ImmutabilityPolicyUntilDate\u003E\u003CImmutabilityPolicyMode\u003Eunlocked\u003C/ImmutabilityPolicyMode\u003E\u003CLegalHold\u003Efalse\u003C/LegalHold\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-121ccbbd-a9ef-c4cf-c3f0-0ea18b198c92/test-blob-6a3ac776-83fd-c126-6d7a-7469bb1f042e?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-098e577b49aa7f499296c40c01bb09ce-58a68e07ee8a714e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c137ffe8-a17d-b495-333d-b8a2f5b4069c", - "x-ms-date": "Thu, 08 Jul 2021 16:23:48 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:48 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "c137ffe8-a17d-b495-333d-b8a2f5b4069c", - "x-ms-request-id": "4a2ef0a8-101e-0004-2b15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-121ccbbd-a9ef-c4cf-c3f0-0ea18b198c92/test-blob-6a3ac776-83fd-c126-6d7a-7469bb1f042e", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-d157f0ded45ea24989496aafe996dc70-96fd443afb9c0541-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4a880f4a-48af-19fa-5f0f-551274bf4c68", - "x-ms-date": "Thu, 08 Jul 2021 16:23:48 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:48 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "4a880f4a-48af-19fa-5f0f-551274bf4c68", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2ef0a9-101e-0004-2c15-7405ac000000", + "x-ms-request-id": "b122a3c4-d01e-004a-12e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-07-08T11:23:48.3383348-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:38.0624384-07:00", "RandomSeed": "779668295", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\nXClient\nba45b233-e2ef-4169-8808-49eb0d8eba0d" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(SetImmutabilityPolicy).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(SetImmutabilityPolicy).json index 5623122e0917e..5eddd14bc849d 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(SetImmutabilityPolicy).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(SetImmutabilityPolicy).json @@ -1,58 +1,49 @@ { "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-12ad17f9-cc2a-01c8-23aa-9fc27864b9b3/test-blob-436e10ad-ce4a-1298-9ba7-7a3cce49f5e1", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-12ad17f9-cc2a-01c8-23aa-9fc27864b9b3", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-951260dab0d3ea439962a31e750beb7e-083ae25b999d5b45-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-e577b0096c0eb64e9f3fbb0cccaf72a3-e02c2de3cfef454d-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "87f3a052-a6c2-68a3-df13-e850be5e9ce2", - "x-ms-date": "Thu, 08 Jul 2021 16:23:27 GMT", + "x-ms-client-request-id": "60fddd65-d3c4-a4a9-3298-b0ea2628de3e", + "x-ms-date": "Wed, 11 Aug 2021 19:42:24 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "peVVmYha6neG\u002BBEb1Sojbbr0LVH9DOkqfpt3glKMM9m1vRyTDiArUib2vFK9fTxwhAyB2Ryk5Jn8Kxvs42cl\u002BsU3ZhcNkF\u002BayNsrBk\u002BXbABfBv1GClm9EdmDl\u002BMEP2\u002B\u002B0cKMhRYkYvSt5xFAeN5JZL4ajdxp3u9selU\u002Bivh7lYlsbDSNCubpOqMJmSJHfJj6OjIk6bKSVPPSIAvB5dj7MVGI1Aupu1rYMFI5YETNJP29RFDGV6vX2hhBu\u002BrbKFXLDWjRv6eMUX7XS7hfWfSuBfwNBKGHNdmlsfrzZwBw/Aj9bVLc\u002B2RWMPLS7gvzd4Akk7btzSSzQ9iPKw6tmOl9Z0\u002BwYeuh0QmXt9OutUbNsjl5z9RKgi7kSSl5TdBVqZgJVIe8QhWVgsGsVhZQBY6SwXjVM8gUM\u002BUgzBjCJ4Q4QQ47pGG/EHAj5E0TnSwYk0Sb54tYgHXP9CChnHX90ls8dBQIFWAs0rAHsU57AZa4BzjUJj/44MCYa69BHXT6JRHy1igXD37jbhXbUM8nU/OJ6JQ8KasbRJRTcKmw67Q8DYs8iSptofi68LgqHY/xcRi8tzTfvfxl1pKUw5/UMoNgnkND6srIHEecgjjz8SYEYv\u002BR9DSAXE\u002BP1rKY2d1Y5r00yX5LrYZO85rsQzvDceVrj2GgQj5O4ELztBMXMEJqQ5t6vyenuLR4QwCZkxkUy2XNLEl8uKN/5uk8WPlzN8NYgv\u002BfSLK\u002BxNatJ/89tUwo3\u002BmuSQP47Yv4\u002B9g9amC6BQw9QRAadIKyDmhzzpCkQTGdFHgQxO2/X5Vzp03agVl18iHyAHM8Dmtm/DubhR/7VLmnn1boqkEffeJ7ps002I0O/dxusUC9YAUNqcixJNl2eFOUMuEDjUjg04ORwGedMSSujYhCjKJ46j9Q2wB5bVgIBS56oKWrCnCUjd29K5\u002Beb3ejA5dRM\u002BywG0eis7JHZ2Yqibs5I5F\u002BAoIYrv7Eu7\u002BfsmuI1WnBt9FByYVeCVe\u002BTCZ3kqLkZEvmJQAUOYXt61\u002BIAwFGv5L8adHp91oLIPkrWWHYTSkcuk0gobBprX5MVN4l1gVVeIyTeynQ\u002Bmzx2wUH6N8jFZ42a0izJR3ik7tTnKN85Urz1uHURNH/TMDgL8aqYcWeKT4/72q9oVJvsehtfF3JdPW7ExL9TtHMNh6I0/ZXNzH2tHNkPPbfNjSPZZLpks9iF7rR706yodptcrhLNc5cF3q2dsfqZDj\u002B293ebug\u002B46RPJrs8hkjjQxOZ98o9kwBlM04YMhsHeLOB0hNw1DLxL44U/A4TIJEx0zO0UW1uwUfceDuaJbGIR64IurQ0c2/gp8g7KJfyUhK85l7oUyZFExDLk1z3VgndjLVgCg==", + "RequestBody": "rRBuQ0rOmBKbp3o8zkn14aXlVZmIWup3hvgRG9UqI2269C1R/QzpKn6bd4JSjDPZtb0ckw4gK1Im9rxSvX08cIQMgdkcpOSZ/Csb7ONnJfrFN2YXDZBfmsjbKwZPl2wAXwb9RgpZvRHZg5fjBD9vvtHCjIUWJGL0recRQHjeSWS\u002BGo3cad7vbHpVPor4e5WJbGw0jQrm6TqjCZkiR3yY\u002BjoyJOmyklTz0iALweXY\u002BzFRiNQLqbta2DBSOWBEzST9vURQxler19oYQbvq2yhVyw1o0b\u002BnjFF\u002B10u4X1n0rgX8DQShhzXZpbH682cAcPwI/W1S3PtkVjDy0u4L83eAJJO27c0ks0PYjysOrZjpfWdPsGHrodEJl7fTrrVGzbI5ec/USoIu5EkpeU3QVamYCVSHvEIVlYLBrFYWUAWOksF41TPIFDPlIMwYwieEOEEOO6RhvxBwI\u002BRNE50sGJNEm\u002BeLWIB1z/QgoZx1/dJbPHQUCBVgLNKwB7FOewGWuAc41CY/\u002BODAmGuvQR10\u002BiUR8tYoFw9\u002B424V21DPJ1PzieiUPCmrG0SUU3CpsOu0PA2LPIkqbaH4uvC4Kh2P8XEYvLc03738ZdaSlMOf1DKDYJ5DQ\u002BrKyBxHnII48/EmBGL/kfQ0gFxPj9aymNndWOa9NMl\u002BS62GTvOa7EM7w3Hla49hoEI\u002BTuBC87QTFzBCakOber8np7i0eEMAmZMZFMtlzSxJfLijf\u002BbpPFj5czfDWIL/n0iyvsTWrSf/PbVMKN/prkkD\u002BO2L\u002BPvYPWpgugUMPUEQGnSCsg5oc86QpEExnRR4EMTtv1\u002BVc6dN2oFZdfIh8gBzPA5rZvw7m4Uf\u002B1S5p59W6KpBH33ie6bNNNiNDv3cbrFAvWAFDanIsSTZdnhTlDLhA41I4NODkcBnnTEkro2IQoyieOo/UNsAeW1YCAUueqClqwpwlI3dvSufnm93owOXUTPssBtHorOyR2dmKom7OSORfgKCGK7\u002BxLu/n7JriNVpwbfRQcmFXglXvkwmd5Ki5GRL5iUAFDmF7etfiAMBRr\u002BS/GnR6fdaCyD5K1lh2E0pHLpNIKGwaa1\u002BTFTeJdYFVXiMk3sp0Pps8dsFB\u002BjfIxWeNmtIsyUd4pO7U5yjfOVK89bh1ETR/0zA4C/GqmHFnik\u002BP\u002B9qvaFSb7HobXxdyXT1uxMS/U7RzDYeiNP2Vzcx9rRzZDz23zY0j2WS6ZLPYhe60e9OsqHabXK4SzXOXBd6tnbH6mQ4/tvd3m7oPuOkTya7PIZI40MTmffKPZMAZTNOGDIbB3izgdITcNQy8S\u002BOFPwOEyCRMdMztFFtbsFH3Hg7miWxiEeuCLq0NHNv4KfIOyiX8lISvOZe6A==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "47XQcPhp1iy2j0vZJwiFsQ==", - "Date": "Thu, 08 Jul 2021 16:23:26 GMT", - "ETag": "\u00220x8D9422CB777D758\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:27 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "87f3a052-a6c2-68a3-df13-e850be5e9ce2", - "x-ms-content-crc64": "\u002BnmB9pS9qJc=", - "x-ms-request-id": "4a2eef03-101e-0004-6b15-7405ac000000", + "Content-Length": "0", + "Content-MD5": "kbyhLtlbWElpB7ogrZRwqg==", + "Date": "Wed, 11 Aug 2021 19:42:23 GMT", + "ETag": "\u00220x8D95D0024939DCE\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:24 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "60fddd65-d3c4-a4a9-3298-b0ea2628de3e", + "x-ms-content-crc64": "ocBSdWfb2SU=", + "x-ms-request-id": "b122704e-d01e-004a-1ee9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:27.3714520Z" + "x-ms-version-id": "2021-08-11T19:42:24.4672974Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-12ad17f9-cc2a-01c8-23aa-9fc27864b9b3/test-blob-436e10ad-ce4a-1298-9ba7-7a3cce49f5e1?sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A27Z\u0026sr=b\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-12ad17f9-cc2a-01c8-23aa-9fc27864b9b3?sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A24Z\u0026sr=b\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-a73e071eba6cf848950ac4c64c66c835-10fea5a63a5bbe45-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ec8acb78-d9c1-bf47-3994-80b1ea59e6d4", + "traceparent": "00-e1c277cfd15aa047987ac3eef61a1b27-4a3f5f20ac5b2b4c-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dfad4791-fee9-7f24-7da1-e1771ba935cf", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:27 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:24 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -60,30 +51,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:26 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "ec8acb78-d9c1-bf47-3994-80b1ea59e6d4", + "Date": "Wed, 11 Aug 2021 19:42:23 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "dfad4791-fee9-7f24-7da1-e1771ba935cf", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:27 GMT", - "x-ms-request-id": "4a2eef05-101e-0004-6d15-7405ac000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:24 GMT", + "x-ms-request-id": "b12270c3-d01e-004a-77e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-12ad17f9-cc2a-01c8-23aa-9fc27864b9b3/test-blob-436e10ad-ce4a-1298-9ba7-7a3cce49f5e1?sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A27Z\u0026sr=b\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-12ad17f9-cc2a-01c8-23aa-9fc27864b9b3?sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A24Z\u0026sr=b\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-6819496fa1e6e84ab0cf087a2720ed0e-161d04ec98aa7941-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "f3d719dd-afd4-b720-ffed-a5547d739523", + "traceparent": "00-7682db9163e61148a0d112756d0f703e-2671c73ab9ff9247-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "de59cefc-fe7b-5455-7b73-0a21c52b4d36", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -92,119 +77,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:26 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "f3d719dd-afd4-b720-ffed-a5547d739523", + "Date": "Wed, 11 Aug 2021 19:42:24 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "de59cefc-fe7b-5455-7b73-0a21c52b4d36", "x-ms-legal-hold": "false", - "x-ms-request-id": "4a2eef07-101e-0004-6f15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-12ad17f9-cc2a-01c8-23aa-9fc27864b9b3?restype=container\u0026comp=list\u0026include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-668a1c1a50754041b25d832879e9e020-970a6b9ce1d26c44-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "d1d34a47-f381-4cff-aea1-de8d5800d708", - "x-ms-date": "Thu, 08 Jul 2021 16:23:27 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "x-ms-request-id,x-ms-client-request-id,Server,x-ms-version,Content-Type,Content-Length,Date,Transfer-Encoding", - "Content-Type": "application/xml", - "Date": "Thu, 08 Jul 2021 16:23:26 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "d1d34a47-f381-4cff-aea1-de8d5800d708", - "x-ms-request-id": "4a2eef0a-101e-0004-7215-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://seanoauthstage.blob.core.windows.net/\u0022 ContainerName=\u0022test-container-12ad17f9-cc2a-01c8-23aa-9fc27864b9b3\u0022\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-436e10ad-ce4a-1298-9ba7-7a3cce49f5e1\u003C/Name\u003E\u003CVersionId\u003E2021-07-08T16:23:27.3714520Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 08 Jul 2021 16:23:27 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 08 Jul 2021 16:23:27 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D9422CB777D758\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003E47XQcPhp1iy2j0vZJwiFsQ==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003CImmutabilityPolicyUntilDate\u003EThu, 08 Jul 2021 16:28:27 GMT\u003C/ImmutabilityPolicyUntilDate\u003E\u003CImmutabilityPolicyMode\u003Eunlocked\u003C/ImmutabilityPolicyMode\u003E\u003CLegalHold\u003Efalse\u003C/LegalHold\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-12ad17f9-cc2a-01c8-23aa-9fc27864b9b3/test-blob-436e10ad-ce4a-1298-9ba7-7a3cce49f5e1?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-a95c63791ef10f4e957c61051e8455ae-f3192511ca4e6f46-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "320c97f3-c39f-c6a2-0d2e-9eae77c62175", - "x-ms-date": "Thu, 08 Jul 2021 16:23:27 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:27 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "320c97f3-c39f-c6a2-0d2e-9eae77c62175", - "x-ms-request-id": "4a2eef0c-101e-0004-7315-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-12ad17f9-cc2a-01c8-23aa-9fc27864b9b3/test-blob-436e10ad-ce4a-1298-9ba7-7a3cce49f5e1", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-d49e794864839143b53a629810317a01-df1b7060c7146d4a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c19a05b8-a4f4-1a68-43a0-ab8262380fff", - "x-ms-date": "Thu, 08 Jul 2021 16:23:27 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:27 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "c19a05b8-a4f4-1a68-43a0-ab8262380fff", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2eef0e-101e-0004-7515-7405ac000000", + "x-ms-request-id": "b12270fb-d01e-004a-23e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-07-08T11:23:27.5642016-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:24.5339897-07:00", "RandomSeed": "72081194", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\nXClient\nba45b233-e2ef-4169-8808-49eb0d8eba0d" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(SetImmutabilityPolicy)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(SetImmutabilityPolicy)Async.json index 1400adde22b4c..57d2600273672 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(SetImmutabilityPolicy)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSas(SetImmutabilityPolicy)Async.json @@ -1,58 +1,49 @@ { "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d5f7146e-390c-13c6-323c-98b8c59a05cb/test-blob-4cecfe6a-5f0a-03bc-b1f8-b787943e8cf0", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-d5f7146e-390c-13c6-323c-98b8c59a05cb", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-2b20df2ec0c44247ac8a6e139f2c5812-f5df51abc9b2e04e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-f8cfd1eb58116947998682b6dac74321-b44b43a9bb1d1a46-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "de7cd59d-4761-7747-7712-4807cf731e56", - "x-ms-date": "Thu, 08 Jul 2021 16:23:50 GMT", + "x-ms-client-request-id": "a71fdf7d-174e-74d0-5c23-dbbbec26dcbc", + "x-ms-date": "Wed, 11 Aug 2021 19:42:38 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "S3E3dqCzBau3\u002BtYU4SdRTeuVPhpwNR8PV/MjE4I\u002Bf/Owp21TYo4qt/hAlRCIqCKJp2qb/wBxfxVSKB6tj/IpeHrjYzq6/epca4YhMJ8Ohq/RmWsYo4DyPydXADpwfCcGFh2VpUTnz6p/PpR6T091Q6Ju2/aHEdT68CQSYvyw7O5fGxqCeeFr6cnBmGTseO/Y4b2XAqAxfgRImrQf1G2tzlKlGzM188rAA/IsxnlwDng1OoA/GOpNLZwVOd4tSxRcFMkSRl27o\u002B7y1v6uBLiL14s76prtbbZoWO2XH7nrk7jd0LKvXsgaeZeSTULrninkiWFS8WB6b6YTqe1wJIM0BkJG0TQG23nDIHEDWyBzfbrDs5VYmaJXY2ALnLTbqlUTXUb/pM303a3oj9DudhSGnywzrHHt3G2g723T\u002Bz/E6HYc7/3ZdNjsz9XobwrSaOxMhPyIp/7jJYHZX7VfIOJuI6Za0ocWrCtTRtybBWxjzYaBh3ZDPEB4OMl8ABUjja7zeUxjeJZlNdfRNGEhSCAUdZEu3plrKuZm4Zq9mqwVMLkuqIsf/1XwHFGecQjfVvCpZ4qE9K8Vh09m/Zb8p5sruwSn85\u002BU9HY7PsFIzLjdhoupFDMhkTsKGCA8uQK/9HW2c7YEN2NQFHIUSLbtzLuWiHYKUpNoCSnIndp/WDtzfElMklkC2U4nWP/ADUmEHExlpjGLtKHhTWmMO5qJ0bw3oMxsoTphk68n4/mTp/zgRICOGrIJ58eoakTwdp20nodDiGx8F3sRAxKCZNGoTqZtq/cZ\u002BrcKLrgExDb2cR0Rc0RyTx\u002BPZCwFfBafh4P2/xyeg8qmmqPQOVq0d1JFG5L0cPCMNf6G3UfKFH6gaqY0DsQaWO5SatmgoRbE2\u002Bzav2GEqheTackdF6WD3IUlMM60f2mNKsKjogUX65TnwgJb8FUcHL\u002BPoaT7/UBIz45Ue3FHEFuCTJWe4AgRfH01NVWiJ\u002BwwCBMPJN7Eki2CWtJ3wnAin7Gn2KO/fTu3fSUnxcfrpqeiJHJdOOt9vrloHIU2mrkNE5Wj\u002B09IcIvXV6e4nc1ll7Qq1Z7\u002BxGfGKRrqV2G2geNrGrIxR6pYWbPnheBExCDsAoXQC8UaD04u3dE0XhkpIdbDTIIbNE8K0nvrFj6GgWX5/VXc5XUeUAtjA2rYJPuavWQJgXed0M41xjhJL/gPqFtsOmDDTTxhpPt3tzDlMa6AUFjafADtWyyHph891CASVFoOa\u002Bma1nAoqNx7JhmdUJSKyd\u002BfNCxaf94zPKcdJM/aZWLW1sXE5XnostMkcTUT6VWKsgtBcx8us\u002BwKZ5rICoQNocG2xnnPxeRltoJYNg6pIFJRk3HEmfFDqCPZug==", + "RequestBody": "av7sTApfvAOx\u002BLeHlD6M8EtxN3agswWrt/rWFOEnUU3rlT4acDUfD1fzIxOCPn/zsKdtU2KOKrf4QJUQiKgiiadqm/8AcX8VUigerY/yKXh642M6uv3qXGuGITCfDoav0ZlrGKOA8j8nVwA6cHwnBhYdlaVE58\u002Bqfz6Uek9PdUOibtv2hxHU\u002BvAkEmL8sOzuXxsagnnha\u002BnJwZhk7Hjv2OG9lwKgMX4ESJq0H9Rtrc5SpRszNfPKwAPyLMZ5cA54NTqAPxjqTS2cFTneLUsUXBTJEkZdu6Pu8tb\u002BrgS4i9eLO\u002Bqa7W22aFjtlx\u002B565O43dCyr17IGnmXkk1C654p5IlhUvFgem\u002BmE6ntcCSDNAZCRtE0Btt5wyBxA1sgc326w7OVWJmiV2NgC5y026pVE11G/6TN9N2t6I/Q7nYUhp8sM6xx7dxtoO9t0/s/xOh2HO/92XTY7M/V6G8K0mjsTIT8iKf\u002B4yWB2V\u002B1XyDibiOmWtKHFqwrU0bcmwVsY82GgYd2QzxAeDjJfAAVI42u83lMY3iWZTXX0TRhIUggFHWRLt6ZayrmZuGavZqsFTC5LqiLH/9V8BxRnnEI31bwqWeKhPSvFYdPZv2W/KebK7sEp/OflPR2Oz7BSMy43YaLqRQzIZE7ChggPLkCv/R1tnO2BDdjUBRyFEi27cy7loh2ClKTaAkpyJ3af1g7c3xJTJJZAtlOJ1j/wA1JhBxMZaYxi7Sh4U1pjDuaidG8N6DMbKE6YZOvJ\u002BP5k6f84ESAjhqyCefHqGpE8HadtJ6HQ4hsfBd7EQMSgmTRqE6mbav3Gfq3Ci64BMQ29nEdEXNEck8fj2QsBXwWn4eD9v8cnoPKppqj0DlatHdSRRuS9HDwjDX\u002Bht1HyhR\u002BoGqmNA7EGljuUmrZoKEWxNvs2r9hhKoXk2nJHRelg9yFJTDOtH9pjSrCo6IFF\u002BuU58ICW/BVHBy/j6Gk\u002B/1ASM\u002BOVHtxRxBbgkyVnuAIEXx9NTVVoifsMAgTDyTexJItglrSd8JwIp\u002Bxp9ijv307t30lJ8XH66anoiRyXTjrfb65aByFNpq5DROVo/tPSHCL11enuJ3NZZe0KtWe/sRnxika6ldhtoHjaxqyMUeqWFmz54XgRMQg7AKF0AvFGg9OLt3RNF4ZKSHWw0yCGzRPCtJ76xY\u002BhoFl\u002Bf1V3OV1HlALYwNq2CT7mr1kCYF3ndDONcY4SS/4D6hbbDpgw008YaT7d7cw5TGugFBY2nwA7Vssh6YfPdQgElRaDmvpmtZwKKjceyYZnVCUisnfnzQsWn/eMzynHSTP2mVi1tbFxOV56LLTJHE1E\u002BlVirILQXMfLrPsCmeayAqEDaHBtsZ5z8XkZbaCWA==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "oJMF54jMXg9Z/G04UGuLLA==", - "Date": "Thu, 08 Jul 2021 16:23:50 GMT", - "ETag": "\u00220x8D9422CC5342E2C\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:50 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "de7cd59d-4761-7747-7712-4807cf731e56", - "x-ms-content-crc64": "lPcLV/ekdsY=", - "x-ms-request-id": "4a2ef0d5-101e-0004-4b15-7405ac000000", + "Content-Length": "0", + "Content-MD5": "03PUruTctT8RyaGXNFD0Wg==", + "Date": "Wed, 11 Aug 2021 19:42:37 GMT", + "ETag": "\u00220x8D95D002CDA9540\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:38 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "a71fdf7d-174e-74d0-5c23-dbbbec26dcbc", + "x-ms-content-crc64": "/kp/VZuDbYk=", + "x-ms-request-id": "b122a420-d01e-004a-62e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:50.4161324Z" + "x-ms-version-id": "2021-08-11T19:42:38.3541568Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d5f7146e-390c-13c6-323c-98b8c59a05cb/test-blob-4cecfe6a-5f0a-03bc-b1f8-b787943e8cf0?sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A50Z\u0026sr=b\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-d5f7146e-390c-13c6-323c-98b8c59a05cb?sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A38Z\u0026sr=b\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-a6f8402557824644bc85a8b7f03866f6-63ff96d1d96e3749-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "d3a535bd-fba6-3658-98a8-2f3bcec8a5e8", + "traceparent": "00-67de8452e7d0e4488d044cd67405ed5e-80020eb91a4ccc44-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "85660bf5-da97-1f0a-3e34-c32f76d8859d", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:50 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:38 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -60,30 +51,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:50 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "d3a535bd-fba6-3658-98a8-2f3bcec8a5e8", + "Date": "Wed, 11 Aug 2021 19:42:37 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "85660bf5-da97-1f0a-3e34-c32f76d8859d", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:50 GMT", - "x-ms-request-id": "4a2ef0db-101e-0004-4f15-7405ac000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:38 GMT", + "x-ms-request-id": "b122a4b4-d01e-004a-67e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d5f7146e-390c-13c6-323c-98b8c59a05cb/test-blob-4cecfe6a-5f0a-03bc-b1f8-b787943e8cf0?sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A50Z\u0026sr=b\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-d5f7146e-390c-13c6-323c-98b8c59a05cb?sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A38Z\u0026sr=b\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-e255712db5dbd64a8bf437b2e7d54d4a-820b05c77434da4d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "994aaa8d-4bce-fab0-b32f-edeeaace5175", + "traceparent": "00-00126620387d0c4ba97d25af1e177ec4-6f013a2ef80d1441-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e0c58404-56c0-c325-ca5c-a02c8318009f", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -92,118 +77,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:50 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "994aaa8d-4bce-fab0-b32f-edeeaace5175", + "Date": "Wed, 11 Aug 2021 19:42:37 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "e0c58404-56c0-c325-ca5c-a02c8318009f", "x-ms-legal-hold": "false", - "x-ms-request-id": "4a2ef0e1-101e-0004-5515-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d5f7146e-390c-13c6-323c-98b8c59a05cb?restype=container\u0026comp=list\u0026include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "23ae90a7-0b7d-b91a-d4ca-2d90683719fc", - "x-ms-date": "Thu, 08 Jul 2021 16:23:50 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "x-ms-request-id,x-ms-client-request-id,Server,x-ms-version,Content-Type,Content-Length,Date,Transfer-Encoding", - "Content-Type": "application/xml", - "Date": "Thu, 08 Jul 2021 16:23:50 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "23ae90a7-0b7d-b91a-d4ca-2d90683719fc", - "x-ms-request-id": "4a2ef0eb-101e-0004-5d15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://seanoauthstage.blob.core.windows.net/\u0022 ContainerName=\u0022test-container-d5f7146e-390c-13c6-323c-98b8c59a05cb\u0022\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-4cecfe6a-5f0a-03bc-b1f8-b787943e8cf0\u003C/Name\u003E\u003CVersionId\u003E2021-07-08T16:23:50.4161324Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 08 Jul 2021 16:23:50 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 08 Jul 2021 16:23:50 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D9422CC5342E2C\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003EoJMF54jMXg9Z/G04UGuLLA==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003CImmutabilityPolicyUntilDate\u003EThu, 08 Jul 2021 16:28:50 GMT\u003C/ImmutabilityPolicyUntilDate\u003E\u003CImmutabilityPolicyMode\u003Eunlocked\u003C/ImmutabilityPolicyMode\u003E\u003CLegalHold\u003Efalse\u003C/LegalHold\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d5f7146e-390c-13c6-323c-98b8c59a05cb/test-blob-4cecfe6a-5f0a-03bc-b1f8-b787943e8cf0?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-4a90ed54b22fa64b865eead1d52a2c65-533f33f86de2254f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "1a466d7c-2d1f-83f7-bf70-1c48774dfed8", - "x-ms-date": "Thu, 08 Jul 2021 16:23:50 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:50 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "1a466d7c-2d1f-83f7-bf70-1c48774dfed8", - "x-ms-request-id": "4a2ef0f4-101e-0004-6415-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d5f7146e-390c-13c6-323c-98b8c59a05cb/test-blob-4cecfe6a-5f0a-03bc-b1f8-b787943e8cf0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-8b14b4a4fe3793499a841c3f9e9c761e-95b3e812d111a543-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "fb13a52a-fef0-dedd-3219-e97df244717f", - "x-ms-date": "Thu, 08 Jul 2021 16:23:50 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:50 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "fb13a52a-fef0-dedd-3219-e97df244717f", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2ef0fa-101e-0004-6915-7405ac000000", + "x-ms-request-id": "b122a4e2-d01e-004a-0fe9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-07-08T11:23:50.6085208-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:38.4214405-07:00", "RandomSeed": "1606356817", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\nXClient\nba45b233-e2ef-4169-8808-49eb0d8eba0d" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(All).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(All).json index 78185b8e50230..950b35b4cae41 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(All).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(All).json @@ -1,94 +1,79 @@ { "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-04cf126f-3aa0-6e1d-3904-3bdc19c9e9c4/test-blob-2d0196d8-1d18-4efd-e07a-10ac90ad6a05", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-04cf126f-3aa0-6e1d-3904-3bdc19c9e9c4", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-d6e0710a129bd54ca37d14ea8f2f0dc0-ec49a046e7de7643-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-14154c148d2bae4b931dd82f5b9f7649-b8c067b2c643f64e-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "017e2815-7064-636f-8aea-35e1c2573d92", - "x-ms-date": "Thu, 08 Jul 2021 16:23:30 GMT", + "x-ms-client-request-id": "67c5b0e0-f89d-8cff-e9cb-53785a36b85d", + "x-ms-date": "Wed, 11 Aug 2021 19:42:24 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "/BPYWJ9Mg5GEpG8l/P08YZa6zbH2QThRFIEjJSpx3YyaNeAF8ZAkjBNvqXOt11HjPq8V1d\u002B5D7vbhkQeKF1nEsbji8YdN28GlUGdhpjEoz0vQOd6XAis4CYkKWpMBmS1B5atykuLxQc/Dz\u002BdG4gjFuMH7ud17ba\u002BNqug\u002BA0Euo/d6H4BF9nxo3rgO0zID8SdARKHRRd8QBrg7pSg6sz5OlWwwDMKIf8KFUpslbJp9ifmA/f6fXR3YKdkIShFULmu5gD3F06Rkt8TfS/MD6todvhsuefV/r3gOV\u002BLpgDXxcWRvq6xct/YVXAY5wBFqlH8\u002B6ow2JfS2OhDFt3uBezeO7hqO1H8tgQZlGN2vBa9mo8Oj6pWpuwtv\u002BXFblsB6VCDOatH22///0SlF0QzWxzRhntO4HZCh5XLPHtrNkipF6oT8oNrdb8fDo9lsY\u002Bo\u002BmPJ9OjfsgnaQbIWfJ/zlMj8\u002B/\u002BaIGmYZhC8LtHm3NYFIkEXokJfymSgOLDRVPgfLHrGabWQDtr6MI7XIoQ382XbEVle2/KGnDGa\u002Bee4xxEXnAJXIHMgdBRmHXGzh6fgaUVL9UOfwVCIP8yD9RXzQmh9wIWB4NPyu5xE976A0hSKuY\u002BhbNLNeNuyzuCmnH7/c9oINschX4hyWTmnWsqRB2y3\u002BTyFUdWWr0eqzhHySx4dRYTkeJxNaFoGLxOYJh0QIcd076JCeSEFcYZ/dpB3fw0biRVGrY/QapDifiHB/Ygqmq1Kflx72sti3wYVzfHJj68GfZwIynQ3o4QSYPv/Q3T\u002BVdzjLQGwn69J5M2IupyeGO5xuoDsItA5EtrXaXnQYpuSF3gV5WKuVd7tvuamrunnc0cMjYjzEjIMqhsn2TU1eIEy9qIkiTOMw2Sh/mTqkmPw7/YyxNQSngVFCDtHhnypuEVkc7hHw\u002BkUf8kkURPOIhe3N\u002Bk\u002BA7SsIFic34D3RT3n\u002BEYehR\u002BrqSwNHUQK7kzyd\u002BYkj0\u002BTarSQt1NgquNoHTqMPFnMr5z4DI28MeVwojILqmia07XtVI6Rjc7MSv5IpAAKfrHzJcdJK4LB1jjOIBUgVP97zkmEnufKOyLOLMGOc4zlZSSAF4WhUKczLH1Vwmy5q/X/zda2ht/KKeqke//AM2Or6bvwoD162n2iUXJqdHi1FYDMj6a2L95Etu6a/NWncvgaqdmxyAq4hPJYFDVsX7Ry72V\u002B9KO89brcrOpO392o\u002Bt55T8ueA012EwuzXhqp11Y6KA1vKH1VXbQf1RsfaaQUsBpW8xDp0\u002BsYCOGYCJafMtSUFLfQONFhJPIWfy4xVqlmnq4AUuRGUVUhVyCbvVQdf6JHi1XtQ3hI9c4e0lS85rE4MmronuDvTsNhrw==", + "RequestBody": "2JYBLRgd/U7gehCskK1qBfwT2FifTIORhKRvJfz9PGGWus2x9kE4URSBIyUqcd2MmjXgBfGQJIwTb6lzrddR4z6vFdXfuQ\u002B724ZEHihdZxLG44vGHTdvBpVBnYaYxKM9L0DnelwIrOAmJClqTAZktQeWrcpLi8UHPw8/nRuIIxbjB\u002B7nde22vjaroPgNBLqP3eh\u002BARfZ8aN64DtMyA/EnQESh0UXfEAa4O6UoOrM\u002BTpVsMAzCiH/ChVKbJWyafYn5gP3\u002Bn10d2CnZCEoRVC5ruYA9xdOkZLfE30vzA\u002BraHb4bLnn1f694Dlfi6YA18XFkb6usXLf2FVwGOcARapR/PuqMNiX0tjoQxbd7gXs3ju4ajtR/LYEGZRjdrwWvZqPDo\u002BqVqbsLb/lxW5bAelQgzmrR9tv//9EpRdEM1sc0YZ7TuB2QoeVyzx7azZIqReqE/KDa3W/Hw6PZbGPqPpjyfTo37IJ2kGyFnyf85TI/Pv/miBpmGYQvC7R5tzWBSJBF6JCX8pkoDiw0VT4Hyx6xmm1kA7a\u002BjCO1yKEN/Nl2xFZXtvyhpwxmvnnuMcRF5wCVyBzIHQUZh1xs4en4GlFS/VDn8FQiD/Mg/UV80JofcCFgeDT8rucRPe\u002BgNIUirmPoWzSzXjbss7gppx\u002B/3PaCDbHIV\u002BIclk5p1rKkQdst/k8hVHVlq9Hqs4R8kseHUWE5HicTWhaBi8TmCYdECHHdO\u002BiQnkhBXGGf3aQd38NG4kVRq2P0GqQ4n4hwf2IKpqtSn5ce9rLYt8GFc3xyY\u002BvBn2cCMp0N6OEEmD7/0N0/lXc4y0BsJ\u002BvSeTNiLqcnhjucbqA7CLQORLa12l50GKbkhd4FeVirlXe7b7mpq7p53NHDI2I8xIyDKobJ9k1NXiBMvaiJIkzjMNkof5k6pJj8O/2MsTUEp4FRQg7R4Z8qbhFZHO4R8PpFH/JJFETziIXtzfpPgO0rCBYnN\u002BA90U95/hGHoUfq6ksDR1ECu5M8nfmJI9Pk2q0kLdTYKrjaB06jDxZzK\u002Bc\u002BAyNvDHlcKIyC6pomtO17VSOkY3OzEr\u002BSKQACn6x8yXHSSuCwdY4ziAVIFT/e85JhJ7nyjsizizBjnOM5WUkgBeFoVCnMyx9VcJsuav1/83WtobfyinqpHv/wDNjq\u002Bm78KA9etp9olFyanR4tRWAzI\u002Bmti/eRLbumvzVp3L4GqnZscgKuITyWBQ1bF\u002B0cu9lfvSjvPW63KzqTt/dqPreeU/LngNNdhMLs14aqddWOigNbyh9VV20H9UbH2mkFLAaVvMQ6dPrGAjhmAiWnzLUlBS30DjRYSTyFn8uMVapZp6uAFLkRlFVIVcgm71UHX\u002BiR4tV7UN4SPXOHg==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "Vdp\u002BdV/\u002BqfAC9tXmgrLZlQ==", - "Date": "Thu, 08 Jul 2021 16:23:29 GMT", - "ETag": "\u00220x8D9422CB94AA493\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:30 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "017e2815-7064-636f-8aea-35e1c2573d92", - "x-ms-content-crc64": "ifL9Evmg0kM=", - "x-ms-request-id": "4a2eef37-101e-0004-0e15-7405ac000000", + "Content-Length": "0", + "Content-MD5": "Drk4R7X3vCqeAOF73DS9pA==", + "Date": "Wed, 11 Aug 2021 19:42:24 GMT", + "ETag": "\u00220x8D95D0024C23043\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:24 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "67c5b0e0-f89d-8cff-e9cb-53785a36b85d", + "x-ms-content-crc64": "l7p4q6CrLUY=", + "x-ms-request-id": "b1227157-d01e-004a-6ee9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:30.4306835Z" + "x-ms-version-id": "2021-08-11T19:42:24.7725123Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-04cf126f-3aa0-6e1d-3904-3bdc19c9e9c4/test-blob-2d0196d8-1d18-4efd-e07a-10ac90ad6a05?comp=snapshot", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-04cf126f-3aa0-6e1d-3904-3bdc19c9e9c4?comp=snapshot", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-f824e7d1cadaa5489e6ba93e9cd1848b-970abae08a22f846-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "26d982e6-6044-6f4a-4161-dcb2c31dc991", - "x-ms-date": "Thu, 08 Jul 2021 16:23:30 GMT", + "traceparent": "00-b5beeb753a5bba4fa2fbba4765efe312-b847efc3d9a1c04f-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "9897948b-672f-d980-5430-fce5e4b90fb2", + "x-ms-date": "Wed, 11 Aug 2021 19:42:24 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:29 GMT", - "ETag": "\u00220x8D9422CB94AA493\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:30 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "26d982e6-6044-6f4a-4161-dcb2c31dc991", - "x-ms-request-id": "4a2eef39-101e-0004-1015-7405ac000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:24 GMT", + "ETag": "\u00220x8D95D0024C23043\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:24 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "9897948b-672f-d980-5430-fce5e4b90fb2", + "x-ms-request-id": "b12271c0-d01e-004a-49e9-8e693e000000", "x-ms-request-server-encrypted": "false", - "x-ms-snapshot": "2021-07-08T16:23:30.5096392Z", + "x-ms-snapshot": "2021-08-11T19:42:24.8575711Z", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:30.5106392Z" + "x-ms-version-id": "2021-08-11T19:42:24.8585711Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-04cf126f-3aa0-6e1d-3904-3bdc19c9e9c4/test-blob-2d0196d8-1d18-4efd-e07a-10ac90ad6a05?snapshot=2021-07-08T16%3A23%3A30.5096392Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A30Z\u0026sr=bs\u0026sp=rwdi\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-04cf126f-3aa0-6e1d-3904-3bdc19c9e9c4?snapshot=2021-08-11T19%3A42%3A24.8575711Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A24Z\u0026sr=bs\u0026sp=rwdi\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-d78f866145370a4fb61806b0b883b4b1-a6845457e46b7e4c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "40fb82db-177e-2b4e-4927-57cd8bce1536", + "traceparent": "00-62c94918c1c56045b6e079f6fba840df-bd4975373488494c-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c6ecc18e-1f9e-ad2e-a7a5-ac3374897fd1", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:30 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:24 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -96,30 +81,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:29 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "40fb82db-177e-2b4e-4927-57cd8bce1536", + "Date": "Wed, 11 Aug 2021 19:42:24 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "c6ecc18e-1f9e-ad2e-a7a5-ac3374897fd1", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:30 GMT", - "x-ms-request-id": "4a2eef3a-101e-0004-1115-7405ac000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:24 GMT", + "x-ms-request-id": "b122721a-d01e-004a-14e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-04cf126f-3aa0-6e1d-3904-3bdc19c9e9c4/test-blob-2d0196d8-1d18-4efd-e07a-10ac90ad6a05?snapshot=2021-07-08T16%3A23%3A30.5096392Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A30Z\u0026sr=bs\u0026sp=rwdi\u0026sig=Sanitized\u0026comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-04cf126f-3aa0-6e1d-3904-3bdc19c9e9c4?snapshot=2021-08-11T19%3A42%3A24.8575711Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A24Z\u0026sr=bs\u0026sp=rwdi\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-95cd43ba593f2247ae2842c59ec7ad44-4c519cc541682549-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "41d60ae2-8922-7713-73c1-7c76c86122d8", + "traceparent": "00-39c4afbdf6e7074dbef4345ab8475311-45ca77b916900e46-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "22576a67-49cc-c614-532b-7e9eb316fbb7", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -128,29 +107,23 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:29 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "41d60ae2-8922-7713-73c1-7c76c86122d8", + "Date": "Wed, 11 Aug 2021 19:42:24 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "22576a67-49cc-c614-532b-7e9eb316fbb7", "x-ms-legal-hold": "false", - "x-ms-request-id": "4a2eef3b-101e-0004-1215-7405ac000000", + "x-ms-request-id": "b122724b-d01e-004a-40e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-04cf126f-3aa0-6e1d-3904-3bdc19c9e9c4/test-blob-2d0196d8-1d18-4efd-e07a-10ac90ad6a05?snapshot=2021-07-08T16%3A23%3A30.5096392Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A30Z\u0026sr=bs\u0026sp=rwdi\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-04cf126f-3aa0-6e1d-3904-3bdc19c9e9c4?snapshot=2021-08-11T19%3A42%3A24.8575711Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A24Z\u0026sr=bs\u0026sp=rwdi\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-5c13aba344a81644b74ac845754d71d1-bdec0abcd14d0b41-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "80ea9f2c-d3f8-dd13-56e0-af0bcc9dfdf2", + "traceparent": "00-b2e1cc97d8bcd64a97a68fd6d03df9a0-5e6f77cfdbfaa84c-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "09cc7590-5c31-9204-6e34-ec5298af7733", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -158,119 +131,45 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:29 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "80ea9f2c-d3f8-dd13-56e0-af0bcc9dfdf2", - "x-ms-request-id": "4a2eef3c-101e-0004-1315-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-04cf126f-3aa0-6e1d-3904-3bdc19c9e9c4/test-blob-2d0196d8-1d18-4efd-e07a-10ac90ad6a05?snapshot=2021-07-08T16:23:30.5096392Z", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-714bb3cf3b32724da5afd16782728fda-0a7008b585ee564d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "294a494a-a176-bce0-62ef-b250adf9c5d0", - "x-ms-date": "Thu, 08 Jul 2021 16:23:30 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:29 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "294a494a-a176-bce0-62ef-b250adf9c5d0", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2eef3d-101e-0004-1415-7405ac000000", + "Date": "Wed, 11 Aug 2021 19:42:24 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "09cc7590-5c31-9204-6e34-ec5298af7733", + "x-ms-request-id": "b12272ab-d01e-004a-0ce9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-04cf126f-3aa0-6e1d-3904-3bdc19c9e9c4?restype=container\u0026comp=list\u0026include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-e72f31bd6bfe3046a6a26e5fb9eff50f-8f9ed06438d68444-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "83c0eb01-d453-687c-c652-dc5b3f35d80c", - "x-ms-date": "Thu, 08 Jul 2021 16:23:31 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "x-ms-request-id,x-ms-client-request-id,Server,x-ms-version,Content-Type,Content-Length,Date,Transfer-Encoding", - "Content-Type": "application/xml", - "Date": "Thu, 08 Jul 2021 16:23:30 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "83c0eb01-d453-687c-c652-dc5b3f35d80c", - "x-ms-request-id": "4a2eef3f-101e-0004-1515-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://seanoauthstage.blob.core.windows.net/\u0022 ContainerName=\u0022test-container-04cf126f-3aa0-6e1d-3904-3bdc19c9e9c4\u0022\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-2d0196d8-1d18-4efd-e07a-10ac90ad6a05\u003C/Name\u003E\u003CVersionId\u003E2021-07-08T16:23:30.5106392Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 08 Jul 2021 16:23:30 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 08 Jul 2021 16:23:30 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D9422CB94AA493\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003EVdp\u002BdV/\u002BqfAC9tXmgrLZlQ==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-04cf126f-3aa0-6e1d-3904-3bdc19c9e9c4/test-blob-2d0196d8-1d18-4efd-e07a-10ac90ad6a05", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-04cf126f-3aa0-6e1d-3904-3bdc19c9e9c4?snapshot=2021-08-11T19:42:24.8575711Z", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-2777394f1709594592b5b5e9a2e7b5fb-d93caf4c5e20584f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c24e1daf-4238-627d-7ce0-2b4e5d8dfbe4", - "x-ms-date": "Thu, 08 Jul 2021 16:23:31 GMT", + "traceparent": "00-4c758ef7b39a6b4fb00b73920138eda3-ab8fe155204dbe42-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "3e0ea609-f14a-8585-0543-d3ee9dc1dec4", + "x-ms-date": "Wed, 11 Aug 2021 19:42:25 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:30 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "c24e1daf-4238-627d-7ce0-2b4e5d8dfbe4", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:24 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "3e0ea609-f14a-8585-0543-d3ee9dc1dec4", "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2eef46-101e-0004-1c15-7405ac000000", + "x-ms-request-id": "b12272fd-d01e-004a-52e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-07-08T11:23:30.7013278-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:24.9215366-07:00", "RandomSeed": "426798517", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\nXClient\nba45b233-e2ef-4169-8808-49eb0d8eba0d" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(All)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(All)Async.json index 0f0b004832b4f..34711ecf601dc 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(All)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(All)Async.json @@ -1,94 +1,79 @@ { "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f13e24fe-3007-f11b-f0a3-b74cf7a92fdd/test-blob-448ae10b-2db5-57bc-8260-ead3e6abf54d", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-f13e24fe-3007-f11b-f0a3-b74cf7a92fdd", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-c47368f482c1514dba88713d12fe466e-16aac329ea65b044-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-b18f1ac94647ce4dae98ba178eaf726f-aff481695a2b5846-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "e9dd0999-d9e2-421e-45ee-7f9b6da1458f", - "x-ms-date": "Thu, 08 Jul 2021 16:23:52 GMT", + "x-ms-client-request-id": "b0e0980b-5c72-2b54-31c6-b05279186b7f", + "x-ms-date": "Wed, 11 Aug 2021 19:42:38 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "frHQ0UURz8shTjYjdLxfLV784ysir/vRaOZup0VHC0Wtas5G2F6Y\u002BRK/Imf2mOPGAb116cfKKs61/2leoyiF2UPxdQruGVT/ZOoYY4yU2s8DqKWH0iF94z//kNn1OVbpOUgkBSPY2OhpdYXcscZBISSZW/uD/gYhc5LK7ol7CSqULypEcNSrK8\u002B8Hl2coTF4vW60W95bZjtBA5KQDulf7WtbSIKc/bFP7TArxt\u002BphNFgUTEaxq5LOcjuAm1CGhzmXTDxQFiv3L\u002B9ZG2uL6BbmH7AMLy3RCa9Dw\u002B5rvpDDdITRWiut0N5sXVxXGJAnAkokmrvgepgLhgJNDFJ9i7EeVeam\u002Bo3reA6R35HRujEfXMGkBuQVIvoshZPpIMSMLtHrOMLpQEe8OWJtDpsGegwRba9QmUSNCTLsujT5whcJxbD/5kEuddy56A1BqBRfJkuH1/MVO1WNHi\u002BP/IYSwjdLYwjqBlPK4veS1vE3S2EejZOpMiokNIpbcsgRnrlWZyXV9kTLdOA3/PT7QmSkVZKOcW7yaY/NJy6\u002BjpOLuUR\u002BfK\u002BLIVUcUxjzsXV1KLJl9x01Qy0KY/2VyM8WDOYMrAOwvMW02TR9sd4WPvgal/68GNe2VnYXNBiyNRiFxgZypwUxxKussN3o95EPNCUFe3DQmjPOlhXNWUjtAuPbt\u002BvXo5ezKNMSz2f5jZ6kyD/zrLnntSwSpBDvJGsiv646DT/ld1CNUlJdvcqL1Mi3aFEJOVZp9AL/hT9Gg8Rn8A\u002B5/4Be/1DvJhonSfdhRo8Id/vaGYZXkBk9JfIRBo5N9c260hVIGKjAWhN8AqoLXj6wfkwIjdaJYi9nIdmend9LmVQpprS5wB9S2b\u002By242vMYezoMhCRWf3Ma/l4TaPYbwz8GkWIbeKNr4s9bRXFkah\u002BDASKz0XCVQscrUE098og7gDfyskmM/P6WoKFY/zn9spBCjGfTa\u002B3OcVKa8ChWKfBDH8U5dbfV8gQgGSzTPEONKZ24/2IgaBhKJED29gzWQHqtFeN0xDjYaJpjr07A\u002BzUPDcaKmS6OIres81F23v/7Tdi2IiZcGGVk3JLLwLjJhSkP5\u002BRKS6tIHvcrx9TnZY2eaGFyCtkOrvVdJbibxmH\u002B42ooZvcbsQIxbgMzMFCQgXsFLVhXV35QATTy6SXurFiRLORuuv6WgrdfQJzV23qkzKBBlpkFp4vr2GW\u002BJMvcQr2qngdoIcZ4bqqg\u002BBbdfiW6ThiBrRm/j4lcguKY1F3vgv3fKzl3OK7dxSfyZK91Dl48A9qvWpWn7xJ6D6Ln35pMsXkU/lLoRxFtp\u002BfxySbZ63SAXNSDQCRkOzgq\u002BS0L\u002BemNpbM2XAwLU7zFQbaxtiHroCQ==", + "RequestBody": "C\u002BGKRLUtvFeCYOrT5qv1TX6x0NFFEc/LIU42I3S8Xy1e/OMrIq/70WjmbqdFRwtFrWrORthemPkSvyJn9pjjxgG9denHyirOtf9pXqMohdlD8XUK7hlU/2TqGGOMlNrPA6ilh9IhfeM//5DZ9TlW6TlIJAUj2NjoaXWF3LHGQSEkmVv7g/4GIXOSyu6JewkqlC8qRHDUqyvPvB5dnKExeL1utFveW2Y7QQOSkA7pX\u002B1rW0iCnP2xT\u002B0wK8bfqYTRYFExGsauSznI7gJtQhoc5l0w8UBYr9y/vWRtri\u002BgW5h\u002BwDC8t0QmvQ8Pua76Qw3SE0VorrdDebF1cVxiQJwJKJJq74HqYC4YCTQxSfYuxHlXmpvqN63gOkd\u002BR0boxH1zBpAbkFSL6LIWT6SDEjC7R6zjC6UBHvDlibQ6bBnoMEW2vUJlEjQky7Lo0\u002BcIXCcWw/\u002BZBLnXcuegNQagUXyZLh9fzFTtVjR4vj/yGEsI3S2MI6gZTyuL3ktbxN0thHo2TqTIqJDSKW3LIEZ65Vmcl1fZEy3TgN/z0\u002B0JkpFWSjnFu8mmPzScuvo6Ti7lEfnyviyFVHFMY87F1dSiyZfcdNUMtCmP9lcjPFgzmDKwDsLzFtNk0fbHeFj74Gpf\u002BvBjXtlZ2FzQYsjUYhcYGcqcFMcSrrLDd6PeRDzQlBXtw0JozzpYVzVlI7QLj27fr16OXsyjTEs9n\u002BY2epMg/86y557UsEqQQ7yRrIr\u002BuOg0/5XdQjVJSXb3Ki9TIt2hRCTlWafQC/4U/RoPEZ/APuf\u002BAXv9Q7yYaJ0n3YUaPCHf72hmGV5AZPSXyEQaOTfXNutIVSBiowFoTfAKqC14\u002BsH5MCI3WiWIvZyHZnp3fS5lUKaa0ucAfUtm/stuNrzGHs6DIQkVn9zGv5eE2j2G8M/BpFiG3ija\u002BLPW0VxZGofgwEis9FwlULHK1BNPfKIO4A38rJJjPz\u002BlqChWP85/bKQQoxn02vtznFSmvAoVinwQx/FOXW31fIEIBks0zxDjSmduP9iIGgYSiRA9vYM1kB6rRXjdMQ42GiaY69OwPs1Dw3GipkujiK3rPNRdt7/\u002B03YtiImXBhlZNySy8C4yYUpD\u002BfkSkurSB73K8fU52WNnmhhcgrZDq71XSW4m8Zh/uNqKGb3G7ECMW4DMzBQkIF7BS1YV1d\u002BUAE08ukl7qxYkSzkbrr\u002BloK3X0Cc1dt6pMygQZaZBaeL69hlviTL3EK9qp4HaCHGeG6qoPgW3X4luk4Yga0Zv4\u002BJXILimNRd74L93ys5dziu3cUn8mSvdQ5ePAPar1qVp\u002B8Seg\u002Bi59\u002BaTLF5FP5S6EcRbafn8ckm2et0gFzUg0AkZDs4KvktC/npjaQ==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "eeQCpfsj0jysMBMeTXFx4g==", - "Date": "Thu, 08 Jul 2021 16:23:52 GMT", - "ETag": "\u00220x8D9422CC6777AD5\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:52 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e9dd0999-d9e2-421e-45ee-7f9b6da1458f", - "x-ms-content-crc64": "mHRAhhjLKyY=", - "x-ms-request-id": "4a2ef151-101e-0004-2e15-7405ac000000", + "Content-Length": "0", + "Content-MD5": "TGP/ikmRXaD6IeKHdFOW6g==", + "Date": "Wed, 11 Aug 2021 19:42:38 GMT", + "ETag": "\u00220x8D95D002D08D987\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:38 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "b0e0980b-5c72-2b54-31c6-b05279186b7f", + "x-ms-content-crc64": "N\u002BwQmY0Mzjc=", + "x-ms-request-id": "b122a520-d01e-004a-42e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:52.5349077Z" + "x-ms-version-id": "2021-08-11T19:42:38.6573703Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f13e24fe-3007-f11b-f0a3-b74cf7a92fdd/test-blob-448ae10b-2db5-57bc-8260-ead3e6abf54d?comp=snapshot", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-f13e24fe-3007-f11b-f0a3-b74cf7a92fdd?comp=snapshot", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-d7ba36d50b7c984d8f12d6d750936bab-3d2bf1db72d6924c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "7fd32d02-fe9d-3126-7a9d-6a84dcb8be8f", - "x-ms-date": "Thu, 08 Jul 2021 16:23:52 GMT", + "traceparent": "00-db434bfd1362994d972991404de60ddc-c41c889ca1b6c44a-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "653742d6-b299-0ff6-786c-d23c249db837", + "x-ms-date": "Wed, 11 Aug 2021 19:42:38 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:52 GMT", - "ETag": "\u00220x8D9422CC6777AD5\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:52 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "7fd32d02-fe9d-3126-7a9d-6a84dcb8be8f", - "x-ms-request-id": "4a2ef15b-101e-0004-3715-7405ac000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:38 GMT", + "ETag": "\u00220x8D95D002D08D987\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:38 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "653742d6-b299-0ff6-786c-d23c249db837", + "x-ms-request-id": "b122a59f-d01e-004a-32e9-8e693e000000", "x-ms-request-server-encrypted": "false", - "x-ms-snapshot": "2021-07-08T16:23:52.6118637Z", + "x-ms-snapshot": "2021-08-11T19:42:38.7434296Z", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:52.6128637Z" + "x-ms-version-id": "2021-08-11T19:42:38.7444296Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f13e24fe-3007-f11b-f0a3-b74cf7a92fdd/test-blob-448ae10b-2db5-57bc-8260-ead3e6abf54d?snapshot=2021-07-08T16%3A23%3A52.6118637Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A52Z\u0026sr=bs\u0026sp=rwdi\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-f13e24fe-3007-f11b-f0a3-b74cf7a92fdd?snapshot=2021-08-11T19%3A42%3A38.7434296Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A38Z\u0026sr=bs\u0026sp=rwdi\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-58900bf9248db944845a044e48c914fb-31eb35de442d3245-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "3f994836-c6cd-d8f1-1b05-ebfc477232bf", + "traceparent": "00-bc7a6826a6aebf468978956a127be93b-a0a7652365af2b46-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "377b2180-05e1-e6e5-12cd-717506e11ea8", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:52 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:38 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -96,30 +81,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:52 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "3f994836-c6cd-d8f1-1b05-ebfc477232bf", + "Date": "Wed, 11 Aug 2021 19:42:38 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "377b2180-05e1-e6e5-12cd-717506e11ea8", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:52 GMT", - "x-ms-request-id": "4a2ef165-101e-0004-3e15-7405ac000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:38 GMT", + "x-ms-request-id": "b122a5d3-d01e-004a-63e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f13e24fe-3007-f11b-f0a3-b74cf7a92fdd/test-blob-448ae10b-2db5-57bc-8260-ead3e6abf54d?snapshot=2021-07-08T16%3A23%3A52.6118637Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A52Z\u0026sr=bs\u0026sp=rwdi\u0026sig=Sanitized\u0026comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-f13e24fe-3007-f11b-f0a3-b74cf7a92fdd?snapshot=2021-08-11T19%3A42%3A38.7434296Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A38Z\u0026sr=bs\u0026sp=rwdi\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-80e99879a243f94e976fdeb1d6c965b6-7964b770380b2446-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "944dc27e-7e1f-b9c2-2fa3-1bdc19e99e9f", + "traceparent": "00-c3a6d764fac88e48bb41c6f8fd4b7623-90fce2875f084646-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "02bc42ae-8121-fc55-48ed-6cd08db02b98", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -128,29 +107,23 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:52 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "944dc27e-7e1f-b9c2-2fa3-1bdc19e99e9f", + "Date": "Wed, 11 Aug 2021 19:42:38 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "02bc42ae-8121-fc55-48ed-6cd08db02b98", "x-ms-legal-hold": "false", - "x-ms-request-id": "4a2ef171-101e-0004-4a15-7405ac000000", + "x-ms-request-id": "b122a604-d01e-004a-0fe9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f13e24fe-3007-f11b-f0a3-b74cf7a92fdd/test-blob-448ae10b-2db5-57bc-8260-ead3e6abf54d?snapshot=2021-07-08T16%3A23%3A52.6118637Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A52Z\u0026sr=bs\u0026sp=rwdi\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-f13e24fe-3007-f11b-f0a3-b74cf7a92fdd?snapshot=2021-08-11T19%3A42%3A38.7434296Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A38Z\u0026sr=bs\u0026sp=rwdi\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-50f067dae6c6d64badd7571b0bf5e3e3-cfe5335538058242-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "857d53da-9e24-30a0-7f02-d37e6579e25f", + "traceparent": "00-8ca91156f54e7246b285e8ed0cd0cf25-4c11659fe48bf848-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c4c7b19a-1b25-b586-f29d-f7df59214a6a", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -158,118 +131,45 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:52 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "857d53da-9e24-30a0-7f02-d37e6579e25f", - "x-ms-request-id": "4a2ef17a-101e-0004-5115-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f13e24fe-3007-f11b-f0a3-b74cf7a92fdd/test-blob-448ae10b-2db5-57bc-8260-ead3e6abf54d?snapshot=2021-07-08T16:23:52.6118637Z", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-21aa7f37bbf8104d93ad95a711e44332-ca06ceaa552da34e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c601b158-196b-fb7a-1197-442248074f78", - "x-ms-date": "Thu, 08 Jul 2021 16:23:53 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:52 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "c601b158-196b-fb7a-1197-442248074f78", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2ef183-101e-0004-5915-7405ac000000", + "Date": "Wed, 11 Aug 2021 19:42:38 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "c4c7b19a-1b25-b586-f29d-f7df59214a6a", + "x-ms-request-id": "b122a654-d01e-004a-57e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f13e24fe-3007-f11b-f0a3-b74cf7a92fdd?restype=container\u0026comp=list\u0026include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "b326c5a2-1b78-35f3-523a-ca5222501a33", - "x-ms-date": "Thu, 08 Jul 2021 16:23:53 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "x-ms-request-id,x-ms-client-request-id,Server,x-ms-version,Content-Type,Content-Length,Date,Transfer-Encoding", - "Content-Type": "application/xml", - "Date": "Thu, 08 Jul 2021 16:23:52 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "b326c5a2-1b78-35f3-523a-ca5222501a33", - "x-ms-request-id": "4a2ef189-101e-0004-5d15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://seanoauthstage.blob.core.windows.net/\u0022 ContainerName=\u0022test-container-f13e24fe-3007-f11b-f0a3-b74cf7a92fdd\u0022\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-448ae10b-2db5-57bc-8260-ead3e6abf54d\u003C/Name\u003E\u003CVersionId\u003E2021-07-08T16:23:52.6128637Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 08 Jul 2021 16:23:52 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 08 Jul 2021 16:23:52 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D9422CC6777AD5\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003EeeQCpfsj0jysMBMeTXFx4g==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f13e24fe-3007-f11b-f0a3-b74cf7a92fdd/test-blob-448ae10b-2db5-57bc-8260-ead3e6abf54d", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-f13e24fe-3007-f11b-f0a3-b74cf7a92fdd?snapshot=2021-08-11T19:42:38.7434296Z", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-4fc0081b38f45b4a86e42601e7f702b1-73f185575e2e064a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "837fa7ee-9ce1-9f00-a45b-3ab0a32e5190", - "x-ms-date": "Thu, 08 Jul 2021 16:23:53 GMT", + "traceparent": "00-804c6b7c1b5e164291a20518db64678a-08f0ba8d3e229b4e-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "dc35cd4e-66e9-6372-3b98-a18187e25f0e", + "x-ms-date": "Wed, 11 Aug 2021 19:42:39 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:52 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "837fa7ee-9ce1-9f00-a45b-3ab0a32e5190", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:38 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "dc35cd4e-66e9-6372-3b98-a18187e25f0e", "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2ef18a-101e-0004-5e15-7405ac000000", + "x-ms-request-id": "b122a69f-d01e-004a-19e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-07-08T11:23:52.8026200-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:38.8079668-07:00", "RandomSeed": "1982117462", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\nXClient\nba45b233-e2ef-4169-8808-49eb0d8eba0d" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(SetImmutabilityPolicy).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(SetImmutabilityPolicy).json index b177ccc4f4eed..df0589c541220 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(SetImmutabilityPolicy).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(SetImmutabilityPolicy).json @@ -1,94 +1,79 @@ { "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-5c386ee9-476c-cbba-0b10-4804e7946add/test-blob-2295a38e-2783-be75-61fa-4691dfb20c1c", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-5c386ee9-476c-cbba-0b10-4804e7946add", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-9c7cb0620d401a438a82e6e6a87c1cc4-36efda55442ee542-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-dd730d23ad16484790623e440371dee9-9c16ed288f81734d-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "5acf64c7-3376-a52e-fc48-411c04ed1f2e", - "x-ms-date": "Thu, 08 Jul 2021 16:23:33 GMT", + "x-ms-client-request-id": "ffdad7b0-30cf-6b21-3a22-b86fc41a98c8", + "x-ms-date": "Wed, 11 Aug 2021 19:42:25 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "V70Genrc0ZfexAK0nozRmm7tWeFDOZTB\u002BXr7cQAp61gELK0qje9jstH\u002BRL4kwB/VKasj8lgr2B4oRIH/4GCWtdiqr3Lfpw1\u002BiaYPRfTWnThaJkdVBfn/2VOPAUhuY9FxZ47lehCt9YGepGiyG5MpUqdJpboYQa/fqtYeUKbFDybUnd5m8CMnrDDFtmCRTb7AZq6gJb0WWSXfBtA6jqXb2ZVB3X21wmKEIfiKUotOTVwYXun3JOpovUS4h\u002BlT7B2L6tzLT29ACqNLHAPFjAeakLhzIjC747Wq2R85/Dt5MDTb/2iugv7s11NGrAfmozE8HvYw38rtzwYnIXZQBg5n0uvP6o2f6w26hkrcdDetxDbu/N5ESFBq7S9hh2GInNBF39obF7mjnTPpdll/EVrOeVw/YQovIoqaZPxdPWOrMep5lpVdkq18Sl\u002BrW9H369zVkw4ESDrGFrxQgLK8RmDQPURvBXvFceavwxaqhMa4o3kgiKpUpumvs4DYDRH6vwT\u002B2h2MiOVgDyEoVIUjHJH1l904nL62e5ZbwFL77GTVtQMSrKmpKxuTv3iILFFki5fu4nU0wiNGSF\u002BHMciTZSO9Up\u002BBEW/oTGzCpNxFLU9E9jS7DAnuoPLfzGNKIvlSAFlUy9my4nonBpYJcR1GABsPQjuT2FgazrGsokQMnSpyb6SD8GJ1khS6lAZz5S7VmMtIOt\u002B\u002BvycAOvwnBUA1GmhrlgJ5ww\u002B4ma8n2ERSpumD1wl5xGNKtK98grZmTo3ThXmeCE8sXNS7j6Awl\u002BfjrpMSpC43vFYFIOFS/EFZUksiU1LKtJ6aVns0vTTCGh3ImNMiU6lenMkimOdt2V\u002BTYj1UDUOUGPr1eE2yAv8iQwbEimRtN/6hw7eJqBu3LX0coVr3bQzZM3/ZLdtbrJnKAFXhqE76JSs\u002BskqMCnDePUvQlmGkKtX561bklAkjRhcdv6jF1YQuIXsvubrCTCkP\u002Bu\u002BQixU3JdV/6L34FZEhGmwyb0vIGGjGonTldXEbNp8t1ZkakroB5ZnSRu3HNgzqDZ5Nj9zdRuGHyemhUbBjZLEeykD3BoexMYmy9dJ6/2xo\u002B2fTzafCUI63k8jRX5Pob\u002BE8qWvL8wYWm15SKlEODMp8OVZJkJcKW3qxP3O\u002B39H2yYbxPlYAnAhgvDFIbyU9qYb\u002BVSY8n95JMU3wGrSTV7yMXGHLHc50e5xO6dNlwexVdJbtwIqruSqnpwwIEIJTzWV1vBLDcYu3idmK7rYL5HBgm6UdpZYx4aI3I3XCa2sZ\u002Bhxu8ATZkQIKNjexIMtznMObqHXdNifORNpwjE4W9R1tcPOZnPRrhgmiE29ff8DXw4ayJsP2PMT0n6spaQW080AZRA==", + "RequestBody": "jqOVIoMndb5h\u002BkaR37IMHFe9Bnp63NGX3sQCtJ6M0Zpu7VnhQzmUwfl6\u002B3EAKetYBCytKo3vY7LR/kS\u002BJMAf1SmrI/JYK9geKESB/\u002BBglrXYqq9y36cNfommD0X01p04WiZHVQX5/9lTjwFIbmPRcWeO5XoQrfWBnqRoshuTKVKnSaW6GEGv36rWHlCmxQ8m1J3eZvAjJ6wwxbZgkU2\u002BwGauoCW9Flkl3wbQOo6l29mVQd19tcJihCH4ilKLTk1cGF7p9yTqaL1EuIfpU\u002Bwdi\u002Brcy09vQAqjSxwDxYwHmpC4cyIwu\u002BO1qtkfOfw7eTA02/9oroL\u002B7NdTRqwH5qMxPB72MN/K7c8GJyF2UAYOZ9Lrz\u002BqNn\u002BsNuoZK3HQ3rcQ27vzeREhQau0vYYdhiJzQRd/aGxe5o50z6XZZfxFaznlcP2EKLyKKmmT8XT1jqzHqeZaVXZKtfEpfq1vR9\u002Bvc1ZMOBEg6xha8UICyvEZg0D1EbwV7xXHmr8MWqoTGuKN5IIiqVKbpr7OA2A0R\u002Br8E/todjIjlYA8hKFSFIxyR9ZfdOJy\u002BtnuWW8BS\u002B\u002Bxk1bUDEqypqSsbk794iCxRZIuX7uJ1NMIjRkhfhzHIk2UjvVKfgRFv6ExswqTcRS1PRPY0uwwJ7qDy38xjSiL5UgBZVMvZsuJ6JwaWCXEdRgAbD0I7k9hYGs6xrKJEDJ0qcm\u002Bkg/BidZIUupQGc\u002BUu1ZjLSDrfvr8nADr8JwVANRpoa5YCecMPuJmvJ9hEUqbpg9cJecRjSrSvfIK2Zk6N04V5nghPLFzUu4\u002BgMJfn466TEqQuN7xWBSDhUvxBWVJLIlNSyrSemlZ7NL00whodyJjTIlOpXpzJIpjnbdlfk2I9VA1DlBj69XhNsgL/IkMGxIpkbTf\u002BocO3iagbty19HKFa920M2TN/2S3bW6yZygBV4ahO\u002BiUrPrJKjApw3j1L0JZhpCrV\u002BetW5JQJI0YXHb\u002BoxdWELiF7L7m6wkwpD/rvkIsVNyXVf\u002Bi9\u002BBWRIRpsMm9LyBhoxqJ05XVxGzafLdWZGpK6AeWZ0kbtxzYM6g2eTY/c3Ubhh8npoVGwY2SxHspA9waHsTGJsvXSev9saPtn082nwlCOt5PI0V\u002BT6G/hPKlry/MGFpteUipRDgzKfDlWSZCXClt6sT9zvt/R9smG8T5WAJwIYLwxSG8lPamG/lUmPJ/eSTFN8Bq0k1e8jFxhyx3OdHucTunTZcHsVXSW7cCKq7kqp6cMCBCCU81ldbwSw3GLt4nZiu62C\u002BRwYJulHaWWMeGiNyN1wmtrGfocbvAE2ZECCjY3sSDLc5zDm6h13TYnzkTacIxOFvUdbXDzmZz0a4YJohNvX3/A18OGsg==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "LSaUy8sfg/n6ug1giyxAlg==", - "Date": "Thu, 08 Jul 2021 16:23:32 GMT", - "ETag": "\u00220x8D9422CBB3CDC0A\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:33 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "5acf64c7-3376-a52e-fc48-411c04ed1f2e", - "x-ms-content-crc64": "KB3XxNKUy6s=", - "x-ms-request-id": "4a2eef69-101e-0004-3815-7405ac000000", + "Content-Length": "0", + "Content-MD5": "NvdbXXc5C9ACg8/IJJmX\u002BA==", + "Date": "Wed, 11 Aug 2021 19:42:24 GMT", + "ETag": "\u00220x8D95D00252F5DC1\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:25 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "ffdad7b0-30cf-6b21-3a22-b86fc41a98c8", + "x-ms-content-crc64": "z3voVG7sICo=", + "x-ms-request-id": "b1227367-d01e-004a-30e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:33.6957962Z" + "x-ms-version-id": "2021-08-11T19:42:25.4890202Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-5c386ee9-476c-cbba-0b10-4804e7946add/test-blob-2295a38e-2783-be75-61fa-4691dfb20c1c?comp=snapshot", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-5c386ee9-476c-cbba-0b10-4804e7946add?comp=snapshot", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-e567bde6e19b0c43b4d100b1429b8ebf-4a61ff8c7f0ed34b-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8fed3cd0-bf71-7dcd-a834-0387ee04664d", - "x-ms-date": "Thu, 08 Jul 2021 16:23:33 GMT", + "traceparent": "00-02b1fc282b69524f8cfdda5398abeb16-6f381397047a6c4d-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ff0f3b45-87e9-f6e2-a18b-01a23b30e70f", + "x-ms-date": "Wed, 11 Aug 2021 19:42:25 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:32 GMT", - "ETag": "\u00220x8D9422CBB3CDC0A\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:33 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8fed3cd0-bf71-7dcd-a834-0387ee04664d", - "x-ms-request-id": "4a2eef6a-101e-0004-3915-7405ac000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:25 GMT", + "ETag": "\u00220x8D95D00252F5DC1\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:25 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "ff0f3b45-87e9-f6e2-a18b-01a23b30e70f", + "x-ms-request-id": "b122741c-d01e-004a-43e9-8e693e000000", "x-ms-request-server-encrypted": "false", - "x-ms-snapshot": "2021-07-08T16:23:33.7777497Z", + "x-ms-snapshot": "2021-08-11T19:42:25.5650720Z", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:33.7787497Z" + "x-ms-version-id": "2021-08-11T19:42:25.5660720Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-5c386ee9-476c-cbba-0b10-4804e7946add/test-blob-2295a38e-2783-be75-61fa-4691dfb20c1c?snapshot=2021-07-08T16%3A23%3A33.7777497Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A33Z\u0026sr=bs\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-5c386ee9-476c-cbba-0b10-4804e7946add?snapshot=2021-08-11T19%3A42%3A25.5650720Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A25Z\u0026sr=bs\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-dc8bdde7f965c440949b1069dbfd81ad-02569dab8dd2234a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c84b3260-8f00-86bc-6e92-56b4835b079c", + "traceparent": "00-5977ad4dfeca3542923d03fbc3f2a32a-785a60b8b8931940-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "88298a02-990a-40df-81d8-b8eb318c69cb", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:33 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:25 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -96,30 +81,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:32 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "c84b3260-8f00-86bc-6e92-56b4835b079c", + "Date": "Wed, 11 Aug 2021 19:42:25 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "88298a02-990a-40df-81d8-b8eb318c69cb", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:33 GMT", - "x-ms-request-id": "4a2eef6b-101e-0004-3a15-7405ac000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:25 GMT", + "x-ms-request-id": "b1227459-d01e-004a-71e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-5c386ee9-476c-cbba-0b10-4804e7946add/test-blob-2295a38e-2783-be75-61fa-4691dfb20c1c?snapshot=2021-07-08T16%3A23%3A33.7777497Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A33Z\u0026sr=bs\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-5c386ee9-476c-cbba-0b10-4804e7946add?snapshot=2021-08-11T19%3A42%3A25.5650720Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A25Z\u0026sr=bs\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-9a2852647a93d54bbf8e2fc5453a8d02-6ac0878349f74241-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "bc2637ca-9eb9-734c-cda2-1a78432abc25", + "traceparent": "00-e6bf474fb6ef4743b04266b13cd821d9-fdb7fd8ddb149e40-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b19fb424-5e07-3705-5cad-0e9807e14b1c", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -128,29 +107,23 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:32 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "bc2637ca-9eb9-734c-cda2-1a78432abc25", + "Date": "Wed, 11 Aug 2021 19:42:25 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "b19fb424-5e07-3705-5cad-0e9807e14b1c", "x-ms-legal-hold": "false", - "x-ms-request-id": "4a2eef6d-101e-0004-3c15-7405ac000000", + "x-ms-request-id": "b1227480-d01e-004a-10e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-5c386ee9-476c-cbba-0b10-4804e7946add/test-blob-2295a38e-2783-be75-61fa-4691dfb20c1c?snapshot=2021-07-08T16%3A23%3A33.7777497Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A33Z\u0026sr=bs\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-5c386ee9-476c-cbba-0b10-4804e7946add?snapshot=2021-08-11T19%3A42%3A25.5650720Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A25Z\u0026sr=bs\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-fb471b6682a6154abc745d1ac358a231-e824f1c120904347-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4ce93a46-4b35-86e3-682b-e364438df432", + "traceparent": "00-a875991021f1b9468ceb94d482e2ba9a-edbfc3a055220547-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "7dc61bd0-b8ed-02c4-2c14-6b5381237e8c", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -158,119 +131,45 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:33 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "4ce93a46-4b35-86e3-682b-e364438df432", - "x-ms-request-id": "4a2eef6f-101e-0004-3e15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-5c386ee9-476c-cbba-0b10-4804e7946add/test-blob-2295a38e-2783-be75-61fa-4691dfb20c1c?snapshot=2021-07-08T16:23:33.7777497Z", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-262fdf67be79f149a99b75ce12ec37ec-0d1282d45806d44a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "08318d24-6f40-85f0-3740-14c1d45fbe9f", - "x-ms-date": "Thu, 08 Jul 2021 16:23:34 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:33 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "08318d24-6f40-85f0-3740-14c1d45fbe9f", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2eef71-101e-0004-4015-7405ac000000", + "Date": "Wed, 11 Aug 2021 19:42:25 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "7dc61bd0-b8ed-02c4-2c14-6b5381237e8c", + "x-ms-request-id": "b12274f9-d01e-004a-71e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-5c386ee9-476c-cbba-0b10-4804e7946add?restype=container\u0026comp=list\u0026include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-0d34e488431a3042ab50ecb077a656b2-d8adcddb1356dc40-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "b5403a3a-eb5b-81f1-f742-b4dab96c3e13", - "x-ms-date": "Thu, 08 Jul 2021 16:23:34 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "x-ms-request-id,x-ms-client-request-id,Server,x-ms-version,Content-Type,Content-Length,Date,Transfer-Encoding", - "Content-Type": "application/xml", - "Date": "Thu, 08 Jul 2021 16:23:33 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "b5403a3a-eb5b-81f1-f742-b4dab96c3e13", - "x-ms-request-id": "4a2eef73-101e-0004-4115-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://seanoauthstage.blob.core.windows.net/\u0022 ContainerName=\u0022test-container-5c386ee9-476c-cbba-0b10-4804e7946add\u0022\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-2295a38e-2783-be75-61fa-4691dfb20c1c\u003C/Name\u003E\u003CVersionId\u003E2021-07-08T16:23:33.7787497Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 08 Jul 2021 16:23:33 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 08 Jul 2021 16:23:33 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D9422CBB3CDC0A\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003ELSaUy8sfg/n6ug1giyxAlg==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-5c386ee9-476c-cbba-0b10-4804e7946add/test-blob-2295a38e-2783-be75-61fa-4691dfb20c1c", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-5c386ee9-476c-cbba-0b10-4804e7946add?snapshot=2021-08-11T19:42:25.5650720Z", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-4769b46e239f2d4d8152c7efc65a7d0b-af4f0c9dbcf86b43-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "9a87a5ed-091e-3443-46e1-a118dd97bea0", - "x-ms-date": "Thu, 08 Jul 2021 16:23:34 GMT", + "traceparent": "00-15351e5d920d0e4288a431e2c1ed2523-fee6ed58ec5ea646-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ecc8e8f0-ce1a-122e-7223-8fa433f9f1a9", + "x-ms-date": "Wed, 11 Aug 2021 19:42:25 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:33 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9a87a5ed-091e-3443-46e1-a118dd97bea0", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:25 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "ecc8e8f0-ce1a-122e-7223-8fa433f9f1a9", "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2eef75-101e-0004-4315-7405ac000000", + "x-ms-request-id": "b1227550-d01e-004a-38e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-07-08T11:23:33.9678976-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:25.6285314-07:00", "RandomSeed": "764361949", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\nXClient\nba45b233-e2ef-4169-8808-49eb0d8eba0d" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(SetImmutabilityPolicy)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(SetImmutabilityPolicy)Async.json index 2e2f1ba262a63..8d066209e0a64 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(SetImmutabilityPolicy)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobSnapshotSas(SetImmutabilityPolicy)Async.json @@ -1,94 +1,79 @@ { "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1ab23876-62f0-4422-6da4-8b8ebf523c50/test-blob-2a455b93-add8-4244-bb38-dc96116e57fc", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-1ab23876-62f0-4422-6da4-8b8ebf523c50", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-4b878bf7c30ffe47a23b1562ce15f96f-cf0862acc9b2fc4e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-2608384df862814d847f3b487cfc62a3-e75fdb0f022f3044-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "8ce41798-5739-da6f-163d-08c1b87ca822", - "x-ms-date": "Thu, 08 Jul 2021 16:23:55 GMT", + "x-ms-client-request-id": "095d074b-512f-9ca7-8481-6521dfede904", + "x-ms-date": "Wed, 11 Aug 2021 19:42:39 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "W\u002BkPbj/dEkTbMrJkDyZFSN4WXxaNfd/J83Bet4aMM/5NjzPVQ80RtkkATqX73zKV8pO4\u002Bw5Abt4KRXvOflq\u002BT/\u002BzFoDybwUQBanNjS45zRQ\u002BycTy1DjvDSBUy/1SQjfuQv\u002BmSMixooKNp/Vlc\u002BGv0HdmkLWWy3vHwwlfnaQIvsJx3kovk4VLjCZBZS1Cipk/pPuF67GCWHaE34S/UgTehegz85SWgDzyGwSOVGZNhDlvH/iogtMR74bUqrQBizkiYt9ED5YFqSS\u002Bk8\u002Bs9AMQNlpLTzILNQMVIQQOwtaI8I/La/GGCXWianbU6u4DZPqCw3RZtTwHFi3cLu2S9udONaJA4YgSiSzkqeS8N0sUErwJjP5hLjtTxFXEqtqHD3OPhrVLwoNycDpHdQxXS9/ixxwxiGrp7AZn7R0yTd9SXJlxLLCVyE85lhvEGrku\u002B3h14uK\u002BVocIppqu49VmPyJa9Rhy5h4vTP/M\u002BPFOJNFMOPGkvGv9kwYSaIYW5\u002BR60lf5aSWhuxVaRpXj8l6VuoHIYavjwYK2XGERYH2XGWQaUSWaVbqsq3zcSXXWGqCnfK4FTYY5lxDUQw3Dj1uXwy0wyaA5\u002BmTGG7UuB3gN4ELAauPPkcve4LoUxhGt6RshRYZIpVEAboJJPzHQC5CYx2PKAiV3xzFiUujmJDNTGDKaDMLyxDrwwPthhlKZDtQqfP\u002Bu4ub2qn1U5VNoGUlP9ib/Nf7OpgIo2kEpFkHeyEQTvKgzpDVLpGJEnd/nh6eyEpAsmtjWXNb9hQikzJQ8dhwPVV2hG1Hws5GciQgiQVKadwSwsi5rPV/SNh4tptfNCCbC2DJJEPY\u002BPOZGOdLN20S2ClSQi8Tuoxf9z\u002BUywgy5zoHiYGgfUGcNcXVIJASNBFvad5yCPXxi1DQbTEARC3nZjGpR63rblrntghlOpn4ScMqKWEtvN5EEf4s0BAQm\u002B2b8bpeaOxng/uDjlLpiFC61CNt2h7MtalXYTGvvp5K0x4azUTfneDSwqVlqjKLWoWtdfvsor3SzzwNBwe6u8FdOLs0zr8L2zpCnxd1Zwt6zAqsAkimXjBgSAIIzpbZGArkCHF3VovKoZq9rgemWWQwljr9DrV4ut6K1Ia5AwinZYMMkV6aA3mC4Vyt5Kwoue6Z2Dhb3AlRa02W6IIFDaKSFkiAmcgJlpLBeilYztIuYhqUIyrQT4V5uyoNBxr7edO\u002BH9JnqBwmkEGlmmHf\u002BJh/ZIZnbO57vcbDCuKd/JN7xgBZmrMDxrn\u002BcY7lLrEjmcKNkZ6QkAzhRl4LoJ09hJOyKdBhhl3pf6HMZP9fkpMVo20cEG7w5zHzdFRQ9CIYvOj/NwDgvhNgpBH8wC8RhbPK9gA==", + "RequestBody": "k1tFKtitREK7ONyWEW5X/FvpD24/3RJE2zKyZA8mRUjeFl8WjX3fyfNwXreGjDP\u002BTY8z1UPNEbZJAE6l\u002B98ylfKTuPsOQG7eCkV7zn5avk//sxaA8m8FEAWpzY0uOc0UPsnE8tQ47w0gVMv9UkI37kL/pkjIsaKCjaf1ZXPhr9B3ZpC1lst7x8MJX52kCL7Ccd5KL5OFS4wmQWUtQoqZP6T7heuxglh2hN\u002BEv1IE3oXoM/OUloA88hsEjlRmTYQ5bx/4qILTEe\u002BG1Kq0AYs5ImLfRA\u002BWBakkvpPPrPQDEDZaS08yCzUDFSEEDsLWiPCPy2vxhgl1omp21OruA2T6gsN0WbU8BxYt3C7tkvbnTjWiQOGIEoks5KnkvDdLFBK8CYz\u002BYS47U8RVxKrahw9zj4a1S8KDcnA6R3UMV0vf4sccMYhq6ewGZ\u002B0dMk3fUlyZcSywlchPOZYbxBq5Lvt4deLivlaHCKaaruPVZj8iWvUYcuYeL0z/zPjxTiTRTDjxpLxr/ZMGEmiGFufketJX\u002BWklobsVWkaV4/JelbqByGGr48GCtlxhEWB9lxlkGlElmlW6rKt83El11hqgp3yuBU2GOZcQ1EMNw49bl8MtMMmgOfpkxhu1Lgd4DeBCwGrjz5HL3uC6FMYRrekbIUWGSKVRAG6CST8x0AuQmMdjygIld8cxYlLo5iQzUxgymgzC8sQ68MD7YYZSmQ7UKnz/ruLm9qp9VOVTaBlJT/Ym/zX\u002BzqYCKNpBKRZB3shEE7yoM6Q1S6RiRJ3f54enshKQLJrY1lzW/YUIpMyUPHYcD1VdoRtR8LORnIkIIkFSmncEsLIuaz1f0jYeLabXzQgmwtgySRD2PjzmRjnSzdtEtgpUkIvE7qMX/c/lMsIMuc6B4mBoH1BnDXF1SCQEjQRb2necgj18YtQ0G0xAEQt52YxqUet625a57YIZTqZ\u002BEnDKilhLbzeRBH\u002BLNAQEJvtm/G6XmjsZ4P7g45S6YhQutQjbdoezLWpV2Exr76eStMeGs1E353g0sKlZaoyi1qFrXX77KK90s88DQcHurvBXTi7NM6/C9s6Qp8XdWcLeswKrAJIpl4wYEgCCM6W2RgK5Ahxd1aLyqGava4HpllkMJY6/Q61eLreitSGuQMIp2WDDJFemgN5guFcreSsKLnumdg4W9wJUWtNluiCBQ2ikhZIgJnICZaSwXopWM7SLmIalCMq0E\u002BFebsqDQca\u002B3nTvh/SZ6gcJpBBpZph3/iYf2SGZ2zue73GwwrinfyTe8YAWZqzA8a5/nGO5S6xI5nCjZGekJAM4UZeC6CdPYSTsinQYYZd6X\u002BhzGT/X5KTFaNtHBBu8Ocx83RUUPQiGLzo/zQ==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "dK5TnGn4tH5Zwebvay9Ahw==", - "Date": "Thu, 08 Jul 2021 16:23:54 GMT", - "ETag": "\u00220x8D9422CC8111815\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:55 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8ce41798-5739-da6f-163d-08c1b87ca822", - "x-ms-content-crc64": "FDporZvAMnQ=", - "x-ms-request-id": "4a2ef1ce-101e-0004-0915-7405ac000000", + "Content-Length": "0", + "Content-MD5": "Fyzi\u002BWgOahmVK4wzZFoYtA==", + "Date": "Wed, 11 Aug 2021 19:42:38 GMT", + "ETag": "\u00220x8D95D002D62C99C\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:39 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "095d074b-512f-9ca7-8481-6521dfede904", + "x-ms-content-crc64": "9NooqAFr/Fw=", + "x-ms-request-id": "b122a724-d01e-004a-0de9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:55.2193557Z" + "x-ms-version-id": "2021-08-11T19:42:39.2467868Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1ab23876-62f0-4422-6da4-8b8ebf523c50/test-blob-2a455b93-add8-4244-bb38-dc96116e57fc?comp=snapshot", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-1ab23876-62f0-4422-6da4-8b8ebf523c50?comp=snapshot", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-394ee5dfa342ed48bf776bdb22d89366-e6f929673fbc7a48-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "55c8bf21-300e-f447-9882-f2f248e5e307", - "x-ms-date": "Thu, 08 Jul 2021 16:23:55 GMT", + "traceparent": "00-cbf71bbeb0e7fe4c91824dc42607577a-4d88a81cd5e49140-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "283a887f-36dd-6f9d-9093-0056c3e39f43", + "x-ms-date": "Wed, 11 Aug 2021 19:42:39 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:54 GMT", - "ETag": "\u00220x8D9422CC8111815\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:55 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "55c8bf21-300e-f447-9882-f2f248e5e307", - "x-ms-request-id": "4a2ef1d0-101e-0004-0a15-7405ac000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:38 GMT", + "ETag": "\u00220x8D95D002D62C99C\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:39 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "283a887f-36dd-6f9d-9093-0056c3e39f43", + "x-ms-request-id": "b122a792-d01e-004a-6ae9-8e693e000000", "x-ms-request-server-encrypted": "false", - "x-ms-snapshot": "2021-07-08T16:23:55.3023088Z", + "x-ms-snapshot": "2021-08-11T19:42:39.3298442Z", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:55.3033088Z" + "x-ms-version-id": "2021-08-11T19:42:39.3308442Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1ab23876-62f0-4422-6da4-8b8ebf523c50/test-blob-2a455b93-add8-4244-bb38-dc96116e57fc?snapshot=2021-07-08T16%3A23%3A55.3023088Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A55Z\u0026sr=bs\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-1ab23876-62f0-4422-6da4-8b8ebf523c50?snapshot=2021-08-11T19%3A42%3A39.3298442Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A39Z\u0026sr=bs\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-89550fef09ebd646818516e90dfea4dc-946e19d4af09be4d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "f9a0c59d-53b3-4f13-4145-905a43aa26ab", + "traceparent": "00-724bcc10060954458913a53bd76ebeb5-fdfbe0e5a32b694e-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "57a143d8-c1b3-6127-7a75-fca656181633", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:55 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:39 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -96,30 +81,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:54 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "f9a0c59d-53b3-4f13-4145-905a43aa26ab", + "Date": "Wed, 11 Aug 2021 19:42:38 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "57a143d8-c1b3-6127-7a75-fca656181633", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:55 GMT", - "x-ms-request-id": "4a2ef1d3-101e-0004-0c15-7405ac000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:39 GMT", + "x-ms-request-id": "b122a7df-d01e-004a-2ae9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1ab23876-62f0-4422-6da4-8b8ebf523c50/test-blob-2a455b93-add8-4244-bb38-dc96116e57fc?snapshot=2021-07-08T16%3A23%3A55.3023088Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A55Z\u0026sr=bs\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-1ab23876-62f0-4422-6da4-8b8ebf523c50?snapshot=2021-08-11T19%3A42%3A39.3298442Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A39Z\u0026sr=bs\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-8df75a0dd1444e4aaded2c54cf16de2b-0d3b3989cb31ea4d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8255bf6b-ea44-8554-2f52-166d30cc1ecf", + "traceparent": "00-7a28ef054b3a95428c86101d93d9f694-6105b5043a2d794e-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "807df9af-4841-5f90-9766-db9934a19e7f", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -128,29 +107,23 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:55 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "8255bf6b-ea44-8554-2f52-166d30cc1ecf", + "Date": "Wed, 11 Aug 2021 19:42:38 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "807df9af-4841-5f90-9766-db9934a19e7f", "x-ms-legal-hold": "false", - "x-ms-request-id": "4a2ef1da-101e-0004-1015-7405ac000000", + "x-ms-request-id": "b122a82d-d01e-004a-68e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1ab23876-62f0-4422-6da4-8b8ebf523c50/test-blob-2a455b93-add8-4244-bb38-dc96116e57fc?snapshot=2021-07-08T16%3A23%3A55.3023088Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A55Z\u0026sr=bs\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-1ab23876-62f0-4422-6da4-8b8ebf523c50?snapshot=2021-08-11T19%3A42%3A39.3298442Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A39Z\u0026sr=bs\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-ea8c0245b0cef34aa302a98e1c9a3b9e-519b31e624521447-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "84ef10a7-a355-c566-a4f8-50ef32232eca", + "traceparent": "00-093f34d4fbac324fafb994eb04de0feb-c3837ef59b730946-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5df6514e-969a-54f1-3540-614c787a1aa0", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -158,118 +131,45 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:55 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "84ef10a7-a355-c566-a4f8-50ef32232eca", - "x-ms-request-id": "4a2ef1db-101e-0004-1115-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1ab23876-62f0-4422-6da4-8b8ebf523c50/test-blob-2a455b93-add8-4244-bb38-dc96116e57fc?snapshot=2021-07-08T16:23:55.3023088Z", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-74326a6a851b2448be2dc44b687d9acd-ef7343fc5ee8e842-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "1fc57637-99dd-aa7a-eb31-b8a245022212", - "x-ms-date": "Thu, 08 Jul 2021 16:23:55 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:55 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "1fc57637-99dd-aa7a-eb31-b8a245022212", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2ef1dc-101e-0004-1215-7405ac000000", + "Date": "Wed, 11 Aug 2021 19:42:39 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "5df6514e-969a-54f1-3540-614c787a1aa0", + "x-ms-request-id": "b122a8b5-d01e-004a-61e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1ab23876-62f0-4422-6da4-8b8ebf523c50?restype=container\u0026comp=list\u0026include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "bcb79aec-0e5d-aeed-91a0-f87989428fcb", - "x-ms-date": "Thu, 08 Jul 2021 16:23:55 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "x-ms-request-id,x-ms-client-request-id,Server,x-ms-version,Content-Type,Content-Length,Date,Transfer-Encoding", - "Content-Type": "application/xml", - "Date": "Thu, 08 Jul 2021 16:23:55 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "bcb79aec-0e5d-aeed-91a0-f87989428fcb", - "x-ms-request-id": "4a2ef1f1-101e-0004-1b15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://seanoauthstage.blob.core.windows.net/\u0022 ContainerName=\u0022test-container-1ab23876-62f0-4422-6da4-8b8ebf523c50\u0022\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-2a455b93-add8-4244-bb38-dc96116e57fc\u003C/Name\u003E\u003CVersionId\u003E2021-07-08T16:23:55.3033088Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 08 Jul 2021 16:23:55 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 08 Jul 2021 16:23:55 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D9422CC8111815\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003EdK5TnGn4tH5Zwebvay9Ahw==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-1ab23876-62f0-4422-6da4-8b8ebf523c50/test-blob-2a455b93-add8-4244-bb38-dc96116e57fc", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-1ab23876-62f0-4422-6da4-8b8ebf523c50?snapshot=2021-08-11T19:42:39.3298442Z", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-81810f045555414c9c5364cb062dbf14-96ffb71bd46b1049-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "aab61af4-664a-03b5-a955-dc8f3e7cdcea", - "x-ms-date": "Thu, 08 Jul 2021 16:23:55 GMT", + "traceparent": "00-6303adc03f0c6845ba36f59ece92fabf-8de8f3d844c09b44-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e34a0b48-41aa-d5e4-cd00-4d0488070cb5", + "x-ms-date": "Wed, 11 Aug 2021 19:42:39 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:55 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "aab61af4-664a-03b5-a955-dc8f3e7cdcea", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:39 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "e34a0b48-41aa-d5e4-cd00-4d0488070cb5", "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2ef1f4-101e-0004-1e15-7405ac000000", + "x-ms-request-id": "b122a909-d01e-004a-2ee9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-07-08T11:23:55.4994914-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:39.3909592-07:00", "RandomSeed": "1008286641", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\nXClient\nba45b233-e2ef-4169-8808-49eb0d8eba0d" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(All).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(All).json index 11a7cb629470b..d676d5c554722 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(All).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(All).json @@ -1,58 +1,49 @@ { "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4a90f3e0-54f2-5a39-b221-536c308bd758/test-blob-ad77dafa-7758-430e-8273-802ccd9be02c", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-4a90f3e0-54f2-5a39-b221-536c308bd758", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-537980b1ee79c146bb787a457d2570de-7baad9c1ea0b5443-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-ac16805fafbcd14c971911f424ce9eea-70791dcad6f9f34d-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "0a7cd02a-653a-44fe-5f6c-296665415407", - "x-ms-date": "Thu, 08 Jul 2021 16:23:36 GMT", + "x-ms-client-request-id": "8d11a661-6d73-4a83-5b25-2003401a90e1", + "x-ms-date": "Wed, 11 Aug 2021 19:42:26 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "6kBKyxtsl27Ig0tEeGGhegPqldj3I9Bo5U3HftMMjRZAJoHwQAw9jUII5NQsycoh0gUp4gUHNMZv4eXOpBiau/Y0BFHfsDn2rQeW7z/7PBuCpqzO46oQOPK7gF8mb\u002BkpbSje\u002BMV4QSHMMjX\u002BcUWHdKXJS/5szNhLI8tfJDDZ0D4ebIEWHUNWCWSKAbB1EsesMwu6XCPqvaBQk9X6GB3w8mL33wXDcFZhc0GZ4con1RAEs/AkH3MaNK/hxopuW/FGmQ9OfjPB6cK1WenhUNvVKL3E9mUty9Lv3KtW4qrM8hdQU0i72VfdQsotb8aKOOPUC57MqmWLGM48XqGIawYY6GbRkP2TGk5l57ObAFwMZaTIgtYMAEiyxDp5fnq2VNfDFIdfuKflQfFPZsOx8BhyL/n9wOkwC\u002BgeHsvDGZvUr5Lc1\u002BvUraz84kDlvZmFANQiB0\u002BBuZTtkwieQJnbISdVercw1BksnYJNAN2oSk5PmR73oRFMU/X970TiNmwSIMAYj0LhVCu69WrMM7i3RUi6T6d75IAWCCfBM\u002BXUSWcVOuAcj7oLbUXyPKumfx89Rqr7KObFljxAAoYbICFG5qwDt/nXmrWNruJhiafUcIgIg\u002Bw72CCAUKOk3I0z8EwkrFb/o8glZaz0bnkEYw2Ua5H9E5w0Cg2LgmZVMr0oWb6VPdxQ1c3A4h1AR2qnfOyVD3D7Nd2w76FJdCBi0DLuzBS7biUxRJbEPTF\u002B88Oi5AZ5vyNNLCPh5U06B2GsXRHrUntV7A3GZMvaNvisMfzeppAa6BAPoZ/x2YnY9jw1GN8fk6FITfj4slpXcvYrNbNRXGDQknUA27HbZBKE7m6OpR4YjJ1bllmYIjW2uC6oxaTVhprcZIVqHrjvbOjlc8TsyM3XE6gV9sYHOHBASiKCM55trmfUskCYrW7laylwsq5xye9g0bL8v5DU1CsVKtOVbDlKeMRcFxWNPmU6MIqclobBz4EyIWLscO/WAN0Ug4OaT//wJjnqFLHa05JMwo8GNz6kVFpSYkrXXQfVhRc3eLvhn\u002BCLq29N17rPWE7Pn65f0Mifby4oSO20GckxFI6aolvWaiOueozOV32fgwr8B75ZdbVPmAiNuFbz15KmG8IsNbby\u002BTSLsFU70RixiMXjtxIK157ZSwpTSbHMu6P6Jzu6c01UCg2JzsVfE8bw2zCREB\u002BAm0QkUuqrnrCCvvWxQanc9hV3j60EgQnZeTdDY22BOquEeov3liBjqGtdBw/PrtEdE\u002BUaGYByexo6StmyZztDAINJLccd5GD0E\u002BZBp3r5CctmJU\u002BIZiEqEv5xvUtHsUAwGQaMhYAKAC\u002BEJgaaMNSgQUENTELrupliHxvIrCcUrA==", + "RequestBody": "\u002Btp3rVh3DkOCc4AszZvgLOpASssbbJduyINLRHhhoXoD6pXY9yPQaOVNx37TDI0WQCaB8EAMPY1CCOTULMnKIdIFKeIFBzTGb\u002BHlzqQYmrv2NARR37A59q0Hlu8/\u002BzwbgqaszuOqEDjyu4BfJm/pKW0o3vjFeEEhzDI1/nFFh3SlyUv\u002BbMzYSyPLXyQw2dA\u002BHmyBFh1DVglkigGwdRLHrDMLulwj6r2gUJPV\u002Bhgd8PJi998Fw3BWYXNBmeHKJ9UQBLPwJB9zGjSv4caKblvxRpkPTn4zwenCtVnp4VDb1Si9xPZlLcvS79yrVuKqzPIXUFNIu9lX3ULKLW/Gijjj1AuezKplixjOPF6hiGsGGOhm0ZD9kxpOZeezmwBcDGWkyILWDABIssQ6eX56tlTXwxSHX7in5UHxT2bDsfAYci/5/cDpMAvoHh7Lwxmb1K\u002BS3Nfr1K2s/OJA5b2ZhQDUIgdPgbmU7ZMInkCZ2yEnVXq3MNQZLJ2CTQDdqEpOT5ke96ERTFP1/e9E4jZsEiDAGI9C4VQruvVqzDO4t0VIuk\u002Bne\u002BSAFggnwTPl1ElnFTrgHI\u002B6C21F8jyrpn8fPUaq\u002ByjmxZY8QAKGGyAhRuasA7f515q1ja7iYYmn1HCICIPsO9gggFCjpNyNM/BMJKxW/6PIJWWs9G55BGMNlGuR/ROcNAoNi4JmVTK9KFm\u002BlT3cUNXNwOIdQEdqp3zslQ9w\u002BzXdsO\u002BhSXQgYtAy7swUu24lMUSWxD0xfvPDouQGeb8jTSwj4eVNOgdhrF0R61J7VewNxmTL2jb4rDH83qaQGugQD6Gf8dmJ2PY8NRjfH5OhSE34\u002BLJaV3L2KzWzUVxg0JJ1ANux22QShO5ujqUeGIydW5ZZmCI1trguqMWk1Yaa3GSFah6472zo5XPE7MjN1xOoFfbGBzhwQEoigjOeba5n1LJAmK1u5WspcLKuccnvYNGy/L\u002BQ1NQrFSrTlWw5SnjEXBcVjT5lOjCKnJaGwc\u002BBMiFi7HDv1gDdFIODmk//8CY56hSx2tOSTMKPBjc\u002BpFRaUmJK110H1YUXN3i74Z/gi6tvTde6z1hOz5\u002BuX9DIn28uKEjttBnJMRSOmqJb1mojrnqMzld9n4MK/Ae\u002BWXW1T5gIjbhW89eSphvCLDW28vk0i7BVO9EYsYjF47cSCtee2UsKU0mxzLuj\u002Bic7unNNVAoNic7FXxPG8NswkRAfgJtEJFLqq56wgr71sUGp3PYVd4\u002BtBIEJ2Xk3Q2NtgTqrhHqL95YgY6hrXQcPz67RHRPlGhmAcnsaOkrZsmc7QwCDSS3HHeRg9BPmQad6\u002BQnLZiVPiGYhKhL\u002Bcb1LR7FAMBkGjIWACgAvhCYGmjDUoA==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "cvHIk7XzW6Tl8YvABjlntA==", - "Date": "Thu, 08 Jul 2021 16:23:36 GMT", - "ETag": "\u00220x8D9422CBCD58F0C\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "0a7cd02a-653a-44fe-5f6c-296665415407", - "x-ms-content-crc64": "zTc9pgZCTo8=", - "x-ms-request-id": "4a2eefa3-101e-0004-6815-7405ac000000", + "Content-Length": "0", + "Content-MD5": "hMj2m7Khk5I2fmnHJE7GOA==", + "Date": "Wed, 11 Aug 2021 19:42:25 GMT", + "ETag": "\u00220x8D95D002590542D\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:26 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "8d11a661-6d73-4a83-5b25-2003401a90e1", + "x-ms-content-crc64": "2jtolpuJii0=", + "x-ms-request-id": "b12275ab-d01e-004a-0ae9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:36.3752474Z" + "x-ms-version-id": "2021-08-11T19:42:26.1244715Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4a90f3e0-54f2-5a39-b221-536c308bd758/test-blob-ad77dafa-7758-430e-8273-802ccd9be02c?comp=metadata", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-4a90f3e0-54f2-5a39-b221-536c308bd758?comp=metadata", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-8586b5f2ba09d44fb0598f60a2adb604-0476791c2ffc9c43-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "db9e398f-0aab-fc72-a7cd-2e07441de41a", - "x-ms-date": "Thu, 08 Jul 2021 16:23:36 GMT", + "traceparent": "00-280f932855fdd843bc0b0cdd90bfea51-5f3394f364365e46-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f4a47a70-461f-d32c-bdc2-f01ccbb75948", + "x-ms-date": "Wed, 11 Aug 2021 19:42:26 GMT", "x-ms-meta-Capital": "letter", "x-ms-meta-foo": "bar", "x-ms-meta-meta": "data", @@ -63,35 +54,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:36 GMT", - "ETag": "\u00220x8D9422CBCE21055\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "db9e398f-0aab-fc72-a7cd-2e07441de41a", - "x-ms-request-id": "4a2eefa4-101e-0004-6915-7405ac000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:25 GMT", + "ETag": "\u00220x8D95D00259F991E\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:26 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "f4a47a70-461f-d32c-bdc2-f01ccbb75948", + "x-ms-request-id": "b122766e-d01e-004a-2ae9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:36.4572005Z" + "x-ms-version-id": "2021-08-11T19:42:26.2255431Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4a90f3e0-54f2-5a39-b221-536c308bd758/test-blob-ad77dafa-7758-430e-8273-802ccd9be02c?versionid=2021-07-08T16%3A23%3A36.4572005Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A36Z\u0026sr=b\u0026sp=xi\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-4a90f3e0-54f2-5a39-b221-536c308bd758?versionid=2021-08-11T19%3A42%3A26.2255431Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A26Z\u0026sr=b\u0026sp=xi\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-f34950b515174e48a1228915fc6b33f2-125fd6ff71ade84b-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "2cd7e113-78a3-655c-08a8-4c5218258fa0", + "traceparent": "00-a50bdbada201a14ea21c7cc786b7bf9d-ed11e9f483854b4b-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c59318d1-9b76-e4c2-a3a8-4c7775e178a8", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:36 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:26 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -99,30 +84,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "2cd7e113-78a3-655c-08a8-4c5218258fa0", + "Date": "Wed, 11 Aug 2021 19:42:25 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "c59318d1-9b76-e4c2-a3a8-4c7775e178a8", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:36 GMT", - "x-ms-request-id": "4a2eefa6-101e-0004-6a15-7405ac000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:26 GMT", + "x-ms-request-id": "b12276c7-d01e-004a-74e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4a90f3e0-54f2-5a39-b221-536c308bd758/test-blob-ad77dafa-7758-430e-8273-802ccd9be02c?versionid=2021-07-08T16%3A23%3A36.4572005Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A36Z\u0026sr=b\u0026sp=xi\u0026sig=Sanitized\u0026comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-4a90f3e0-54f2-5a39-b221-536c308bd758?versionid=2021-08-11T19%3A42%3A26.2255431Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A26Z\u0026sr=b\u0026sp=xi\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-ae9eb8da57f7e542a0f2c7882bbc3a40-2b4d56df87779d4c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "62f48654-b846-5976-bb2d-bdcd4f70cc7e", + "traceparent": "00-274ca30257c2ad4b8b6f6230220d91aa-e8c37f57bf2a0944-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b34bd6de-9323-f3d2-77b9-3702bdfb87c5", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -131,119 +110,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "62f48654-b846-5976-bb2d-bdcd4f70cc7e", + "Date": "Wed, 11 Aug 2021 19:42:25 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "b34bd6de-9323-f3d2-77b9-3702bdfb87c5", "x-ms-legal-hold": "false", - "x-ms-request-id": "4a2eefa7-101e-0004-6b15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4a90f3e0-54f2-5a39-b221-536c308bd758?restype=container\u0026comp=list\u0026include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-745500b36f07fc4f94c828f1f26e869c-e970c16addc7bc46-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "91fe8721-2c31-255a-5ff1-f7f5d604a406", - "x-ms-date": "Thu, 08 Jul 2021 16:23:36 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "x-ms-request-id,x-ms-client-request-id,Server,x-ms-version,Content-Type,Content-Length,Date,Transfer-Encoding", - "Content-Type": "application/xml", - "Date": "Thu, 08 Jul 2021 16:23:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "91fe8721-2c31-255a-5ff1-f7f5d604a406", - "x-ms-request-id": "4a2eefa9-101e-0004-6d15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://seanoauthstage.blob.core.windows.net/\u0022 ContainerName=\u0022test-container-4a90f3e0-54f2-5a39-b221-536c308bd758\u0022\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-ad77dafa-7758-430e-8273-802ccd9be02c\u003C/Name\u003E\u003CVersionId\u003E2021-07-08T16:23:36.4572005Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 08 Jul 2021 16:23:36 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 08 Jul 2021 16:23:36 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D9422CBCE21055\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003EcvHIk7XzW6Tl8YvABjlntA==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003CImmutabilityPolicyUntilDate\u003EThu, 08 Jul 2021 16:28:36 GMT\u003C/ImmutabilityPolicyUntilDate\u003E\u003CImmutabilityPolicyMode\u003Eunlocked\u003C/ImmutabilityPolicyMode\u003E\u003CLegalHold\u003Efalse\u003C/LegalHold\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4a90f3e0-54f2-5a39-b221-536c308bd758/test-blob-ad77dafa-7758-430e-8273-802ccd9be02c?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-e4a8508b9460304387f56e543d587634-9b4a89a7dd3e8341-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c7acb085-3a72-ed4d-5273-3ea5ce8fa90a", - "x-ms-date": "Thu, 08 Jul 2021 16:23:36 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "c7acb085-3a72-ed4d-5273-3ea5ce8fa90a", - "x-ms-request-id": "4a2eefaa-101e-0004-6e15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4a90f3e0-54f2-5a39-b221-536c308bd758/test-blob-ad77dafa-7758-430e-8273-802ccd9be02c", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-7b552c5818f9a7468cba8b59ad6373ae-df03a5d6a0aa8947-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "257095d9-dc58-b394-6cfc-bdeea989c072", - "x-ms-date": "Thu, 08 Jul 2021 16:23:36 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "257095d9-dc58-b394-6cfc-bdeea989c072", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2eefab-101e-0004-6f15-7405ac000000", + "x-ms-request-id": "b1227723-d01e-004a-3ee9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-07-08T11:23:36.6488501-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:26.2925369-07:00", "RandomSeed": "1732309024", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\nXClient\nba45b233-e2ef-4169-8808-49eb0d8eba0d" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(All)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(All)Async.json index 97ed437d1b527..395565c8348ba 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(All)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(All)Async.json @@ -1,58 +1,49 @@ { "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6516c728-3772-1349-699f-239fe6368abf/test-blob-821998b9-c7f2-680e-d51e-ada90a638b82", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-6516c728-3772-1349-699f-239fe6368abf", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-ce61dc32762f19478063fce742e6a734-d251a505f2b0e04a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-66d5af580573004eb4ee800c7a4d8f1f-daf86fb10d109f4e-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "505f4ea7-ffd3-eb24-58ad-5a532cad8e7e", - "x-ms-date": "Thu, 08 Jul 2021 16:23:58 GMT", + "x-ms-client-request-id": "855d6a84-9b98-a73f-ae89-aaddb4e4ccf3", + "x-ms-date": "Wed, 11 Aug 2021 19:42:39 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "7GiFzNCea/YeSEhZz7eQDAnYwQm50RNgua6PU4mgCAUToLN9sb3uGywjZKl/tJkejqCfMaKByRpVJBMiDhdsfj9CRS4EEltL6qXdlW1p4AQUccXpANdjkdaYKIyqzAwUtuZpPG5qGXtEU0f8pDOs60QODZxSgn1n37RXa\u002BrPoR2YyN\u002BH/6OVqlhJpayQZuyj7DxInL9wwjRoAl26Eq2RdLIpY9xUJeugeGJECN3Q13jHtH\u002BthwReKAWqH/1G25equDD6ZwIQTsdRpyNcK7lWlyrk814u5O2tyzrXqQXtWZ3LmlCs1m92t2W4XN/hAf1LVIfSYec5e9NDTJvHOKXBY02GkJBpqcG7bjz4dogNzMk9i1V\u002BG/i1kh98aYrUrn7A9viRWnBt4qrGF/OrQAVLNX/Siq1PQkhV0P5x7EA25r\u002B\u002BOH\u002BPfHJYz6mruAMFClEaMTQLASTQcLOwO4py\u002B/VpjzAz7AiFu7kNeboEpIpEUMasV7sLK\u002BSb7cfL3kDo5tOzQSjS0R1JlHV7/YhpzMwpbOvDxaQ6XmRMl/9Aud14JZLmUGJicn6oY8JFkC1cMiH6onJUJCEveePEhjkeCNqYAtj1gntpxvltG2Li9c4272XdRhdqJABxt9d/netEilrnrI1VZq\u002BmkNt45wm\u002BTYQVjZbUQMLDLt3Xg8qj6igNKJAI\u002BkhA4Yi1NrU78T33smpTahBVcEmXJH6wfePkAqaya754tlI71KwOHgkMiDyg39FgUH8YuLhHcNbKj2Ol0DQOiIZ\u002Bf/sXF5VjRlE/iptBD50RhLInmrIGMEZ8cURIaE7V/v\u002B2Il/VSDjptXFnCOU6iYDFk0yB5\u002B7Td0\u002B1mqZQGt0DaYyciuw\u002BPDt5PeRAnyhhQufEgtUBVBYR4qoQIK6SmJqTZJ5Ynv6Uh1cRCKkJk9gnU1i\u002BjJcIARV2iqhBLRuN56RKrDqJCKTpMPt98EtsB0/R6MxV0wwCimKJ4hNWUlo7hCAFv\u002Badnku01VycixHJCYNYb0RPNxSYRyHY/yaRk96gQmsrZ0hpM0qBoP2vZv9QwNiQ/eIV7EwMbHfExZ4kI0J\u002B\u002B0mlnqI67zv6zZYW6eEihz9OAZX7i1UfH/vQpG6sXX27MWq2qiE1VQ6mGx619YOWoj1e1iKtgnDzhn\u002BnakvNTXAZW7d3bNwdGKuHVXA3ail4OgEwTYZbDq/5wiSijuvC2M2tnJrLHzZhQb12JSz/uxtVLy9JnQDpvU0Ifam4eorAxHyjis6OrBrLzwzJ5OiC\u002BgcJTV\u002B7eTvMw95NwqGNqcYztWGvXDFNxoIVfc30INlkhoOiri0rBUtB18fwQep5PiZFli6H0p7Vu4bcpvtu2KIE6Dwe6vqYB7AVbg==", + "RequestBody": "uZgZgvLHDmjVHq2pCmOLguxohczQnmv2HkhIWc\u002B3kAwJ2MEJudETYLmuj1OJoAgFE6CzfbG97hssI2Spf7SZHo6gnzGigckaVSQTIg4XbH4/QkUuBBJbS\u002Bql3ZVtaeAEFHHF6QDXY5HWmCiMqswMFLbmaTxuahl7RFNH/KQzrOtEDg2cUoJ9Z9\u002B0V2vqz6EdmMjfh/\u002BjlapYSaWskGbso\u002Bw8SJy/cMI0aAJduhKtkXSyKWPcVCXroHhiRAjd0Nd4x7R/rYcEXigFqh/9RtuXqrgw\u002BmcCEE7HUacjXCu5Vpcq5PNeLuTtrcs616kF7Vmdy5pQrNZvdrdluFzf4QH9S1SH0mHnOXvTQ0ybxzilwWNNhpCQaanBu248\u002BHaIDczJPYtVfhv4tZIffGmK1K5\u002BwPb4kVpwbeKqxhfzq0AFSzV/0oqtT0JIVdD\u002BcexANua/vjh/j3xyWM\u002Bpq7gDBQpRGjE0CwEk0HCzsDuKcvv1aY8wM\u002BwIhbu5DXm6BKSKRFDGrFe7Cyvkm\u002B3Hy95A6ObTs0Eo0tEdSZR1e/2IaczMKWzrw8WkOl5kTJf/QLndeCWS5lBiYnJ\u002BqGPCRZAtXDIh\u002BqJyVCQhL3njxIY5HgjamALY9YJ7acb5bRti4vXONu9l3UYXaiQAcbfXf53rRIpa56yNVWavppDbeOcJvk2EFY2W1EDCwy7d14PKo\u002BooDSiQCPpIQOGItTa1O/E997JqU2oQVXBJlyR\u002BsH3j5AKmsmu\u002BeLZSO9SsDh4JDIg8oN/RYFB/GLi4R3DWyo9jpdA0DoiGfn/7FxeVY0ZRP4qbQQ\u002BdEYSyJ5qyBjBGfHFESGhO1f7/tiJf1Ug46bVxZwjlOomAxZNMgefu03dPtZqmUBrdA2mMnIrsPjw7eT3kQJ8oYULnxILVAVQWEeKqECCukpiak2SeWJ7\u002BlIdXEQipCZPYJ1NYvoyXCAEVdoqoQS0bjeekSqw6iQik6TD7ffBLbAdP0ejMVdMMAopiieITVlJaO4QgBb/mnZ5LtNVcnIsRyQmDWG9ETzcUmEch2P8mkZPeoEJrK2dIaTNKgaD9r2b/UMDYkP3iFexMDGx3xMWeJCNCfvtJpZ6iOu87\u002Bs2WFunhIoc/TgGV\u002B4tVHx/70KRurF19uzFqtqohNVUOphsetfWDlqI9XtYirYJw84Z/p2pLzU1wGVu3d2zcHRirh1VwN2opeDoBME2GWw6v\u002BcIkoo7rwtjNrZyayx82YUG9diUs/7sbVS8vSZ0A6b1NCH2puHqKwMR8o4rOjqway88MyeTogvoHCU1fu3k7zMPeTcKhjanGM7Vhr1wxTcaCFX3N9CDZZIaDoq4tKwVLQdfH8EHqeT4mRZYuh9Ke1buG3A==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "RQxyNuxozRmw0jsbkyl2ww==", - "Date": "Thu, 08 Jul 2021 16:23:57 GMT", - "ETag": "\u00220x8D9422CC9DA49D3\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:58 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "505f4ea7-ffd3-eb24-58ad-5a532cad8e7e", - "x-ms-content-crc64": "c/1JwlWOVa0=", - "x-ms-request-id": "4a2ef234-101e-0004-4c15-7405ac000000", + "Content-Length": "0", + "Content-MD5": "cfkmSFnJujGs7ULVrLWF\u002Bg==", + "Date": "Wed, 11 Aug 2021 19:42:39 GMT", + "ETag": "\u00220x8D95D002DC08B0A\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:39 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "855d6a84-9b98-a73f-ae89-aaddb4e4ccf3", + "x-ms-content-crc64": "E1EQs46FLp4=", + "x-ms-request-id": "b122a949-d01e-004a-65e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:58.2156243Z" + "x-ms-version-id": "2021-08-11T19:42:39.8612234Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6516c728-3772-1349-699f-239fe6368abf/test-blob-821998b9-c7f2-680e-d51e-ada90a638b82?comp=metadata", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-6516c728-3772-1349-699f-239fe6368abf?comp=metadata", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-31a1ae8bbb811d4a8dea349ed3b2b0ee-bf085b3ccaaa0545-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "b9f1061e-c551-859b-4572-2cea41eb7a01", - "x-ms-date": "Thu, 08 Jul 2021 16:23:58 GMT", + "traceparent": "00-c27e8fc187624d4e8e060c3946652c00-f70b61c198f7e14f-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "6b196371-005e-0a44-bbc7-29195a0b8839", + "x-ms-date": "Wed, 11 Aug 2021 19:42:39 GMT", "x-ms-meta-Capital": "letter", "x-ms-meta-foo": "bar", "x-ms-meta-meta": "data", @@ -63,35 +54,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:57 GMT", - "ETag": "\u00220x8D9422CC9E655F9\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:58 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "b9f1061e-c551-859b-4572-2cea41eb7a01", - "x-ms-request-id": "4a2ef236-101e-0004-4e15-7405ac000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:39 GMT", + "ETag": "\u00220x8D95D002DCD85B9\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:39 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "6b196371-005e-0a44-bbc7-29195a0b8839", + "x-ms-request-id": "b122a9b3-d01e-004a-3be9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:58.2955785Z" + "x-ms-version-id": "2021-08-11T19:42:39.9472841Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6516c728-3772-1349-699f-239fe6368abf/test-blob-821998b9-c7f2-680e-d51e-ada90a638b82?versionid=2021-07-08T16%3A23%3A58.2955785Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A58Z\u0026sr=b\u0026sp=xi\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-6516c728-3772-1349-699f-239fe6368abf?versionid=2021-08-11T19%3A42%3A39.9472841Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A40Z\u0026sr=b\u0026sp=xi\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-b6fe1cd0c5a4c14d996ff05a188882e0-d8a63f53b90e784c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "25352025-d4bb-ac2d-c893-26ebd359c8cf", + "traceparent": "00-b3d8a6606b1b724eba91c68cdf6c27de-ac5727c8e65e8648-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "506b2bfb-60cb-a695-0955-940cd50a904c", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:58 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:40 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -99,30 +84,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:57 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "25352025-d4bb-ac2d-c893-26ebd359c8cf", + "Date": "Wed, 11 Aug 2021 19:42:39 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "506b2bfb-60cb-a695-0955-940cd50a904c", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:58 GMT", - "x-ms-request-id": "4a2ef23a-101e-0004-5015-7405ac000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:40 GMT", + "x-ms-request-id": "b122a9e3-d01e-004a-66e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6516c728-3772-1349-699f-239fe6368abf/test-blob-821998b9-c7f2-680e-d51e-ada90a638b82?versionid=2021-07-08T16%3A23%3A58.2955785Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A58Z\u0026sr=b\u0026sp=xi\u0026sig=Sanitized\u0026comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-6516c728-3772-1349-699f-239fe6368abf?versionid=2021-08-11T19%3A42%3A39.9472841Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A40Z\u0026sr=b\u0026sp=xi\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-65293bd26b90e14688e595556a5e470d-789cf5ae687fc74a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "21c5e0e1-55b6-2645-febf-87383aa9d2af", + "traceparent": "00-eb5d15ed24873f4e8d6ce9df5d4e1d11-0bdd81e9a70ffc44-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2e1e284c-38a0-bd6e-714a-b0fc318fb03a", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -131,118 +110,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:57 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "21c5e0e1-55b6-2645-febf-87383aa9d2af", + "Date": "Wed, 11 Aug 2021 19:42:39 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "2e1e284c-38a0-bd6e-714a-b0fc318fb03a", "x-ms-legal-hold": "false", - "x-ms-request-id": "4a2ef23e-101e-0004-5315-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6516c728-3772-1349-699f-239fe6368abf?restype=container\u0026comp=list\u0026include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "f30aebe2-a794-f719-e3f8-2fe0b03682c8", - "x-ms-date": "Thu, 08 Jul 2021 16:23:58 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "x-ms-request-id,x-ms-client-request-id,Server,x-ms-version,Content-Type,Content-Length,Date,Transfer-Encoding", - "Content-Type": "application/xml", - "Date": "Thu, 08 Jul 2021 16:23:58 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "f30aebe2-a794-f719-e3f8-2fe0b03682c8", - "x-ms-request-id": "4a2ef241-101e-0004-5515-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://seanoauthstage.blob.core.windows.net/\u0022 ContainerName=\u0022test-container-6516c728-3772-1349-699f-239fe6368abf\u0022\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-821998b9-c7f2-680e-d51e-ada90a638b82\u003C/Name\u003E\u003CVersionId\u003E2021-07-08T16:23:58.2955785Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 08 Jul 2021 16:23:58 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 08 Jul 2021 16:23:58 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D9422CC9E655F9\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003ERQxyNuxozRmw0jsbkyl2ww==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003CImmutabilityPolicyUntilDate\u003EThu, 08 Jul 2021 16:28:58 GMT\u003C/ImmutabilityPolicyUntilDate\u003E\u003CImmutabilityPolicyMode\u003Eunlocked\u003C/ImmutabilityPolicyMode\u003E\u003CLegalHold\u003Efalse\u003C/LegalHold\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6516c728-3772-1349-699f-239fe6368abf/test-blob-821998b9-c7f2-680e-d51e-ada90a638b82?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-0397166a3271f0478fc3431228be6092-3b057ab4c2e2e74f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4f554e44-df9f-e41b-aac8-c9f432cc3d7c", - "x-ms-date": "Thu, 08 Jul 2021 16:23:58 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:58 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "4f554e44-df9f-e41b-aac8-c9f432cc3d7c", - "x-ms-request-id": "4a2ef244-101e-0004-5815-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-6516c728-3772-1349-699f-239fe6368abf/test-blob-821998b9-c7f2-680e-d51e-ada90a638b82", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-07ea5c84ba15e84ab5a7155795f0aa7e-78ba1e924f8d3d4b-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "619b62f6-33e0-9829-e48a-c2073a594d66", - "x-ms-date": "Thu, 08 Jul 2021 16:23:58 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:58 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "619b62f6-33e0-9829-e48a-c2073a594d66", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2ef247-101e-0004-5a15-7405ac000000", + "x-ms-request-id": "b122aa2e-d01e-004a-25e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-07-08T11:23:58.4873734-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:40.0149635-07:00", "RandomSeed": "2062729947", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\nXClient\nba45b233-e2ef-4169-8808-49eb0d8eba0d" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(SetImmutabilityPolicy).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(SetImmutabilityPolicy).json index 004972684ee68..e59ee2945f210 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(SetImmutabilityPolicy).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(SetImmutabilityPolicy).json @@ -1,58 +1,49 @@ { "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f5e9cb9b-7ac1-40d5-953c-0489fddc96fc/test-blob-b0587150-92fc-1fee-06c5-b0f5c13a6596", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-f5e9cb9b-7ac1-40d5-953c-0489fddc96fc", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-645bb12cc0e09841b830a6b48d081c1d-15d25614ac58ef44-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-75ca806362d2b54186484d8748fe9627-e334c60ac585e747-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "51a8368b-b6ba-4621-82ed-0907872d1ea1", - "x-ms-date": "Thu, 08 Jul 2021 16:23:39 GMT", + "x-ms-client-request-id": "1e4dbb50-5a9d-cff0-5e4c-afd98ae63862", + "x-ms-date": "Wed, 11 Aug 2021 19:42:26 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "dbFqMLu3Qtr3caeHVxmj5YtCjh77Hq4J3cru/Mngf1vWbhRLcmZBmC5\u002BuYrqZsftIctqfqxHmlYDYVLxyEYQF/JMsekFV3MlAfXvfWUkHnYCAdr\u002BdQGujtO9SBATT9DobaGXnrXd58pXRXy2Vx3w30Lc7sZrEaLxnSIWRw9iEbIlBxDEjIDBJBkQpzCE9za2zGjNN2AJfVv/pgCTx6C69TPKkVAMLFPCG8qsW2pybKXrX3qnlNpRG4q0xOV/LV15VbH8umbmqZ8UCxuWXCHxjTlbp2glE2BYeHbGWGhtQ\u002B1sMwW4dbI/BbXbkom\u002Bu75owjesJIb0VEFRo0HwIFA3p8guKSkcOBeHG6KySoHXmby3XZUwwR5md9/EZ9FwTuRlo\u002BrAkJKVS4ofJAjkQgm/eQmFOcK6B\u002Bapx7FJWNBFFsy9TaaXFgkqIRELEJwVgjXVBO3I6xUiqpwEF8jgS/O52Q47J/ViKGMAWhewr/ZJk0V8dFTifSu2mqMKkv9BSdUeUTaO2Vs/ctuKyJD\u002BcvqluoODZNef1lzihYxSWJZjvxBBkl6/u7rpPAJ4WLWauCioZNd8veX\u002Bfnraq1TP7RpFJgiAvN\u002Bc5v/JmSfVJn6mSMxjqfO\u002B5wErQhPj5A9lGk7nMzGsGvxJDH7XsyS9KVj8M2OIa0Qnhj8HVHnLuQHwY3/Z7fJN\u002Bi3QGp105jTcbRm757Gs3K8KwK3xpMWCfVN850\u002Bl5Dxlrzk1uFCmsp8LKudgENFQRIfPzixFW1VoTp1K\u002BP/kN4ndVTh3diReYw4N5nreIWyBK6PI1RUPIFPkzGmzXLqgJvNdg7qZ2c1icWoeN3TbiSwxycxcHGJ0zTXkk6m6qwdUbb\u002BGgJ6x51LVZmOq8OnfCEM9gZLtRAqQ6bWFtUUjp8Zjysq0VAmOf\u002BJ5hrb\u002Byd1LBYpmfSl0Zii19ZfoKzENsb6dRiUeKrQ5rwGwdL1Tkh/YObC7vCmc7mSh/15xpVSxbNT3YIK3LdrWLM4nxPFqYmN3EPGAUfSVAVjBfStVyAmt/wjpXDGcIQzV5JBbdCpzNpz7\u002BpViMBrfYl8q9q\u002BvgGTEesTpgQYx2u7kqm1kOYwtTkaOWs50Ss7uCfrScitdJWQrl/plirSWyR\u002BmfoWteyjT/KdoISaWTzD1\u002BngLX2jDh4QIOaKSyMSR95CuzsxJQI3R/nWD9AQ\u002BlEjKb488imq24vcBpEGGQTTj1yqV54FkrLnqOmDyQJKAyqRax1g0VWwm\u002BOvUSJxLS71Bnx3Zqa3GZcPVUVAJxKJkgNmdK3ncroG9bu\u002BWj2Qdnu6isaB1piH2k2KVXwMbHTRIcMfCrh9EZfCbHDq\u002BMNZet7JhZhIC7tm4ppgXRk59oQ==", + "RequestBody": "UHFYsPyS7h8GxbD1wTpllnWxajC7t0La93Gnh1cZo\u002BWLQo4e\u002Bx6uCd3K7vzJ4H9b1m4US3JmQZgufrmK6mbH7SHLan6sR5pWA2FS8chGEBfyTLHpBVdzJQH1731lJB52AgHa/nUBro7TvUgQE0/Q6G2hl5613efKV0V8tlcd8N9C3O7GaxGi8Z0iFkcPYhGyJQcQxIyAwSQZEKcwhPc2tsxozTdgCX1b/6YAk8eguvUzypFQDCxTwhvKrFtqcmyl6196p5TaURuKtMTlfy1deVWx/Lpm5qmfFAsbllwh8Y05W6doJRNgWHh2xlhobUPtbDMFuHWyPwW125KJvru\u002BaMI3rCSG9FRBUaNB8CBQN6fILikpHDgXhxuiskqB15m8t12VMMEeZnffxGfRcE7kZaPqwJCSlUuKHyQI5EIJv3kJhTnCugfmqcexSVjQRRbMvU2mlxYJKiERCxCcFYI11QTtyOsVIqqcBBfI4EvzudkOOyf1YihjAFoXsK/2SZNFfHRU4n0rtpqjCpL/QUnVHlE2jtlbP3LbisiQ/nL6pbqDg2TXn9Zc4oWMUliWY78QQZJev7u66TwCeFi1mrgoqGTXfL3l/n562qtUz\u002B0aRSYIgLzfnOb/yZkn1SZ\u002BpkjMY6nzvucBK0IT4\u002BQPZRpO5zMxrBr8SQx\u002B17MkvSlY/DNjiGtEJ4Y/B1R5y7kB8GN/2e3yTfot0BqddOY03G0Zu\u002BexrNyvCsCt8aTFgn1TfOdPpeQ8Za85NbhQprKfCyrnYBDRUESHz84sRVtVaE6dSvj/5DeJ3VU4d3YkXmMODeZ63iFsgSujyNUVDyBT5Mxps1y6oCbzXYO6mdnNYnFqHjd024ksMcnMXBxidM015JOpuqsHVG2/hoCesedS1WZjqvDp3whDPYGS7UQKkOm1hbVFI6fGY8rKtFQJjn/ieYa2/sndSwWKZn0pdGYotfWX6CsxDbG\u002BnUYlHiq0Oa8BsHS9U5If2Dmwu7wpnO5kof9ecaVUsWzU92CCty3a1izOJ8TxamJjdxDxgFH0lQFYwX0rVcgJrf8I6VwxnCEM1eSQW3Qqczac\u002B/qVYjAa32JfKvavr4BkxHrE6YEGMdru5KptZDmMLU5GjlrOdErO7gn60nIrXSVkK5f6ZYq0lskfpn6FrXso0/ynaCEmlk8w9fp4C19ow4eECDmiksjEkfeQrs7MSUCN0f51g/QEPpRIym\u002BPPIpqtuL3AaRBhkE049cqleeBZKy56jpg8kCSgMqkWsdYNFVsJvjr1EicS0u9QZ8d2amtxmXD1VFQCcSiZIDZnSt53K6BvW7vlo9kHZ7uorGgdaYh9pNilV8DGx00SHDHwq4fRGXwmxw6vjDWXg==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "8Vr6\u002BmpunXeVwlAeBhwteQ==", - "Date": "Thu, 08 Jul 2021 16:23:39 GMT", - "ETag": "\u00220x8D9422CBEB615E2\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:39 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "51a8368b-b6ba-4621-82ed-0907872d1ea1", - "x-ms-content-crc64": "T/viOeg9MOU=", - "x-ms-request-id": "4a2eefde-101e-0004-1715-7405ac000000", + "Content-Length": "0", + "Content-MD5": "CzZX5EssnK4ayO30OcSVYg==", + "Date": "Wed, 11 Aug 2021 19:42:26 GMT", + "ETag": "\u00220x8D95D0025D44743\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:26 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "1e4dbb50-5a9d-cff0-5e4c-afd98ae63862", + "x-ms-content-crc64": "Erw2i6w9elI=", + "x-ms-request-id": "b1227778-d01e-004a-06e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:39.5234274Z" + "x-ms-version-id": "2021-08-11T19:42:26.5687875Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f5e9cb9b-7ac1-40d5-953c-0489fddc96fc/test-blob-b0587150-92fc-1fee-06c5-b0f5c13a6596?comp=metadata", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-f5e9cb9b-7ac1-40d5-953c-0489fddc96fc?comp=metadata", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-6aaf5273630a6d4f8a77f29b945220fb-267a4b02eb277843-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "108b356d-2ca6-9ae7-9906-9caf51e84830", - "x-ms-date": "Thu, 08 Jul 2021 16:23:39 GMT", + "traceparent": "00-6867baae153d964396c1ad60def191a2-4d273325f9527e46-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "03e97a1d-b8e3-5cc1-c292-08c652144fd1", + "x-ms-date": "Wed, 11 Aug 2021 19:42:26 GMT", "x-ms-meta-Capital": "letter", "x-ms-meta-foo": "bar", "x-ms-meta-meta": "data", @@ -63,35 +54,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:39 GMT", - "ETag": "\u00220x8D9422CBEC1ACFC\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:39 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "108b356d-2ca6-9ae7-9906-9caf51e84830", - "x-ms-request-id": "4a2eefdf-101e-0004-1815-7405ac000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:26 GMT", + "ETag": "\u00220x8D95D0025DF93F7\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:26 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "03e97a1d-b8e3-5cc1-c292-08c652144fd1", + "x-ms-request-id": "b122781e-d01e-004a-14e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:39.6003852Z" + "x-ms-version-id": "2021-08-11T19:42:26.6438407Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f5e9cb9b-7ac1-40d5-953c-0489fddc96fc/test-blob-b0587150-92fc-1fee-06c5-b0f5c13a6596?versionid=2021-07-08T16%3A23%3A39.6003852Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A39Z\u0026sr=b\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-f5e9cb9b-7ac1-40d5-953c-0489fddc96fc?versionid=2021-08-11T19%3A42%3A26.6438407Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A26Z\u0026sr=b\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-215f6cf42134b2479a385b0e7304c7cc-ebed878bfd24964c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "5199389e-0ea1-f1fb-924f-69dc1c110bd9", + "traceparent": "00-6af1e0b5527fb34ab93b67f431be6363-6bb87cc51f148c4a-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "10bc0d2d-35fd-d27f-754b-8f27ae5af46d", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:39 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:26 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -99,30 +84,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:39 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "5199389e-0ea1-f1fb-924f-69dc1c110bd9", + "Date": "Wed, 11 Aug 2021 19:42:26 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "10bc0d2d-35fd-d27f-754b-8f27ae5af46d", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:39 GMT", - "x-ms-request-id": "4a2eefe2-101e-0004-1a15-7405ac000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:26 GMT", + "x-ms-request-id": "b122786b-d01e-004a-51e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f5e9cb9b-7ac1-40d5-953c-0489fddc96fc/test-blob-b0587150-92fc-1fee-06c5-b0f5c13a6596?versionid=2021-07-08T16%3A23%3A39.6003852Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A39Z\u0026sr=b\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-f5e9cb9b-7ac1-40d5-953c-0489fddc96fc?versionid=2021-08-11T19%3A42%3A26.6438407Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A26Z\u0026sr=b\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-e24ff92805cebc4aba97b6ca81e1ee3c-f95fba12ae48c94a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "18102e12-f64f-1f8f-12ca-7dadcca2b663", + "traceparent": "00-134449cd15765b41b3aaf2ca83e1912b-fe8c46da34ac114a-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4498d74a-3f58-38d4-b5b9-9a5b9dc0eb3f", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -131,119 +110,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:39 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "18102e12-f64f-1f8f-12ca-7dadcca2b663", + "Date": "Wed, 11 Aug 2021 19:42:26 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "4498d74a-3f58-38d4-b5b9-9a5b9dc0eb3f", "x-ms-legal-hold": "false", - "x-ms-request-id": "4a2eefe4-101e-0004-1c15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f5e9cb9b-7ac1-40d5-953c-0489fddc96fc?restype=container\u0026comp=list\u0026include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-1ee6256880708646b8ca7cb6c90452f8-3c573d630c92ba40-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "edca2963-f201-538a-4779-328dc1276b13", - "x-ms-date": "Thu, 08 Jul 2021 16:23:39 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "x-ms-request-id,x-ms-client-request-id,Server,x-ms-version,Content-Type,Content-Length,Date,Transfer-Encoding", - "Content-Type": "application/xml", - "Date": "Thu, 08 Jul 2021 16:23:39 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "edca2963-f201-538a-4779-328dc1276b13", - "x-ms-request-id": "4a2eefe7-101e-0004-1e15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://seanoauthstage.blob.core.windows.net/\u0022 ContainerName=\u0022test-container-f5e9cb9b-7ac1-40d5-953c-0489fddc96fc\u0022\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-b0587150-92fc-1fee-06c5-b0f5c13a6596\u003C/Name\u003E\u003CVersionId\u003E2021-07-08T16:23:39.6003852Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 08 Jul 2021 16:23:39 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 08 Jul 2021 16:23:39 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D9422CBEC1ACFC\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003E8Vr6\u002BmpunXeVwlAeBhwteQ==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003CImmutabilityPolicyUntilDate\u003EThu, 08 Jul 2021 16:28:39 GMT\u003C/ImmutabilityPolicyUntilDate\u003E\u003CImmutabilityPolicyMode\u003Eunlocked\u003C/ImmutabilityPolicyMode\u003E\u003CLegalHold\u003Efalse\u003C/LegalHold\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f5e9cb9b-7ac1-40d5-953c-0489fddc96fc/test-blob-b0587150-92fc-1fee-06c5-b0f5c13a6596?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-9ceda5c9668edc47a95125c01d73263f-f029d2e177148743-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "a249ab77-c9d8-4c62-2b89-8f487d879d3c", - "x-ms-date": "Thu, 08 Jul 2021 16:23:40 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:39 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "a249ab77-c9d8-4c62-2b89-8f487d879d3c", - "x-ms-request-id": "4a2eefe8-101e-0004-1f15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-f5e9cb9b-7ac1-40d5-953c-0489fddc96fc/test-blob-b0587150-92fc-1fee-06c5-b0f5c13a6596", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-22a1cf125b1cd24aad386a079e2ab31e-c639ed759bd8d740-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "1616bfcd-c9dd-393a-d4ce-bc5a8435e591", - "x-ms-date": "Thu, 08 Jul 2021 16:23:40 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:39 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "1616bfcd-c9dd-393a-d4ce-bc5a8435e591", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2eefed-101e-0004-2415-7405ac000000", + "x-ms-request-id": "b12278b3-d01e-004a-10e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-07-08T11:23:39.7916187-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:26.7085291-07:00", "RandomSeed": "1590248004", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\nXClient\nba45b233-e2ef-4169-8808-49eb0d8eba0d" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(SetImmutabilityPolicy)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(SetImmutabilityPolicy)Async.json index 274be02a2a5c3..49fe77e06be0c 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(SetImmutabilityPolicy)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_BlobVersionSas(SetImmutabilityPolicy)Async.json @@ -1,58 +1,49 @@ { "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-c452a1ff-c0bf-fb8d-8f4d-a1e12e828a55/test-blob-9df90c6c-7228-a334-7056-fa3dcd63630c", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-c452a1ff-c0bf-fb8d-8f4d-a1e12e828a55", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-2448d0f723e55542901637d610434478-13ffadadb6abf04d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-ab6638a706779b4295abb70958ed39f6-ab17d868b8b4b04a-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "fc067973-cf8f-1531-b138-02ee8e815d53", - "x-ms-date": "Thu, 08 Jul 2021 16:24:00 GMT", + "x-ms-client-request-id": "d4ba2014-48ff-af75-b52b-b9ca0785813c", + "x-ms-date": "Wed, 11 Aug 2021 19:42:40 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "9z61AQKm4caOlo1DUGq3Iu1fLvc7KD\u002BMba9UacZQLSvqlervzYlTxSozD5Hk8FIFnthPbTVr0M7/KJNTUnf/PmhiWbuAyFVkDGjNCBmtp3xcTsvuAcD2fsQb8KT2AHOyM9ApgpeXhdaC6mDMnsi1UYEW9gOsET2na9v2Zdixbgz1GtRIgyTlxcn0axZgKeD8ZZ8i3wlvBSKTghe8oB/\u002B0XxU14Pzbc1cMDA6t6YmR0H7\u002Bf85jo4ChRWytAENKSSp9pmZC1FcCfjRxa/YNU18bDvVwKcfxULuUlJuQLjMTwYMkMAMjTvvnvAHZ8jeKVDHNkfFN2h9ijFWq7n/7sk/BXWozKSMb9//5SK3GF16DykBpwlwBhidjwaPteGC768mx2FTNlysOsdnxlFGxXLU3JuQ/ke/z/9dCj2e/br\u002BffVykFD7J9nMVWxCCEDGV8mUuthF8vFoZ/hi9SseDTwMaUhb0zUh2LXCw6nafca\u002BlrN0CkLhuIoECSlYmTGtrUcwNZ73a4STcuIigy5Ijuoxo154qgP5KrG\u002BV8kMyT\u002BEFBVhqUcnxysu4JhgvjRbvHs\u002BJvXSNQNENgrtORO6h6iinm8Y5\u002BSiCtwzScprmWx8YptOzaNKsd4SHHI8Oo4XdFjvvR/FQ9SWnBwZn\u002Bw42Z2ecNd4bLoFWO2QBspxZtBNG9Rxe9tMth/GtzGGMBLy2ULUncm2nwie6WQyNTwKJDVMy4MXx13CUrm4srSJfifbnSyHnMgHlnzM05J2GYHivJL7OmWO2xLkEksP/u1TFGo9V5cQgodtRTQHSvPLTDg41vUhjUTCTMIZo4p895iOeb4oOcLq0TkLjvUxhpAeGcYT1ij3MYcmewrU9t/98E2ceNE0ohJ2TgS8Fv9OkMUy\u002B4nEaSFvl0c3Ar63FdpaDZ6olQ6/6XeznYgkOxqH2OpFovtVOYYsLOCJ/aBUvjgpYQlgpfu3cxESEMyYS1wssCnUcnPfBNQXfGgtNezWX95P\u002BtkRJjLujS7qQym6k\u002BGEXE12gEvFSlw0SSmTiT0kO7DtSVCDGon35eRE9MGrXeiGqdifX9\u002BSia993d0JWwTxxQd4zEqQAULDf5pngVWbietADOBlhdzQWr\u002BgBj2r7ongUi\u002B5MpGe9qiW2\u002BBEKwda4VPyyE8kiz8rp3GL8PoEGJEQhi4m4VZaohY3z6r8iy\u002B3RiTpuSU6vMfvjoofEwWtkcJPNKTYMwD8lyY57LyVLxtC06nWG19r1cpnNlLLOo4QiT7nrFeK3xIk7CH\u002BAc8LWV9v3UBc1nVj417Zcf2tMF2XKWJ\u002BroLEt/OXsi49bdT7XNzzXF1Os7LIg8n5sG4VdrvEZthsjavdqyVMxSRGJnaJ3g==", + "RequestBody": "bAz5nShyNKNwVvo9zWNjDPc\u002BtQECpuHGjpaNQ1BqtyLtXy73Oyg/jG2vVGnGUC0r6pXq782JU8UqMw\u002BR5PBSBZ7YT201a9DO/yiTU1J3/z5oYlm7gMhVZAxozQgZrad8XE7L7gHA9n7EG/Ck9gBzsjPQKYKXl4XWgupgzJ7ItVGBFvYDrBE9p2vb9mXYsW4M9RrUSIMk5cXJ9GsWYCng/GWfIt8JbwUik4IXvKAf/tF8VNeD823NXDAwOremJkdB\u002B/n/OY6OAoUVsrQBDSkkqfaZmQtRXAn40cWv2DVNfGw71cCnH8VC7lJSbkC4zE8GDJDADI07757wB2fI3ilQxzZHxTdofYoxVqu5/\u002B7JPwV1qMykjG/f/\u002BUitxhdeg8pAacJcAYYnY8Gj7Xhgu\u002BvJsdhUzZcrDrHZ8ZRRsVy1NybkP5Hv8//XQo9nv26/n31cpBQ\u002ByfZzFVsQghAxlfJlLrYRfLxaGf4YvUrHg08DGlIW9M1Idi1wsOp2n3GvpazdApC4biKBAkpWJkxra1HMDWe92uEk3LiIoMuSI7qMaNeeKoD\u002BSqxvlfJDMk/hBQVYalHJ8crLuCYYL40W7x7Pib10jUDRDYK7TkTuoeoop5vGOfkogrcM0nKa5lsfGKbTs2jSrHeEhxyPDqOF3RY770fxUPUlpwcGZ/sONmdnnDXeGy6BVjtkAbKcWbQTRvUcXvbTLYfxrcxhjAS8tlC1J3Jtp8InulkMjU8CiQ1TMuDF8ddwlK5uLK0iX4n250sh5zIB5Z8zNOSdhmB4ryS\u002BzpljtsS5BJLD/7tUxRqPVeXEIKHbUU0B0rzy0w4ONb1IY1EwkzCGaOKfPeYjnm\u002BKDnC6tE5C471MYaQHhnGE9Yo9zGHJnsK1Pbf/fBNnHjRNKISdk4EvBb/TpDFMvuJxGkhb5dHNwK\u002BtxXaWg2eqJUOv\u002Bl3s52IJDsah9jqRaL7VTmGLCzgif2gVL44KWEJYKX7t3MREhDMmEtcLLAp1HJz3wTUF3xoLTXs1l/eT/rZESYy7o0u6kMpupPhhFxNdoBLxUpcNEkpk4k9JDuw7UlQgxqJ9\u002BXkRPTBq13ohqnYn1/fkomvfd3dCVsE8cUHeMxKkAFCw3\u002BaZ4FVm4nrQAzgZYXc0Fq/oAY9q\u002B6J4FIvuTKRnvaoltvgRCsHWuFT8shPJIs/K6dxi/D6BBiREIYuJuFWWqIWN8\u002Bq/Isvt0Yk6bklOrzH746KHxMFrZHCTzSk2DMA/JcmOey8lS8bQtOp1htfa9XKZzZSyzqOEIk\u002B56xXit8SJOwh/gHPC1lfb91AXNZ1Y\u002BNe2XH9rTBdlylifq6CxLfzl7IuPW3U\u002B1zc81xdTrOyyIPJ\u002BbBuFXa7xA==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "/\u002BO/E9CFweI92kPktp9/Yg==", - "Date": "Thu, 08 Jul 2021 16:24:00 GMT", - "ETag": "\u00220x8D9422CCB397ECC\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:24:00 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "fc067973-cf8f-1531-b138-02ee8e815d53", - "x-ms-content-crc64": "vNWf5VrYJzc=", - "x-ms-request-id": "4a2ef282-101e-0004-7e15-7405ac000000", + "Content-Length": "0", + "Content-MD5": "WOCtYtAXG6btcm/X3kNtWQ==", + "Date": "Wed, 11 Aug 2021 19:42:39 GMT", + "ETag": "\u00220x8D95D002DFF2615\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:40 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "d4ba2014-48ff-af75-b52b-b9ca0785813c", + "x-ms-content-crc64": "U1Z9vmtcBss=", + "x-ms-request-id": "b122aa92-d01e-004a-7ce9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:24:00.5172940Z" + "x-ms-version-id": "2021-08-11T19:42:40.2715157Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-c452a1ff-c0bf-fb8d-8f4d-a1e12e828a55/test-blob-9df90c6c-7228-a334-7056-fa3dcd63630c?comp=metadata", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-c452a1ff-c0bf-fb8d-8f4d-a1e12e828a55?comp=metadata", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-87746f783c94f748af90414d930fff2a-07d261c28bd36e4d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "acd3e843-8d6f-454f-eea4-22c746862134", - "x-ms-date": "Thu, 08 Jul 2021 16:24:00 GMT", + "traceparent": "00-6ee042f99753ae49b1aeeddd76041cdd-c5c8845d50bb7e43-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f559d26f-e7bb-1dc4-62bc-d78024e01ec6", + "x-ms-date": "Wed, 11 Aug 2021 19:42:40 GMT", "x-ms-meta-Capital": "letter", "x-ms-meta-foo": "bar", "x-ms-meta-meta": "data", @@ -63,35 +54,29 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:24:00 GMT", - "ETag": "\u00220x8D9422CCB44C7C1\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:24:00 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "acd3e843-8d6f-454f-eea4-22c746862134", - "x-ms-request-id": "4a2ef286-101e-0004-0115-7405ac000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:39 GMT", + "ETag": "\u00220x8D95D002E0BD28D\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:40 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "f559d26f-e7bb-1dc4-62bc-d78024e01ec6", + "x-ms-request-id": "b122ab33-d01e-004a-01e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:24:00.5922513Z" + "x-ms-version-id": "2021-08-11T19:42:40.3565755Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-c452a1ff-c0bf-fb8d-8f4d-a1e12e828a55/test-blob-9df90c6c-7228-a334-7056-fa3dcd63630c?versionid=2021-07-08T16%3A24%3A00.5922513Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A24%3A00Z\u0026sr=b\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-c452a1ff-c0bf-fb8d-8f4d-a1e12e828a55?versionid=2021-08-11T19%3A42%3A40.3565755Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A40Z\u0026sr=b\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-0289ace1c3e91a4f95dbdefa1aab5388-3fcad5e17c5a194c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "a6ab3c1a-b0ad-e2e3-8313-0617c4fdd7dc", + "traceparent": "00-55e1137a586b5b4497544389492276ee-c9ed84cf7e59b345-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "345b66cd-8c2c-8b80-b4e9-99d2f8b1f1d1", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:29:00 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:40 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -99,30 +84,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:24:00 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "a6ab3c1a-b0ad-e2e3-8313-0617c4fdd7dc", + "Date": "Wed, 11 Aug 2021 19:42:39 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "345b66cd-8c2c-8b80-b4e9-99d2f8b1f1d1", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:29:00 GMT", - "x-ms-request-id": "4a2ef288-101e-0004-0215-7405ac000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:40 GMT", + "x-ms-request-id": "b122ab9b-d01e-004a-4be9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-c452a1ff-c0bf-fb8d-8f4d-a1e12e828a55/test-blob-9df90c6c-7228-a334-7056-fa3dcd63630c?versionid=2021-07-08T16%3A24%3A00.5922513Z\u0026sv=2020-10-02\u0026se=2021-07-09T16%3A24%3A00Z\u0026sr=b\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-c452a1ff-c0bf-fb8d-8f4d-a1e12e828a55?versionid=2021-08-11T19%3A42%3A40.3565755Z\u0026sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A40Z\u0026sr=b\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-b93418987da40646b858af8f5629f427-ece1ea26240a634f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "09ac51b3-7adb-1d86-8278-b1188569c7b6", + "traceparent": "00-6f8963b352094b4bb0798673dc99cbda-9726afa077a0b247-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "beb2a29b-e985-b799-6747-f886f37c4d3d", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -131,118 +110,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:24:00 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "09ac51b3-7adb-1d86-8278-b1188569c7b6", + "Date": "Wed, 11 Aug 2021 19:42:39 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "beb2a29b-e985-b799-6747-f886f37c4d3d", "x-ms-legal-hold": "false", - "x-ms-request-id": "4a2ef28b-101e-0004-0415-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-c452a1ff-c0bf-fb8d-8f4d-a1e12e828a55?restype=container\u0026comp=list\u0026include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "7263c9c6-cd50-2000-1b95-3b0c388131fe", - "x-ms-date": "Thu, 08 Jul 2021 16:24:00 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "x-ms-request-id,x-ms-client-request-id,Server,x-ms-version,Content-Type,Content-Length,Date,Transfer-Encoding", - "Content-Type": "application/xml", - "Date": "Thu, 08 Jul 2021 16:24:00 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "7263c9c6-cd50-2000-1b95-3b0c388131fe", - "x-ms-request-id": "4a2ef28d-101e-0004-0615-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://seanoauthstage.blob.core.windows.net/\u0022 ContainerName=\u0022test-container-c452a1ff-c0bf-fb8d-8f4d-a1e12e828a55\u0022\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-9df90c6c-7228-a334-7056-fa3dcd63630c\u003C/Name\u003E\u003CVersionId\u003E2021-07-08T16:24:00.5922513Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 08 Jul 2021 16:24:00 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 08 Jul 2021 16:24:00 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D9422CCB44C7C1\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003E/\u002BO/E9CFweI92kPktp9/Yg==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003CImmutabilityPolicyUntilDate\u003EThu, 08 Jul 2021 16:29:00 GMT\u003C/ImmutabilityPolicyUntilDate\u003E\u003CImmutabilityPolicyMode\u003Eunlocked\u003C/ImmutabilityPolicyMode\u003E\u003CLegalHold\u003Efalse\u003C/LegalHold\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-c452a1ff-c0bf-fb8d-8f4d-a1e12e828a55/test-blob-9df90c6c-7228-a334-7056-fa3dcd63630c?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-61b1e752c242ed48a23dc351c83c39db-85d20f50e12c3047-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "bb51aa89-5405-4366-bd16-3969f73ff821", - "x-ms-date": "Thu, 08 Jul 2021 16:24:01 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:24:00 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "bb51aa89-5405-4366-bd16-3969f73ff821", - "x-ms-request-id": "4a2ef292-101e-0004-0915-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-c452a1ff-c0bf-fb8d-8f4d-a1e12e828a55/test-blob-9df90c6c-7228-a334-7056-fa3dcd63630c", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-d823c52f8fff11418db8951fb8a21c4d-82689d311c7b7440-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8d831630-762f-2bf9-db31-782ebed488c6", - "x-ms-date": "Thu, 08 Jul 2021 16:24:01 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:24:00 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8d831630-762f-2bf9-db31-782ebed488c6", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2ef297-101e-0004-0d15-7405ac000000", + "x-ms-request-id": "b122abee-d01e-004a-11e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-07-08T11:24:00.7835572-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:40.4225035-07:00", "RandomSeed": "926714243", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\nXClient\nba45b233-e2ef-4169-8808-49eb0d8eba0d" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(All).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(All).json index 89f61fb0ea06f..852a4470b8b61 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(All).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(All).json @@ -1,58 +1,49 @@ { "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-02574ec7-0d99-1bc6-9553-abda6021f372/test-blob-34e35ab6-f13f-f871-489c-9bc355d173fe", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-02574ec7-0d99-1bc6-9553-abda6021f372", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-968d1eaa1001684e80b3138237e16771-7d9a4953ce30c549-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-dba8c5874829a445a906767139c413f9-a81678bab9b4d448-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "44f80196-ed06-6ee9-286a-9f2ee23723a9", - "x-ms-date": "Thu, 08 Jul 2021 16:23:42 GMT", + "x-ms-client-request-id": "b67a916c-f738-5007-fc97-72e1ba4950d2", + "x-ms-date": "Wed, 11 Aug 2021 19:42:26 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "WzVrdGFPcjzPG9wYYafrnNcVIKnSd3HW3V65/XICxsTgrX4qtX8RZ\u002BimZCQUWZehsP7rQLDJK\u002BTDlZcClnXKzVUXN7QpwOZYA7nBLBNNwYPHF0xzFoUTF4GaZiDnD9By25fP/SHjeO8Xkzz3B//RdtMTO34oV7bPAyAyjlrGcPToTlB7fsRi459cW4NJHA\u002BBye9M1NRSSoTg//kAsOmVUSJIDrmvVfgOsVfezPsyhecRscVqeZwglgTLm37LYTK2xwpgAQ5V0nT3PSJ8c32JrnoS7/8jKteGKHi047p6Q1AkJwXx0YTZu99Rcjx5oyKGQe0EuXEzkpwz2tiVoe65ffrRV0t4mNz1OTMf0rebDIRVLaHNdYre8ZVpvferQxrxl/VCp0zWDqkQDoA\u002BE7/kmM1UQHNM7Adv82a2D9rkSfUZLjvCWGQ4fh/4vGcKoN3VhCUpVwKnpKrt0rTlIP/PLMWKJeSEIT9oHMFTUzCgZVKI4Yq0u/LzcYmR1IawUl4gKZChf3v4UGLmwDtAU1F5TGxhXD90GnDTlrNa8024uMljMyqg/\u002BXXkJAnzvq3sh44F4cZTvUeqw4fzujInV0VLQhx3R8m2U2HisyuTUx2HOSUIdvFnmnTRIgbgTH8D/IyEqDyRdX/Ej46ksQpb13CqLEEM3uBUI\u002BenZiWC1ccinrZfDusg9YPlQ\u002BdigylqtQqWNh/\u002BNt2sMEQVKg8aAfmHQhJT/MiFiTa9J5s5MWC\u002BPPDa7J\u002BnJKfY8t5my8u0iwIt20EXFrhCEK0pAM9Csz7jly0ef1UZ4B2quwnqHv1rCFyYy1YfpyY4WNvyviOYVj/fQ3TeVkvs0/sjrFtuV/Hvvjhy6afow\u002B/G5eZ5ZyI50iTKCpuIjLIQrDda/DqKygDqAz/rJayX9r9E13Blc6yY6Zo2ZA0WZzGGIj1wTce1PBvlTyQiTqy4chQcA/UB63iKwhKglGXz09wOJMOvJ6i3z5tUv\u002BSIdprtvjI4\u002BiN8hHbE5Yv1FKf18bsIFCnpCUqrZDQZ7WtUAku3stZz\u002Btm4kaCMqgHcwvrzno5pQGJxBLSnTZYvIpcLcONAfWGRQjahT0JJHF8IjqF5Jg6dKoHpBq5hjG1Dia7JQXkenIWZIhxXh/DgJ\u002BgVXr70tfyIbkZhV3bzL7WJXcXTf9smKjHb38QyBWKQyN6GTC3uTtOyQNLy/QVOpjJmziorDOgNL3SNGNX4lmjjkE5YLOOH2s7yIP7IM2zsjTnRi3d4Zfw2uVz5YXY9\u002BeqqDyz29rkO3zNbeSvpBPwHoEvb5srxq2qSYbOGjnmY9CcUXiQANZaAwqxD3SyQTXSg8YEqIdLfuGPCJJTFiFC5woTE1OaXx2q1A==", + "RequestBody": "tlrjND/xcfhInJvDVdFz/ls1a3RhT3I8zxvcGGGn65zXFSCp0ndx1t1euf1yAsbE4K1\u002BKrV/EWfopmQkFFmXobD\u002B60CwySvkw5WXApZ1ys1VFze0KcDmWAO5wSwTTcGDxxdMcxaFExeBmmYg5w/QctuXz/0h43jvF5M89wf/0XbTEzt\u002BKFe2zwMgMo5axnD06E5Qe37EYuOfXFuDSRwPgcnvTNTUUkqE4P/5ALDplVEiSA65r1X4DrFX3sz7MoXnEbHFanmcIJYEy5t\u002By2EytscKYAEOVdJ09z0ifHN9ia56Eu//IyrXhih4tOO6ekNQJCcF8dGE2bvfUXI8eaMihkHtBLlxM5KcM9rYlaHuuX360VdLeJjc9TkzH9K3mwyEVS2hzXWK3vGVab33q0Ma8Zf1QqdM1g6pEA6APhO/5JjNVEBzTOwHb/Nmtg/a5En1GS47wlhkOH4f\u002BLxnCqDd1YQlKVcCp6Sq7dK05SD/zyzFiiXkhCE/aBzBU1MwoGVSiOGKtLvy83GJkdSGsFJeICmQoX97\u002BFBi5sA7QFNReUxsYVw/dBpw05azWvNNuLjJYzMqoP/l15CQJ876t7IeOBeHGU71HqsOH87oyJ1dFS0Icd0fJtlNh4rMrk1MdhzklCHbxZ5p00SIG4Ex/A/yMhKg8kXV/xI\u002BOpLEKW9dwqixBDN7gVCPnp2YlgtXHIp62Xw7rIPWD5UPnYoMparUKljYf/jbdrDBEFSoPGgH5h0ISU/zIhYk2vSebOTFgvjzw2uyfpySn2PLeZsvLtIsCLdtBFxa4QhCtKQDPQrM\u002B45ctHn9VGeAdqrsJ6h79awhcmMtWH6cmOFjb8r4jmFY/30N03lZL7NP7I6xbblfx7744cumn6MPvxuXmeWciOdIkygqbiIyyEKw3Wvw6isoA6gM/6yWsl/a/RNdwZXOsmOmaNmQNFmcxhiI9cE3HtTwb5U8kIk6suHIUHAP1Aet4isISoJRl89PcDiTDryeot8\u002BbVL/kiHaa7b4yOPojfIR2xOWL9RSn9fG7CBQp6QlKq2Q0Ge1rVAJLt7LWc/rZuJGgjKoB3ML6856OaUBicQS0p02WLyKXC3DjQH1hkUI2oU9CSRxfCI6heSYOnSqB6QauYYxtQ4muyUF5HpyFmSIcV4fw4CfoFV6\u002B9LX8iG5GYVd28y\u002B1iV3F03/bJiox29/EMgVikMjehkwt7k7TskDS8v0FTqYyZs4qKwzoDS90jRjV\u002BJZo45BOWCzjh9rO8iD\u002ByDNs7I050Yt3eGX8Nrlc\u002BWF2Pfnqqg8s9va5Dt8zW3kr6QT8B6BL2\u002BbK8atqkmGzho55mPQnFF4kADWWgMKsQ90skE10oPGBKiHS37hjw==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "Jh5PbKV/YMuhE02uCDCmDw==", - "Date": "Thu, 08 Jul 2021 16:23:42 GMT", - "ETag": "\u00220x8D9422CC0B236F5\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:42 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "44f80196-ed06-6ee9-286a-9f2ee23723a9", - "x-ms-content-crc64": "zZqT1MVf6pY=", - "x-ms-request-id": "4a2ef011-101e-0004-3d15-7405ac000000", + "Content-Length": "0", + "Content-MD5": "H9KN72flknNhajUMQoFHrA==", + "Date": "Wed, 11 Aug 2021 19:42:26 GMT", + "ETag": "\u00220x8D95D00260DFF6A\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:26 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "b67a916c-f738-5007-fc97-72e1ba4950d2", + "x-ms-content-crc64": "cLuCKNxzsvo=", + "x-ms-request-id": "b122790d-d01e-004a-59e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:42.8545022Z" + "x-ms-version-id": "2021-08-11T19:42:26.9470570Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-02574ec7-0d99-1bc6-9553-abda6021f372/test-blob-34e35ab6-f13f-f871-489c-9bc355d173fe?sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A43Z\u0026sr=c\u0026sp=racwdxlti\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-02574ec7-0d99-1bc6-9553-abda6021f372?sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A27Z\u0026sr=c\u0026sp=racwdxlti\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-08ce5890d8573c4d9aa01b2ccbdcf313-8c8d5161f29f5e41-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "5e0381c2-6625-7ece-a70c-8dce58d96ec4", + "traceparent": "00-0a282bfa757b6341b42dfb8028e84858-ffd784eeaa38e142-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ba1bd359-2b04-1056-8a03-1a89cf054fca", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:43 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:27 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -60,30 +51,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:42 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "5e0381c2-6625-7ece-a70c-8dce58d96ec4", + "Date": "Wed, 11 Aug 2021 19:42:26 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "ba1bd359-2b04-1056-8a03-1a89cf054fca", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:43 GMT", - "x-ms-request-id": "4a2ef014-101e-0004-4015-7405ac000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:27 GMT", + "x-ms-request-id": "b12279bd-d01e-004a-6ce9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-02574ec7-0d99-1bc6-9553-abda6021f372/test-blob-34e35ab6-f13f-f871-489c-9bc355d173fe?sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A43Z\u0026sr=c\u0026sp=racwdxlti\u0026sig=Sanitized\u0026comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-02574ec7-0d99-1bc6-9553-abda6021f372?sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A27Z\u0026sr=c\u0026sp=racwdxlti\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-e40c8bcece8d394fb6c3dc3b52eec9ec-be127a1be2a49842-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "606bd41a-c533-f383-059c-12f89d87b7b0", + "traceparent": "00-c7b52024c0bce14ca7429c762b17c458-60c675361daff245-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "e688c973-962d-6bcd-aae7-b903d35f9e23", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -92,119 +77,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:42 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "606bd41a-c533-f383-059c-12f89d87b7b0", + "Date": "Wed, 11 Aug 2021 19:42:26 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "e688c973-962d-6bcd-aae7-b903d35f9e23", "x-ms-legal-hold": "false", - "x-ms-request-id": "4a2ef016-101e-0004-4215-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-02574ec7-0d99-1bc6-9553-abda6021f372?restype=container\u0026comp=list\u0026include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-1e0d086ab695264e82d429e9976dc2f2-73d8c9b4fb404f45-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "84b4696d-0d6d-ae91-4695-e19184d5cd23", - "x-ms-date": "Thu, 08 Jul 2021 16:23:43 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "x-ms-request-id,x-ms-client-request-id,Server,x-ms-version,Content-Type,Content-Length,Date,Transfer-Encoding", - "Content-Type": "application/xml", - "Date": "Thu, 08 Jul 2021 16:23:42 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "84b4696d-0d6d-ae91-4695-e19184d5cd23", - "x-ms-request-id": "4a2ef017-101e-0004-4315-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://seanoauthstage.blob.core.windows.net/\u0022 ContainerName=\u0022test-container-02574ec7-0d99-1bc6-9553-abda6021f372\u0022\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-34e35ab6-f13f-f871-489c-9bc355d173fe\u003C/Name\u003E\u003CVersionId\u003E2021-07-08T16:23:42.8545022Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 08 Jul 2021 16:23:42 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 08 Jul 2021 16:23:42 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D9422CC0B236F5\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003EJh5PbKV/YMuhE02uCDCmDw==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003CImmutabilityPolicyUntilDate\u003EThu, 08 Jul 2021 16:28:43 GMT\u003C/ImmutabilityPolicyUntilDate\u003E\u003CImmutabilityPolicyMode\u003Eunlocked\u003C/ImmutabilityPolicyMode\u003E\u003CLegalHold\u003Efalse\u003C/LegalHold\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-02574ec7-0d99-1bc6-9553-abda6021f372/test-blob-34e35ab6-f13f-f871-489c-9bc355d173fe?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-4d8839a90e12ee4cb855484cb547bd4e-8906f193aff40d4b-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "348ac9f0-33d3-8643-c466-bfe7870ba6dd", - "x-ms-date": "Thu, 08 Jul 2021 16:23:43 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:43 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "348ac9f0-33d3-8643-c466-bfe7870ba6dd", - "x-ms-request-id": "4a2ef019-101e-0004-4415-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-02574ec7-0d99-1bc6-9553-abda6021f372/test-blob-34e35ab6-f13f-f871-489c-9bc355d173fe", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-7ac3a2ccfc567746a0811c4ad7531370-9934a88fcc044645-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "baa0a74f-994b-fc4f-c5e7-b9e3d8bf2a2c", - "x-ms-date": "Thu, 08 Jul 2021 16:23:43 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:43 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "baa0a74f-994b-fc4f-c5e7-b9e3d8bf2a2c", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2ef01a-101e-0004-4515-7405ac000000", + "x-ms-request-id": "b1227a0b-d01e-004a-2be9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-07-08T11:23:43.0827912-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:27.0125348-07:00", "RandomSeed": "384307587", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\nXClient\nba45b233-e2ef-4169-8808-49eb0d8eba0d" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(All)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(All)Async.json index 89bd671cebf08..9abf0edbb103c 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(All)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(All)Async.json @@ -1,58 +1,49 @@ { "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-7eae61c7-4017-eafc-a693-a48af21fa35d/test-blob-14ed93f2-b1a4-e140-e99d-21060047216a", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-7eae61c7-4017-eafc-a693-a48af21fa35d", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-dea6be9444a74647a26037e67a164ea5-2795c6a99850124a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-4a08183e30e3da4683355b700f65dc24-ae3bc95a1be86c4b-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "5046645d-71ec-3e45-9d8c-cb0c2d1cc431", - "x-ms-date": "Thu, 08 Jul 2021 16:24:02 GMT", + "x-ms-client-request-id": "19d3f6b4-c396-ea36-279c-13539e9695f9", + "x-ms-date": "Wed, 11 Aug 2021 19:42:40 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "7rISM0UNUlKD2LRys1D\u002BLhRCuOEhJ7wWIc2Veh716l9yOZw/DW8Y5UCbkMv8zS6ZnvLxvY4/Scb1\u002BxF4eNgzje5VAHqzviGlKtOghZfxGlSe\u002B9wrBCzQMu/VSRFdoGxoaALcp8205d/RS5O7n8MvBOG92Xz7B4jChM2K3XUQSIlmNx2UFHKG6hb9WriYFJIrpkUvn8bvbWB5GiL/KQdqwAMJVGemmvBuN\u002B5m/qzQKXA7Xzcw4KjDd8q8GvpQh8APk5q1j78rhAtUwGjYiW60qfCyxMrPOuBaRt2d6YD2HrAtVmoSGpqwD9or2x9A6u5bCHAJncL2P1m6WkjijpuLXqK3qjIDoo9WArTwpF7AGlvuQeEP7IDtNxcRV8BRzYE/oH19iEC8V2XhspsOBpv6\u002BT/t9Ey5fHEhyXMb8UrOBTUysAPhQ5EbMel8LTrl3zF7F12AZNg0hiQMW77NoWUaE61m21WXGbau0cJjPE43POpBn9rsTqBc/Srf1OfSTpCDYRqMfgTb4/2n0pIV0UnV1R7UiwGLLsQMCd0quETP24My39s0qr3mZrvcRXwORizhCv/I/sKO\u002BDNVf3QmsCu51/YO4/FuoSph7iVFruhI/sKxSa1FBt3Ao\u002Ben3itIv7WQI22F/2M6c2nUZw\u002BdSUlLDYGxdWd\u002Bc9EZTT8JxsL/GC5wtYt6wv5fdtZEcJ7NI1qeXNGql0lNEq\u002BcbLEkMaym1U/hLZO\u002B0EqCUv\u002BQOQMzSyrla2nwVIDkIqPb3lZMO0QpnZtO7PbG4IyHJ0RKvdisaSCHPsZDtYDO/Arw4vL0Nhe6Zpto5F8zHovcaS08mmTLL3U1xfx\u002B5ugagPDr1v2ak/EskFY9Q4TBUyA6Z0xTkmGlJLJ9v3AbO4CzTWRuSEiNQtY8DwoNjevwc3HcQ3\u002Bcx\u002B2ORbFLHNOAEVTWifYgUgvXrSR1F4JXmJfHjEv/P/cBF4Z24AKWQSUCu/61NwT10CBmBJZaJrBrN60ahJCIgdFd1HJvqXIJQWz\u002BcluDoWCS0bwqmDthpvDWCqhUfL2VejosWGKRhiauXcIqW7NU55VMh7LTXeiW\u002By2CmJ/JtMWuafggV0n9AUqWfDt4N0s8gSITB/QKwRxSlVw0Du2G5Kn9e/K7NJBMToVnPeCsHsTiRhd8tqzQo6fbzsHtyfJdD5iSertYgU2Sx7huooQ8pXeXUsjWCi78LNhK32XPXoWSCi1IGqQIisTJ6u/zYgAjnyhJVXcqhwVplk3jDaHnwmgy25hW84vTjscDDCA/CMrXJ0A8hQkOaIMo3oNWJXwj4SeGwIZozKuddsavJnrkKo2CDOZgqzxfJHMVLhQHfGlL4Cr4uEdEblqVnw5CX0IIQw==", + "RequestBody": "8pPtFKSxQOHpnSEGAEchau6yEjNFDVJSg9i0crNQ/i4UQrjhISe8FiHNlXoe9epfcjmcPw1vGOVAm5DL/M0umZ7y8b2OP0nG9fsReHjYM43uVQB6s74hpSrToIWX8RpUnvvcKwQs0DLv1UkRXaBsaGgC3KfNtOXf0UuTu5/DLwThvdl8\u002BweIwoTNit11EEiJZjcdlBRyhuoW/Vq4mBSSK6ZFL5/G721geRoi/ykHasADCVRnpprwbjfuZv6s0ClwO183MOCow3fKvBr6UIfAD5OatY\u002B/K4QLVMBo2IlutKnwssTKzzrgWkbdnemA9h6wLVZqEhqasA/aK9sfQOruWwhwCZ3C9j9ZulpI4o6bi16it6oyA6KPVgK08KRewBpb7kHhD\u002ByA7TcXEVfAUc2BP6B9fYhAvFdl4bKbDgab\u002Bvk/7fRMuXxxIclzG/FKzgU1MrAD4UORGzHpfC065d8xexddgGTYNIYkDFu\u002BzaFlGhOtZttVlxm2rtHCYzxONzzqQZ/a7E6gXP0q39Tn0k6Qg2EajH4E2\u002BP9p9KSFdFJ1dUe1IsBiy7EDAndKrhEz9uDMt/bNKq95ma73EV8DkYs4Qr/yP7CjvgzVX90JrArudf2DuPxbqEqYe4lRa7oSP7CsUmtRQbdwKPnp94rSL\u002B1kCNthf9jOnNp1GcPnUlJSw2BsXVnfnPRGU0/CcbC/xgucLWLesL\u002BX3bWRHCezSNanlzRqpdJTRKvnGyxJDGsptVP4S2TvtBKglL/kDkDM0sq5Wtp8FSA5CKj295WTDtEKZ2bTuz2xuCMhydESr3YrGkghz7GQ7WAzvwK8OLy9DYXumabaORfMx6L3GktPJpkyy91NcX8fuboGoDw69b9mpPxLJBWPUOEwVMgOmdMU5JhpSSyfb9wGzuAs01kbkhIjULWPA8KDY3r8HNx3EN/nMftjkWxSxzTgBFU1on2IFIL160kdReCV5iXx4xL/z/3AReGduAClkElArv\u002BtTcE9dAgZgSWWiawazetGoSQiIHRXdRyb6lyCUFs/nJbg6FgktG8Kpg7Yabw1gqoVHy9lXo6LFhikYYmrl3CKluzVOeVTIey013olvstgpifybTFrmn4IFdJ/QFKlnw7eDdLPIEiEwf0CsEcUpVcNA7thuSp/XvyuzSQTE6FZz3grB7E4kYXfLas0KOn287B7cnyXQ\u002BYknq7WIFNkse4bqKEPKV3l1LI1gou/CzYSt9lz16FkgotSBqkCIrEyerv82IAI58oSVV3KocFaZZN4w2h58JoMtuYVvOL047HAwwgPwjK1ydAPIUJDmiDKN6DViV8I\u002BEnhsCGaMyrnXbGryZ65CqNggzmYKs8XyRzFS4UB3xpSw==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "6QenYkVtR1ynJJKj2jEvXQ==", - "Date": "Thu, 08 Jul 2021 16:24:02 GMT", - "ETag": "\u00220x8D9422CCC81FAD5\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:24:02 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "5046645d-71ec-3e45-9d8c-cb0c2d1cc431", - "x-ms-content-crc64": "M86KIyuY2GM=", - "x-ms-request-id": "4a2ef2b9-101e-0004-2a15-7405ac000000", + "Content-Length": "0", + "Content-MD5": "TDXlexfj8DCZ3tPtjuqs4g==", + "Date": "Wed, 11 Aug 2021 19:42:40 GMT", + "ETag": "\u00220x8D95D002E3A6530\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:40 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "19d3f6b4-c396-ea36-279c-13539e9695f9", + "x-ms-content-crc64": "o4jgirWiBQY=", + "x-ms-request-id": "b122ac45-d01e-004a-64e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:24:02.6700501Z" + "x-ms-version-id": "2021-08-11T19:42:40.6597936Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-7eae61c7-4017-eafc-a693-a48af21fa35d/test-blob-14ed93f2-b1a4-e140-e99d-21060047216a?sv=2020-10-02\u0026se=2021-07-09T16%3A24%3A02Z\u0026sr=c\u0026sp=racwdxlti\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-7eae61c7-4017-eafc-a693-a48af21fa35d?sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A40Z\u0026sr=c\u0026sp=racwdxlti\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-f333a9d6d694444d8eee0478efe8f482-3cd519cf2270ed43-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "fbe51409-b8fb-4357-b194-7b09f72abd0b", + "traceparent": "00-0c636e432ecc7e428a040025867a652f-fc455070928acf45-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1060ea0c-50a9-1db4-f30d-91ab301bbbff", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:29:02 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:40 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -60,30 +51,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:24:02 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "fbe51409-b8fb-4357-b194-7b09f72abd0b", + "Date": "Wed, 11 Aug 2021 19:42:40 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "1060ea0c-50a9-1db4-f30d-91ab301bbbff", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:29:02 GMT", - "x-ms-request-id": "4a2ef2ba-101e-0004-2b15-7405ac000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:40 GMT", + "x-ms-request-id": "b122acd9-d01e-004a-63e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-7eae61c7-4017-eafc-a693-a48af21fa35d/test-blob-14ed93f2-b1a4-e140-e99d-21060047216a?sv=2020-10-02\u0026se=2021-07-09T16%3A24%3A02Z\u0026sr=c\u0026sp=racwdxlti\u0026sig=Sanitized\u0026comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-7eae61c7-4017-eafc-a693-a48af21fa35d?sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A40Z\u0026sr=c\u0026sp=racwdxlti\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-e1669d98f118e040a2b301798460fb05-0dd1ddd639eb2946-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "1802ccd1-c937-5435-921c-5f14d4ab25c9", + "traceparent": "00-15a3b49f51931c498d55b784c5c06a7c-af706b9fbbaff444-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b447e2d7-8436-0d50-af29-5cdee09a0e82", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -92,118 +77,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:24:02 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "1802ccd1-c937-5435-921c-5f14d4ab25c9", + "Date": "Wed, 11 Aug 2021 19:42:40 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "b447e2d7-8436-0d50-af29-5cdee09a0e82", "x-ms-legal-hold": "false", - "x-ms-request-id": "4a2ef2bb-101e-0004-2c15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-7eae61c7-4017-eafc-a693-a48af21fa35d?restype=container\u0026comp=list\u0026include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "2b38f986-a427-0dd3-acf2-2219253c3804", - "x-ms-date": "Thu, 08 Jul 2021 16:24:03 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "x-ms-request-id,x-ms-client-request-id,Server,x-ms-version,Content-Type,Content-Length,Date,Transfer-Encoding", - "Content-Type": "application/xml", - "Date": "Thu, 08 Jul 2021 16:24:02 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "2b38f986-a427-0dd3-acf2-2219253c3804", - "x-ms-request-id": "4a2ef2bc-101e-0004-2d15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://seanoauthstage.blob.core.windows.net/\u0022 ContainerName=\u0022test-container-7eae61c7-4017-eafc-a693-a48af21fa35d\u0022\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-14ed93f2-b1a4-e140-e99d-21060047216a\u003C/Name\u003E\u003CVersionId\u003E2021-07-08T16:24:02.6700501Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 08 Jul 2021 16:24:02 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 08 Jul 2021 16:24:02 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D9422CCC81FAD5\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003E6QenYkVtR1ynJJKj2jEvXQ==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003CImmutabilityPolicyUntilDate\u003EThu, 08 Jul 2021 16:29:02 GMT\u003C/ImmutabilityPolicyUntilDate\u003E\u003CImmutabilityPolicyMode\u003Eunlocked\u003C/ImmutabilityPolicyMode\u003E\u003CLegalHold\u003Efalse\u003C/LegalHold\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-7eae61c7-4017-eafc-a693-a48af21fa35d/test-blob-14ed93f2-b1a4-e140-e99d-21060047216a?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-dff7acce93050e418348a42437bcc04c-e5039995a89d0c48-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "db8d48b9-f972-aca1-b2c5-a1e1e4af5f87", - "x-ms-date": "Thu, 08 Jul 2021 16:24:03 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:24:02 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "db8d48b9-f972-aca1-b2c5-a1e1e4af5f87", - "x-ms-request-id": "4a2ef2c0-101e-0004-3015-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-7eae61c7-4017-eafc-a693-a48af21fa35d/test-blob-14ed93f2-b1a4-e140-e99d-21060047216a", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-b502c64d02f9564cb4dc732fa2cc6660-2ae2e1bdbbbcba4f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "dc5f08fa-5dae-0a91-f2e1-a8001dcce653", - "x-ms-date": "Thu, 08 Jul 2021 16:24:03 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:24:02 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "dc5f08fa-5dae-0a91-f2e1-a8001dcce653", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2ef2c1-101e-0004-3115-7405ac000000", + "x-ms-request-id": "b122ad16-d01e-004a-18e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-07-08T11:24:02.8618109-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:40.7245081-07:00", "RandomSeed": "1005847967", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\nXClient\nba45b233-e2ef-4169-8808-49eb0d8eba0d" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(SetImmutabilityPolicy).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(SetImmutabilityPolicy).json index 32f75c72e6548..cb26a40af2ec3 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(SetImmutabilityPolicy).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(SetImmutabilityPolicy).json @@ -1,58 +1,49 @@ { "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-31474eee-9afb-82ce-3f4c-53f19ed89613/test-blob-683aaf84-0539-a4a4-2fb0-907fda1b1230", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-31474eee-9afb-82ce-3f4c-53f19ed89613", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-50f2d0d891a4fe4dad368ceaaef144ce-17917c520b64a746-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-cbb24670c6591a45af1a28ab9199f717-a15fb9e47401a047-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "56617490-1430-a002-5d1b-925bf2efb663", - "x-ms-date": "Thu, 08 Jul 2021 16:23:46 GMT", + "x-ms-client-request-id": "911d1250-6444-7b0f-0223-fd00b79e3162", + "x-ms-date": "Wed, 11 Aug 2021 19:42:27 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "9FyEMbbj4BgSCnOc34dSTBhhZUYNZObpqaICSwpPpyM5I/xBU2VdoM4iVi6RCMWnXkRmebbLIo92m4cT4ZUNwmJPYruKEPizBMR36g63V6HcWu3G6C5tbQBsy7jdSb85FJPLQqUJHE1Ls3XxVDiBvkPmN4anR9o04fS6HkU/1roFPtV66xT80j6gejW4fBnI6wx09xI4kcy5lmCwTv4IC9267BViBtIv6WRIB82kfGXb8jI4y96ozKwIwVWzS4M/mG5X/ZAEZeQ5RQ2t8Ir/FBr71VzLz0D\u002BER9pWkV9e57gCW9eTX7V1o1O/oXR\u002BtwhCa06uHUnc8guWetwmwufvMpuzecboMecJv7OfdC6LRdDR1CYQ8IouJWmMPOSZDuCr0K7Yi31BmnlnZJ3WPb3cyvULVS6BngHRhRRdG/TCsHCTM2O/srpTkDnsqUwsV\u002BfrrzHvTfnx6jJtBwYo5H5EpPQtAwoaXVh6t8T01TT1pS1ssWzC0yK24QlxEqu0aqu7p8RYP1TdkVHZtJX1PRU9t2HY/HLRQdGRdiHA6Uqsxk0ZeS0wXaXYTuAbKR6MgeP0M5tJm654qiYyhoky3OgHLO5I28PoDRm8AG1S9lizBPR\u002BDLWvY2re4I8G/Zcc5bI4E/xwA\u002BYgDCZBjZsA5fONv0HUtNAyV8lDafs04Q\u002BCnxr7WqKcAsDOXcCPbZXPnjqbeX4VSDChxfvy7Nnq6yrW/u5ARUsQ8XxAxhbPouozs4vAWWeRbVcqGVTm6VYnI7LVuK7nj1ivikgBlIIZ0mLRv3kOKlHDBVGXViw2KggmWaKkOep7TCRzEM7fj5jVEEbyFSndGPkg0nMdEDlsuWB/23rfdZi4VnMU2tlDI7W4gkXlBBTeCQDpQ2d3HjvqxpeuX7ReNZqueb72yH3f3e79pE3zR7ULYdJ6NfJxAXg3KdRBlIPBWoyrdopWJwCCyaV4ubmt977ioz3h5D\u002BoPThGv56pXgkrPAnBR9DqtXqRtyxM\u002BIf\u002BiXIVXzFGH3aMw3mSD2eiGWucTX1v7K\u002BuN\u002B3DECzTWwRwSDZsU/7XpRyTNESXGKXTL53A8KtKTpyCp2dDgs9J\u002Bag1IYcxNYVshKhgnPgq1t9H7\u002BCPEqpZJjmZqeyXlCINSTrcYjbeojoYVCwC6bHkl5BIO5Luuqb92/uNl0uY1TCGE1O9DnToqQ3mtv5\u002BVnxH9RJcT5hPXs6UHoZ7EQruf787vNZeZ0kbn1JFCAPov0W/ReI5fEVYNvSFKS/urVgDOHc/Atml6Y2JALAFyhaKq19A\u002B4totMM5o0Xh2T5ZbTI6Qg/M6Xyr2ZxUsHuVUmyd\u002Bn2QbbHMmkN0BV9ThBBPb9O\u002BC0gG/cHi1OIvA==", + "RequestBody": "hK86aDkFpKQvsJB/2hsSMPRchDG24\u002BAYEgpznN\u002BHUkwYYWVGDWTm6amiAksKT6cjOSP8QVNlXaDOIlYukQjFp15EZnm2yyKPdpuHE\u002BGVDcJiT2K7ihD4swTEd\u002BoOt1eh3FrtxugubW0AbMu43Um/ORSTy0KlCRxNS7N18VQ4gb5D5jeGp0faNOH0uh5FP9a6BT7VeusU/NI\u002BoHo1uHwZyOsMdPcSOJHMuZZgsE7\u002BCAvduuwVYgbSL\u002BlkSAfNpHxl2/IyOMveqMysCMFVs0uDP5huV/2QBGXkOUUNrfCK/xQa\u002B9Vcy89A/hEfaVpFfXue4AlvXk1\u002B1daNTv6F0frcIQmtOrh1J3PILlnrcJsLn7zKbs3nG6DHnCb\u002Bzn3Qui0XQ0dQmEPCKLiVpjDzkmQ7gq9Cu2It9QZp5Z2Sd1j293Mr1C1UugZ4B0YUUXRv0wrBwkzNjv7K6U5A57KlMLFfn668x70358eoybQcGKOR\u002BRKT0LQMKGl1YerfE9NU09aUtbLFswtMituEJcRKrtGqru6fEWD9U3ZFR2bSV9T0VPbdh2Pxy0UHRkXYhwOlKrMZNGXktMF2l2E7gGykejIHj9DObSZuueKomMoaJMtzoByzuSNvD6A0ZvABtUvZYswT0fgy1r2Nq3uCPBv2XHOWyOBP8cAPmIAwmQY2bAOXzjb9B1LTQMlfJQ2n7NOEPgp8a\u002B1qinALAzl3Aj22Vz546m3l\u002BFUgwocX78uzZ6usq1v7uQEVLEPF8QMYWz6LqM7OLwFlnkW1XKhlU5ulWJyOy1biu549Yr4pIAZSCGdJi0b95DipRwwVRl1YsNioIJlmipDnqe0wkcxDO34\u002BY1RBG8hUp3Rj5INJzHRA5bLlgf9t633WYuFZzFNrZQyO1uIJF5QQU3gkA6UNndx476saXrl\u002B0XjWarnm\u002B9sh9393u/aRN80e1C2HSejXycQF4NynUQZSDwVqMq3aKVicAgsmleLm5rfe\u002B4qM94eQ/qD04Rr\u002BeqV4JKzwJwUfQ6rV6kbcsTPiH/olyFV8xRh92jMN5kg9nohlrnE19b\u002ByvrjftwxAs01sEcEg2bFP\u002B16UckzRElxil0y\u002BdwPCrSk6cgqdnQ4LPSfmoNSGHMTWFbISoYJz4KtbfR\u002B/gjxKqWSY5mansl5QiDUk63GI23qI6GFQsAumx5JeQSDuS7rqm/dv7jZdLmNUwhhNTvQ506KkN5rb\u002BflZ8R/USXE\u002BYT17OlB6GexEK7n\u002B/O7zWXmdJG59SRQgD6L9Fv0XiOXxFWDb0hSkv7q1YAzh3PwLZpemNiQCwBcoWiqtfQPuLaLTDOaNF4dk\u002BWW0yOkIPzOl8q9mcVLB7lVJsnfp9kG2xzJpDdAVfQ==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "cLZvLGciQwKlTXiX\u002B57XMQ==", - "Date": "Thu, 08 Jul 2021 16:23:45 GMT", - "ETag": "\u00220x8D9422CC2957C94\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:23:46 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "56617490-1430-a002-5d1b-925bf2efb663", - "x-ms-content-crc64": "btsfb0cfLv0=", - "x-ms-request-id": "4a2ef057-101e-0004-7215-7405ac000000", + "Content-Length": "0", + "Content-MD5": "JjW\u002B6wAxEk1wSvBxoAPMaQ==", + "Date": "Wed, 11 Aug 2021 19:42:26 GMT", + "ETag": "\u00220x8D95D00263F518F\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:27 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "911d1250-6444-7b0f-0223-fd00b79e3162", + "x-ms-content-crc64": "SWwDi51awkU=", + "x-ms-request-id": "b1227a77-d01e-004a-05e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:23:46.0206740Z" + "x-ms-version-id": "2021-08-11T19:42:27.2712872Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-31474eee-9afb-82ce-3f4c-53f19ed89613/test-blob-683aaf84-0539-a4a4-2fb0-907fda1b1230?sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A46Z\u0026sr=c\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-31474eee-9afb-82ce-3f4c-53f19ed89613?sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A27Z\u0026sr=c\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-78c658e24d0d5e41811c14de6664527e-2664fb8ddc3c4441-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "167794ea-32f1-3b8c-107d-3329d2b38812", + "traceparent": "00-a5cfb7014d23a64f991401471c517ea9-3305b87b23ae3d40-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fb19763e-84b2-e939-00c6-3b9b51f77682", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:46 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:27 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -60,30 +51,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:45 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "167794ea-32f1-3b8c-107d-3329d2b38812", + "Date": "Wed, 11 Aug 2021 19:42:26 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "fb19763e-84b2-e939-00c6-3b9b51f77682", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:28:46 GMT", - "x-ms-request-id": "4a2ef05b-101e-0004-7515-7405ac000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:27 GMT", + "x-ms-request-id": "b1227b1d-d01e-004a-11e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-31474eee-9afb-82ce-3f4c-53f19ed89613/test-blob-683aaf84-0539-a4a4-2fb0-907fda1b1230?sv=2020-10-02\u0026se=2021-07-09T16%3A23%3A46Z\u0026sr=c\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-31474eee-9afb-82ce-3f4c-53f19ed89613?sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A27Z\u0026sr=c\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-aa161749a0eb5f4ab3b0d5ae27602083-8083b0a6c7012145-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "5e7110a4-9f78-0c72-e9dd-eb355010164c", + "traceparent": "00-0644dc07f531e649a0ece3d37e3c0250-a007d678e5c7bd41-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "40c1996d-3585-0cb0-3a77-5569d9664e66", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -92,119 +77,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:45 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "5e7110a4-9f78-0c72-e9dd-eb355010164c", + "Date": "Wed, 11 Aug 2021 19:42:26 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "40c1996d-3585-0cb0-3a77-5569d9664e66", "x-ms-legal-hold": "false", - "x-ms-request-id": "4a2ef05e-101e-0004-7715-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-31474eee-9afb-82ce-3f4c-53f19ed89613?restype=container\u0026comp=list\u0026include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-6325a5983077ea4496317a2bfbf9eb0d-d81c548b9bd7544f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c284cc2e-2942-cd9a-27b5-56a74a7abb2a", - "x-ms-date": "Thu, 08 Jul 2021 16:23:46 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "x-ms-request-id,x-ms-client-request-id,Server,x-ms-version,Content-Type,Content-Length,Date,Transfer-Encoding", - "Content-Type": "application/xml", - "Date": "Thu, 08 Jul 2021 16:23:45 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "c284cc2e-2942-cd9a-27b5-56a74a7abb2a", - "x-ms-request-id": "4a2ef065-101e-0004-7c15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://seanoauthstage.blob.core.windows.net/\u0022 ContainerName=\u0022test-container-31474eee-9afb-82ce-3f4c-53f19ed89613\u0022\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-683aaf84-0539-a4a4-2fb0-907fda1b1230\u003C/Name\u003E\u003CVersionId\u003E2021-07-08T16:23:46.0206740Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 08 Jul 2021 16:23:46 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 08 Jul 2021 16:23:46 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D9422CC2957C94\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003EcLZvLGciQwKlTXiX\u002B57XMQ==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003CImmutabilityPolicyUntilDate\u003EThu, 08 Jul 2021 16:28:46 GMT\u003C/ImmutabilityPolicyUntilDate\u003E\u003CImmutabilityPolicyMode\u003Eunlocked\u003C/ImmutabilityPolicyMode\u003E\u003CLegalHold\u003Efalse\u003C/LegalHold\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-31474eee-9afb-82ce-3f4c-53f19ed89613/test-blob-683aaf84-0539-a4a4-2fb0-907fda1b1230?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-ce73844a3de06b42853b1d0cf5338d80-37f666e6c564d24a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8307427b-548b-1409-8d61-9080df556a69", - "x-ms-date": "Thu, 08 Jul 2021 16:23:46 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:23:46 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "8307427b-548b-1409-8d61-9080df556a69", - "x-ms-request-id": "4a2ef06a-101e-0004-7f15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-31474eee-9afb-82ce-3f4c-53f19ed89613/test-blob-683aaf84-0539-a4a4-2fb0-907fda1b1230", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-a40e8104a717614a9a43b79408e3f8de-3c5358204a278842-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "072b8f84-3773-0d9f-ff18-24d705b08fbd", - "x-ms-date": "Thu, 08 Jul 2021 16:23:46 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:23:46 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "072b8f84-3773-0d9f-ff18-24d705b08fbd", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2ef070-101e-0004-0315-7405ac000000", + "x-ms-request-id": "b1227b5c-d01e-004a-4ae9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-07-08T11:23:46.2131039-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:27.3375355-07:00", "RandomSeed": "1107776664", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\nXClient\nba45b233-e2ef-4169-8808-49eb0d8eba0d" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(SetImmutabilityPolicy)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(SetImmutabilityPolicy)Async.json index 55e968183eafe..f16b68ded89d6 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(SetImmutabilityPolicy)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetImmutibilityPolicyAsync_SetLegalHold_ContainerSas(SetImmutabilityPolicy)Async.json @@ -1,58 +1,49 @@ { "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-0d2a967c-e583-1640-5c12-cc2c81f06ecb/test-blob-7d9e617f-6dcb-fb4c-6641-1aba66ec1f47", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-0d2a967c-e583-1640-5c12-cc2c81f06ecb", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-59c46e4a76d7d34393ec61214119084b-f875373d57963b4f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-5091064d132a3a46813d7af408fac897-9379ee60ff33984b-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "7a217ec8-5aa9-9cb1-c314-435b46a8eab6", - "x-ms-date": "Thu, 08 Jul 2021 16:24:05 GMT", + "x-ms-client-request-id": "ebe61587-65fe-897e-c24b-597d1dc4542d", + "x-ms-date": "Wed, 11 Aug 2021 19:42:40 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "VTuHJpsY//ggos8U53zFCRHOZHWjosoPSi\u002BnQcqFsG/zhNZGaUgwZ2KmXSidOBTqexComIeqpLNweNxscb0tmvJfIGKlf6DJnv0S/EWicREavca63RfoSOAi1vBsw/WlecM2PReyRPxw3/qJmKduzgbKUbT3crzad9iBg6mvXdoIbIOBbDP5aHnJSv4dXrA4tAfqoXJBrgYGW8Y/MMFTwIIggSsk7GLS0eg6LSi9vRkoSc6hxbtoxr58ehBtuji4dol8/dyEE8ilF9CJBoDdSZ2sF\u002BbysvvGt7ttqHFRZBawgrefQcA8ozUG\u002B63r3r89nzFzwaJRxcSNtUUhF2tWVLK52YTJPQfdcHSw7LZN29n7MAk/3qNzXr3zEYt7G4vKr6b7MQU7c2EqlVAuodkNQNpsJediFnYORXrG1ix7YVTo5jwPUqnTv7yoFUhSRb3j5tGxD/WkaJkw7OuKdJ00rjP8Rruc/e4wmGYqugEtuwC94u9aylJfQ32j32W9SEoec2cUVv4BR\u002BjjgHaOea6XAzDrzZGt2uPhnAI9\u002BR6IclAbDEaZGWQBu5sHd0rc0MnOC9s10nu4cJmDM7r8xE7KWg0mc21n/urL6RH2pmKYBcs4b\u002B1CU6DUYputFeWqBfdNPB09tV1cZg3xaelpwsk26y7uw1RgiAdtURDRuegEIeMaqGpFW09u3AjgUOq3a5/Rdiq3vEKi7bQV0GNMiq0k7UgFThpf8Y/ef\u002BdMgDcdteZwAEK9TGShd7u2L4vrIlFbu2KhsRyFcoWa2DxaVW18\u002BBp924pqZqHjZNdfqMIE812V8cTVewTJ6429I3MnRiJNOTZwbUbH8VTBvk1FJsnDleXfxWSop30VtPD9rEMtux21EW6LlIUWzgBwE723g8TD\u002Bo2OSIC\u002BpZK5WrlWykQRlAIvkBVaNwFfyfdjOJO/XjArObG1nnOc9mzc0TnMvwO7Xn\u002B7h/OvaMOMLn6JWmz/\u002BfyIKpCSW/WOkpmofmXIkwnzp9kUBNY8fNDuKW/1E5z/3Nc8Q5VzKAOJLPVaBupdw5t0lrKS6/UlS63ApDKFmH/9qKGNi090gH7Witfh4nXmkWXTgH3pbfHiF/fns4TRA5N2XF1IzzdMABU0vGAdQ2g32RPMsRgCEzuwq3NXjM35BIZDa4UYnsEth4BntbCQxNSPr9lxBVF7c0khlyTE9XNIOrfZ2tfiHztRniqXm16KH\u002BafyN3ziP80x/c89gacaZINHnr5t\u002Br8rI\u002BeH2cn5Njql3g9JCyWVbK3pBLgpik0tTSYinzkkWj8oxtNVGiYDeMeUl\u002BNXkVldsjIQRLXHAZmaWoyj1pcBgUQQYEQSQBJH5cuwVTKplbuMxOzG09WJA==", + "RequestBody": "f2GefcttTPtmQRq6ZuwfR1U7hyabGP/4IKLPFOd8xQkRzmR1o6LKD0ovp0HKhbBv84TWRmlIMGdipl0onTgU6nsQqJiHqqSzcHjcbHG9LZryXyBipX\u002BgyZ79EvxFonERGr3Gut0X6EjgItbwbMP1pXnDNj0XskT8cN/6iZinbs4GylG093K82nfYgYOpr13aCGyDgWwz\u002BWh5yUr\u002BHV6wOLQH6qFyQa4GBlvGPzDBU8CCIIErJOxi0tHoOi0ovb0ZKEnOocW7aMa\u002BfHoQbbo4uHaJfP3chBPIpRfQiQaA3UmdrBfm8rL7xre7bahxUWQWsIK3n0HAPKM1Bvut696/PZ8xc8GiUcXEjbVFIRdrVlSyudmEyT0H3XB0sOy2TdvZ\u002BzAJP96jc1698xGLexuLyq\u002Bm\u002BzEFO3NhKpVQLqHZDUDabCXnYhZ2DkV6xtYse2FU6OY8D1Kp07\u002B8qBVIUkW94\u002BbRsQ/1pGiZMOzrinSdNK4z/Ea7nP3uMJhmKroBLbsAveLvWspSX0N9o99lvUhKHnNnFFb\u002BAUfo44B2jnmulwMw682Rrdrj4ZwCPfkeiHJQGwxGmRlkAbubB3dK3NDJzgvbNdJ7uHCZgzO6/MROyloNJnNtZ/7qy\u002BkR9qZimAXLOG/tQlOg1GKbrRXlqgX3TTwdPbVdXGYN8WnpacLJNusu7sNUYIgHbVEQ0bnoBCHjGqhqRVtPbtwI4FDqt2uf0XYqt7xCou20FdBjTIqtJO1IBU4aX/GP3n/nTIA3HbXmcABCvUxkoXe7ti\u002BL6yJRW7tiobEchXKFmtg8WlVtfPgafduKamah42TXX6jCBPNdlfHE1XsEyeuNvSNzJ0YiTTk2cG1Gx/FUwb5NRSbJw5Xl38VkqKd9FbTw/axDLbsdtRFui5SFFs4AcBO9t4PEw/qNjkiAvqWSuVq5VspEEZQCL5AVWjcBX8n3YziTv14wKzmxtZ5znPZs3NE5zL8Du15/u4fzr2jDjC5\u002BiVps//n8iCqQklv1jpKZqH5lyJMJ86fZFATWPHzQ7ilv9ROc/9zXPEOVcygDiSz1WgbqXcObdJaykuv1JUutwKQyhZh//aihjYtPdIB\u002B1orX4eJ15pFl04B96W3x4hf357OE0QOTdlxdSM83TAAVNLxgHUNoN9kTzLEYAhM7sKtzV4zN\u002BQSGQ2uFGJ7BLYeAZ7WwkMTUj6/ZcQVRe3NJIZckxPVzSDq32drX4h87UZ4ql5teih/mn8jd84j/NMf3PPYGnGmSDR56\u002Bbfq/KyPnh9nJ\u002BTY6pd4PSQsllWyt6QS4KYpNLU0mIp85JFo/KMbTVRomA3jHlJfjV5FZXbIyEES1xwGZmlqMo9aXAYFEEGBEEkASQ==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "ysSaQbaDOMtgBKZBp/CkPA==", - "Date": "Thu, 08 Jul 2021 16:24:04 GMT", - "ETag": "\u00220x8D9422CCE05C966\u0022", - "Last-Modified": "Thu, 08 Jul 2021 16:24:05 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "7a217ec8-5aa9-9cb1-c314-435b46a8eab6", - "x-ms-content-crc64": "l0dZWrFPGqk=", - "x-ms-request-id": "4a2ef2e2-101e-0004-4715-7405ac000000", + "Content-Length": "0", + "Content-MD5": "oAZCJ1q3CZNfwAB8zi4U/w==", + "Date": "Wed, 11 Aug 2021 19:42:40 GMT", + "ETag": "\u00220x8D95D002E696CE6\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:40 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "ebe61587-65fe-897e-c24b-597d1dc4542d", + "x-ms-content-crc64": "ROejIQ7imgM=", + "x-ms-request-id": "b122ad7e-d01e-004a-69e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-07-08T16:24:05.2115814Z" + "x-ms-version-id": "2021-08-11T19:42:40.9690115Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-0d2a967c-e583-1640-5c12-cc2c81f06ecb/test-blob-7d9e617f-6dcb-fb4c-6641-1aba66ec1f47?sv=2020-10-02\u0026se=2021-07-09T16%3A24%3A05Z\u0026sr=c\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-0d2a967c-e583-1640-5c12-cc2c81f06ecb?sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A41Z\u0026sr=c\u0026sp=i\u0026sig=Sanitized\u0026comp=immutabilityPolicies", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-958974bc4bd6064f911dee74d2c954c1-bcf8aec5dc672346-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "9debe6de-db2d-2c7b-644a-27ea2122421a", + "traceparent": "00-1a969b0aee46634f91af2f74c1ca079c-f05881f281309246-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fbfa1cba-1562-ba4b-18a5-ff087029382a", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:29:05 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:41 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -60,30 +51,24 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:24:04 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "9debe6de-db2d-2c7b-644a-27ea2122421a", + "Date": "Wed, 11 Aug 2021 19:42:40 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "fbfa1cba-1562-ba4b-18a5-ff087029382a", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Thu, 08 Jul 2021 16:29:05 GMT", - "x-ms-request-id": "4a2ef2e3-101e-0004-4815-7405ac000000", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:41 GMT", + "x-ms-request-id": "b122ae6e-d01e-004a-32e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-0d2a967c-e583-1640-5c12-cc2c81f06ecb/test-blob-7d9e617f-6dcb-fb4c-6641-1aba66ec1f47?sv=2020-10-02\u0026se=2021-07-09T16%3A24%3A05Z\u0026sr=c\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-0d2a967c-e583-1640-5c12-cc2c81f06ecb?sv=2020-10-02\u0026se=2021-08-12T19%3A42%3A41Z\u0026sr=c\u0026sp=i\u0026sig=Sanitized\u0026comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", - "traceparent": "00-4d7ba28245bd8f4d9043c79398bc0f9c-be30047d285c4645-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "607d19db-4dbd-de88-a1cd-9718ed6198f6", + "traceparent": "00-91fcf56804f82b4f92895f99d464d0e5-b9a05a25153c6d46-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "01c3a360-59c9-b3cb-3367-61035ba92b9a", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -92,118 +77,20 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:24:04 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "607d19db-4dbd-de88-a1cd-9718ed6198f6", + "Date": "Wed, 11 Aug 2021 19:42:40 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "01c3a360-59c9-b3cb-3367-61035ba92b9a", "x-ms-legal-hold": "false", - "x-ms-request-id": "4a2ef2e4-101e-0004-4915-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-0d2a967c-e583-1640-5c12-cc2c81f06ecb?restype=container\u0026comp=list\u0026include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "080e8d1e-e2a5-135d-1ae4-5ffcc2b3c6d1", - "x-ms-date": "Thu, 08 Jul 2021 16:24:05 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "x-ms-request-id,x-ms-client-request-id,Server,x-ms-version,Content-Type,Content-Length,Date,Transfer-Encoding", - "Content-Type": "application/xml", - "Date": "Thu, 08 Jul 2021 16:24:04 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "080e8d1e-e2a5-135d-1ae4-5ffcc2b3c6d1", - "x-ms-request-id": "4a2ef2e5-101e-0004-4a15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://seanoauthstage.blob.core.windows.net/\u0022 ContainerName=\u0022test-container-0d2a967c-e583-1640-5c12-cc2c81f06ecb\u0022\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-7d9e617f-6dcb-fb4c-6641-1aba66ec1f47\u003C/Name\u003E\u003CVersionId\u003E2021-07-08T16:24:05.2115814Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 08 Jul 2021 16:24:05 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 08 Jul 2021 16:24:05 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D9422CCE05C966\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003EysSaQbaDOMtgBKZBp/CkPA==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003CImmutabilityPolicyUntilDate\u003EThu, 08 Jul 2021 16:29:05 GMT\u003C/ImmutabilityPolicyUntilDate\u003E\u003CImmutabilityPolicyMode\u003Eunlocked\u003C/ImmutabilityPolicyMode\u003E\u003CLegalHold\u003Efalse\u003C/LegalHold\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-0d2a967c-e583-1640-5c12-cc2c81f06ecb/test-blob-7d9e617f-6dcb-fb4c-6641-1aba66ec1f47?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-b18ae2043bfc094d93c6c7afa1b6c2ea-14476899a3e1ad4e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "5ff9dcfb-8f52-7f50-8794-b281d764c367", - "x-ms-date": "Thu, 08 Jul 2021 16:24:05 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 08 Jul 2021 16:24:04 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "5ff9dcfb-8f52-7f50-8794-b281d764c367", - "x-ms-request-id": "4a2ef2e8-101e-0004-4c15-7405ac000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-0d2a967c-e583-1640-5c12-cc2c81f06ecb/test-blob-7d9e617f-6dcb-fb4c-6641-1aba66ec1f47", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-c22a0c3a0155bc43ad327a06ab2b6535-e6321dd36824874f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.10.0-alpha.20210708.1", - "(.NET 5.0.7; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "e600367e-66b9-3f7f-1a21-ee6caab3cb53", - "x-ms-date": "Thu, 08 Jul 2021 16:24:05 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Thu, 08 Jul 2021 16:24:04 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e600367e-66b9-3f7f-1a21-ee6caab3cb53", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "4a2ef2ea-101e-0004-4e15-7405ac000000", + "x-ms-request-id": "b122aeb1-d01e-004a-6fe9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-07-08T11:24:05.4034515-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:41.2485040-07:00", "RandomSeed": "646365587", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\nXClient\nba45b233-e2ef-4169-8808-49eb0d8eba0d" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetLegalHoldAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetLegalHoldAsync.json index 7d549d0ecf2bf..d8ceb0fc2a319 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetLegalHoldAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetLegalHoldAsync.json @@ -1,58 +1,49 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-91985eca-1ad7-6e5a-6192-4e2d50f5fc40/test-blob-3acc92c2-a2f6-471e-5a50-59a1d3aec215", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-91985eca-1ad7-6e5a-6192-4e2d50f5fc40", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-d396c6db78aa1f4c9db7acf7e813b190-76717090a2aa6440-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-115c092afccfd14dba06b33669caa5aa-288b8ce670bf4149-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "1ed0ef92-dad7-8b43-da4f-a99079ef872d", - "x-ms-date": "Fri, 04 Jun 2021 19:05:37 GMT", + "x-ms-client-request-id": "54221496-0129-3330-cd2b-6e67e1f9e23f", + "x-ms-date": "Wed, 11 Aug 2021 19:42:21 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "wI4A3P/PPkzjN5uH4B3iNvPAIpHwglIoQFA3h8G5m7LPOWzC9SBA8lR/Vr4Glmc9bSKtEowxJD0815uvmLaKKpzot6awH0DTfy88cCuTIaro+hmfC4kmnhQvhh6EkVqd9CwiHd7AjU3h2pNc9LQSqLXxxp2d6x8SwhmSgZkiTu7Un3z/cQTLKG3LvTD1yapgHN1ok8u8AAkMD1vFLguzv4ylh1U4EjexJZ4w0S7uHfhvMWS8ursiF55y82GoBvlhF/6kUEJVKAmltm0sjC7bHfJiVvyn9wXRgm+2xR/VCB+kz7kvSsy2GglaFgNN9otwl9VvRrD8uSD5087SnmLp0K5Nh7x0q9MmqzzyTOACg4zkRi1KZcJvpxWZNnf95HumcEZU/27O++wBSZpzCm0/909C7Vg1n2rs3uCn23RcKMfATNuarYMdFUtASBwn+52nWT8nuvYjcdHbaCGOJx93pSDTs76RpUnMJNgN9FZOxOJC/4I1NG3QndoKvkRhj+0ryaL7VEjfFrP1WpUeFnx6jaQ/SyidQnGzAhbjh+YFapXq4Su0Um+aYujOP9nXsYddjzGgIkPFjYYxSFEx/I/N8PAANDRRxjo0pOk/zwKX21COhfe0ZUhSJVOkggoeaGZZAU7p131SDMn3a35ahr6Dmm0AonaXGIuorg/grEMvFjuC5c60rQPSPHgtvfnJ+J6VIOidHcXvwujDQSlucl+Fx1VC16Dwz+xpLWb9aVuS3rZwS4xakvl2kyLl8GzaZMkZp/WjhyD+pFD8NO9e8ViNMWJy/ifTKjVcy0N9C99/jsmd5MFm7laVcqY7Xl4JF6HKWL8JZ2WiRn2/R7vdgJlxfaYlwQ2WJkMM3YyBl8zXUrSis7IfdSZj+55EpqaauPEMyeG45FaUMzF8/YrZIK6w6PQHOszmUgd/wcZvUoCccSWadM7rH25eDoCBo3icitrvlL2ykn0lJnfaOCKPJOGw34tkPqzfxcmGqSxMZK6O4zbsf73C6d+odU5XEOdLzume0MPtN0suD870LOhR2MHIS1Tro6Uj7varvMldiLTiOttCrpTroazrvW/vzb32VpyNjsWSXypDeuLNQXqB0IcZEvENDios3aqoAOU2NCA4tWUt0PrvT9qx/jOyHV8xae3o1bvM6EdyYLEb6l9EDUbBlYsVVACNKsIWXA/2er9Kd5f4Tl9la8weu29I1GV7bPHt8IjUHBTtWqr4tYw3e+bx0HPHTL/mXCm+9pmQRFZdmu8eCYk3dluCC/O1bLZA5j+JVwPysyAxBpReFSV7XBZUmxqcGHFculoYRUDMMe9yfhBZB+xSa+fP7QL12GA1Bq7cYNGbo83OLJ2p2m3fZdWk7A==", + "RequestBody": "wpLMOvaiHkdaUFmh067CFcCOANz/zz5M4zebh\u002BAd4jbzwCKR8IJSKEBQN4fBuZuyzzlswvUgQPJUf1a\u002BBpZnPW0irRKMMSQ9PNebr5i2iiqc6LemsB9A038vPHArkyGq6PoZnwuJJp4UL4YehJFanfQsIh3ewI1N4dqTXPS0Eqi18cadnesfEsIZkoGZIk7u1J98/3EEyyhty70w9cmqYBzdaJPLvAAJDA9bxS4Ls7\u002BMpYdVOBI3sSWeMNEu7h34bzFkvLq7IheecvNhqAb5YRf\u002BpFBCVSgJpbZtLIwu2x3yYlb8p/cF0YJvtsUf1QgfpM\u002B5L0rMthoJWhYDTfaLcJfVb0aw/Lkg\u002BdPO0p5i6dCuTYe8dKvTJqs88kzgAoOM5EYtSmXCb6cVmTZ3/eR7pnBGVP9uzvvsAUmacwptP/dPQu1YNZ9q7N7gp9t0XCjHwEzbmq2DHRVLQEgcJ/udp1k/J7r2I3HR22ghjicfd6Ug07O\u002BkaVJzCTYDfRWTsTiQv\u002BCNTRt0J3aCr5EYY/tK8mi\u002B1RI3xaz9VqVHhZ8eo2kP0sonUJxswIW44fmBWqV6uErtFJvmmLozj/Z17GHXY8xoCJDxY2GMUhRMfyPzfDwADQ0UcY6NKTpP88Cl9tQjoX3tGVIUiVTpIIKHmhmWQFO6dd9UgzJ92t\u002BWoa\u002Bg5ptAKJ2lxiLqK4P4KxDLxY7guXOtK0D0jx4Lb35yfielSDonR3F78Low0EpbnJfhcdVQteg8M/saS1m/Wlbkt62cEuMWpL5dpMi5fBs2mTJGaf1o4cg/qRQ/DTvXvFYjTFicv4n0yo1XMtDfQvff47JneTBZu5WlXKmO15eCRehyli/CWdlokZ9v0e73YCZcX2mJcENliZDDN2MgZfM11K0orOyH3UmY/ueRKammrjxDMnhuORWlDMxfP2K2SCusOj0BzrM5lIHf8HGb1KAnHElmnTO6x9uXg6AgaN4nIra75S9spJ9JSZ32jgijyThsN\u002BLZD6s38XJhqksTGSujuM27H\u002B9wunfqHVOVxDnS87pntDD7TdLLg/O9CzoUdjByEtU66OlI\u002B72q7zJXYi04jrbQq6U66Gs671v78299lacjY7Fkl8qQ3rizUF6gdCHGRLxDQ4qLN2qqADlNjQgOLVlLdD670/asf4zsh1fMWnt6NW7zOhHcmCxG\u002BpfRA1GwZWLFVQAjSrCFlwP9nq/SneX\u002BE5fZWvMHrtvSNRle2zx7fCI1BwU7Vqq\u002BLWMN3vm8dBzx0y/5lwpvvaZkERWXZrvHgmJN3ZbggvztWy2QOY/iVcD8rMgMQaUXhUle1wWVJsanBhxXLpaGEVAzDHvcn4QWQfsUmvnz\u002B0C9dhgNQau3A==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "CUneKVu5z0tz50oqnFtJWQ==", - "Date": "Fri, 04 Jun 2021 19:05:35 GMT", - "ETag": "\"0x8D9278BBC7BA99C\"", - "Last-Modified": "Fri, 04 Jun 2021 19:05:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "1ed0ef92-dad7-8b43-da4f-a99079ef872d", - "x-ms-content-crc64": "4HNgD1wu7KY=", - "x-ms-request-id": "8afc45ae-a01e-001a-7d74-59a2b5000000", + "Content-Length": "0", + "Content-MD5": "GsGExlvqQuOFWMK5GD8q2w==", + "Date": "Wed, 11 Aug 2021 19:42:21 GMT", + "ETag": "\u00220x8D95D0022F8B5DF\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:21 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "54221496-0129-3330-cd2b-6e67e1f9e23f", + "x-ms-content-crc64": "79XW6nYn9zI=", + "x-ms-request-id": "b12265cf-d01e-004a-0ce9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:05:36.5794204Z" + "x-ms-version-id": "2021-08-11T19:42:21.7743839Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-91985eca-1ad7-6e5a-6192-4e2d50f5fc40/test-blob-3acc92c2-a2f6-471e-5a50-59a1d3aec215?comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-91985eca-1ad7-6e5a-6192-4e2d50f5fc40?comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-bd6117576a252141a497b3fca2316dc6-0d0b4083765a9640-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "754d2ef8-8604-bb14-d096-79da589fbadd", - "x-ms-date": "Fri, 04 Jun 2021 19:05:37 GMT", + "traceparent": "00-317d53e2f654894080ee04042d1c4b2d-a6a8cc2b1b1a4444-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "21caec50-5ae4-5eb2-a067-d6a15fc5bbaf", + "x-ms-date": "Wed, 11 Aug 2021 19:42:21 GMT", "x-ms-legal-hold": "true", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -61,31 +52,25 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:05:35 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "754d2ef8-8604-bb14-d096-79da589fbadd", + "Date": "Wed, 11 Aug 2021 19:42:21 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "21caec50-5ae4-5eb2-a067-d6a15fc5bbaf", "x-ms-legal-hold": "true", - "x-ms-request-id": "8afc45af-a01e-001a-7e74-59a2b5000000", + "x-ms-request-id": "b1226647-d01e-004a-69e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-91985eca-1ad7-6e5a-6192-4e2d50f5fc40/test-blob-3acc92c2-a2f6-471e-5a50-59a1d3aec215", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-91985eca-1ad7-6e5a-6192-4e2d50f5fc40", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-2148870ed3658f46a2f98cd48021b144-1c6b8b8a0ceedc40-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4a98f993-12a2-c928-d70e-514de0d80601", - "x-ms-date": "Fri, 04 Jun 2021 19:05:37 GMT", + "traceparent": "00-11f18ac41de79f43bc5624c9ff1de7f6-ffb338e5fe70f24a-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f51741a3-c02f-385a-3d71-7d6f04a22b15", + "x-ms-date": "Wed, 11 Aug 2021 19:42:21 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -94,44 +79,38 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "CUneKVu5z0tz50oqnFtJWQ==", + "Content-MD5": "GsGExlvqQuOFWMK5GD8q2w==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 19:05:35 GMT", - "ETag": "\"0x8D9278BBC7BA99C\"", - "Last-Modified": "Fri, 04 Jun 2021 19:05:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:21 GMT", + "ETag": "\u00220x8D95D0022F8B5DF\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:21 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "4a98f993-12a2-c928-d70e-514de0d80601", - "x-ms-creation-time": "Fri, 04 Jun 2021 19:05:36 GMT", + "x-ms-client-request-id": "f51741a3-c02f-385a-3d71-7d6f04a22b15", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:21 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "8afc45b0-a01e-001a-7f74-59a2b5000000", + "x-ms-request-id": "b1226691-d01e-004a-22e9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:05:36.5794204Z" + "x-ms-version-id": "2021-08-11T19:42:21.7743839Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-91985eca-1ad7-6e5a-6192-4e2d50f5fc40?restype=container&comp=list&include=Legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf?restype=container\u0026comp=list\u0026prefix=test-blob-91985eca-1ad7-6e5a-6192-4e2d50f5fc40\u0026include=Legalhold", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-9b98616eff88e54a8fefaff1ac95a207-c8b615657e03a840-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "5f46646b-7006-913b-184d-1d206f0c5864", - "x-ms-date": "Fri, 04 Jun 2021 19:05:37 GMT", + "traceparent": "00-744f3d243a822c4da6eab3db95df6b93-e1150fdebc1d7941-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1efdf8ad-c6ae-3780-d415-389308a5b62e", + "x-ms-date": "Wed, 11 Aug 2021 19:42:21 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -139,31 +118,25 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:05:35 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:21 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "5f46646b-7006-913b-184d-1d206f0c5864", - "x-ms-request-id": "8afc45b6-a01e-001a-0174-59a2b5000000", + "x-ms-client-request-id": "1efdf8ad-c6ae-3780-d415-389308a5b62e", + "x-ms-request-id": "b12266c3-d01e-004a-47e9-8e693e000000", "x-ms-version": "2020-10-02" }, - "ResponseBody": "test-blob-3acc92c2-a2f6-471e-5a50-59a1d3aec2152021-06-04T19:05:36.5794204ZtrueFri, 04 Jun 2021 19:05:36 GMTFri, 04 Jun 2021 19:05:36 GMT0x8D9278BBC7BA99C1024application/octet-streamCUneKVu5z0tz50oqnFtJWQ==BlockBlobHottrueunlockedavailabletruetrue" + "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://kasobolcanadanetoauth.blob.core.windows.net/\u0022 ContainerName=\u0022ccc0c3b3-39f3-484e-82af-1eeedc495adf\u0022\u003E\u003CPrefix\u003Etest-blob-91985eca-1ad7-6e5a-6192-4e2d50f5fc40\u003C/Prefix\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-91985eca-1ad7-6e5a-6192-4e2d50f5fc40\u003C/Name\u003E\u003CVersionId\u003E2021-08-11T19:42:21.7743839Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EWed, 11 Aug 2021 19:42:21 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EWed, 11 Aug 2021 19:42:21 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D95D0022F8B5DF\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003EGsGExlvqQuOFWMK5GD8q2w==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003CLegalHold\u003Etrue\u003C/LegalHold\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-91985eca-1ad7-6e5a-6192-4e2d50f5fc40/test-blob-3acc92c2-a2f6-471e-5a50-59a1d3aec215", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-91985eca-1ad7-6e5a-6192-4e2d50f5fc40", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-b95f46422a9ad843bb284618241368e8-e8289e5d92b1ee45-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "7be22257-a791-3cfb-bc6b-0561a960c8c7", - "x-ms-date": "Fri, 04 Jun 2021 19:05:37 GMT", + "traceparent": "00-aad33c7767525443a3e897f33d8819e1-f923bd7376d72943-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "0cc27b6b-0da4-cd66-7860-758cd995c132", + "x-ms-date": "Wed, 11 Aug 2021 19:42:22 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -172,42 +145,36 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "CUneKVu5z0tz50oqnFtJWQ==", + "Content-MD5": "GsGExlvqQuOFWMK5GD8q2w==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 19:05:35 GMT", - "ETag": "\"0x8D9278BBC7BA99C\"", - "Last-Modified": "Fri, 04 Jun 2021 19:05:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:21 GMT", + "ETag": "\u00220x8D95D0022F8B5DF\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:21 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "7be22257-a791-3cfb-bc6b-0561a960c8c7", - "x-ms-creation-time": "Fri, 04 Jun 2021 19:05:36 GMT", + "x-ms-client-request-id": "0cc27b6b-0da4-cd66-7860-758cd995c132", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:21 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "8afc45b7-a01e-001a-0274-59a2b5000000", + "x-ms-request-id": "b1226711-d01e-004a-05e9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:05:36.5794204Z" + "x-ms-version-id": "2021-08-11T19:42:21.7743839Z" }, - "ResponseBody": "wI4A3P/PPkzjN5uH4B3iNvPAIpHwglIoQFA3h8G5m7LPOWzC9SBA8lR/Vr4Glmc9bSKtEowxJD0815uvmLaKKpzot6awH0DTfy88cCuTIaro+hmfC4kmnhQvhh6EkVqd9CwiHd7AjU3h2pNc9LQSqLXxxp2d6x8SwhmSgZkiTu7Un3z/cQTLKG3LvTD1yapgHN1ok8u8AAkMD1vFLguzv4ylh1U4EjexJZ4w0S7uHfhvMWS8ursiF55y82GoBvlhF/6kUEJVKAmltm0sjC7bHfJiVvyn9wXRgm+2xR/VCB+kz7kvSsy2GglaFgNN9otwl9VvRrD8uSD5087SnmLp0K5Nh7x0q9MmqzzyTOACg4zkRi1KZcJvpxWZNnf95HumcEZU/27O++wBSZpzCm0/909C7Vg1n2rs3uCn23RcKMfATNuarYMdFUtASBwn+52nWT8nuvYjcdHbaCGOJx93pSDTs76RpUnMJNgN9FZOxOJC/4I1NG3QndoKvkRhj+0ryaL7VEjfFrP1WpUeFnx6jaQ/SyidQnGzAhbjh+YFapXq4Su0Um+aYujOP9nXsYddjzGgIkPFjYYxSFEx/I/N8PAANDRRxjo0pOk/zwKX21COhfe0ZUhSJVOkggoeaGZZAU7p131SDMn3a35ahr6Dmm0AonaXGIuorg/grEMvFjuC5c60rQPSPHgtvfnJ+J6VIOidHcXvwujDQSlucl+Fx1VC16Dwz+xpLWb9aVuS3rZwS4xakvl2kyLl8GzaZMkZp/WjhyD+pFD8NO9e8ViNMWJy/ifTKjVcy0N9C99/jsmd5MFm7laVcqY7Xl4JF6HKWL8JZ2WiRn2/R7vdgJlxfaYlwQ2WJkMM3YyBl8zXUrSis7IfdSZj+55EpqaauPEMyeG45FaUMzF8/YrZIK6w6PQHOszmUgd/wcZvUoCccSWadM7rH25eDoCBo3icitrvlL2ykn0lJnfaOCKPJOGw34tkPqzfxcmGqSxMZK6O4zbsf73C6d+odU5XEOdLzume0MPtN0suD870LOhR2MHIS1Tro6Uj7varvMldiLTiOttCrpTroazrvW/vzb32VpyNjsWSXypDeuLNQXqB0IcZEvENDios3aqoAOU2NCA4tWUt0PrvT9qx/jOyHV8xae3o1bvM6EdyYLEb6l9EDUbBlYsVVACNKsIWXA/2er9Kd5f4Tl9la8weu29I1GV7bPHt8IjUHBTtWqr4tYw3e+bx0HPHTL/mXCm+9pmQRFZdmu8eCYk3dluCC/O1bLZA5j+JVwPysyAxBpReFSV7XBZUmxqcGHFculoYRUDMMe9yfhBZB+xSa+fP7QL12GA1Bq7cYNGbo83OLJ2p2m3fZdWk7A==" + "ResponseBody": "wpLMOvaiHkdaUFmh067CFcCOANz/zz5M4zebh\u002BAd4jbzwCKR8IJSKEBQN4fBuZuyzzlswvUgQPJUf1a\u002BBpZnPW0irRKMMSQ9PNebr5i2iiqc6LemsB9A038vPHArkyGq6PoZnwuJJp4UL4YehJFanfQsIh3ewI1N4dqTXPS0Eqi18cadnesfEsIZkoGZIk7u1J98/3EEyyhty70w9cmqYBzdaJPLvAAJDA9bxS4Ls7\u002BMpYdVOBI3sSWeMNEu7h34bzFkvLq7IheecvNhqAb5YRf\u002BpFBCVSgJpbZtLIwu2x3yYlb8p/cF0YJvtsUf1QgfpM\u002B5L0rMthoJWhYDTfaLcJfVb0aw/Lkg\u002BdPO0p5i6dCuTYe8dKvTJqs88kzgAoOM5EYtSmXCb6cVmTZ3/eR7pnBGVP9uzvvsAUmacwptP/dPQu1YNZ9q7N7gp9t0XCjHwEzbmq2DHRVLQEgcJ/udp1k/J7r2I3HR22ghjicfd6Ug07O\u002BkaVJzCTYDfRWTsTiQv\u002BCNTRt0J3aCr5EYY/tK8mi\u002B1RI3xaz9VqVHhZ8eo2kP0sonUJxswIW44fmBWqV6uErtFJvmmLozj/Z17GHXY8xoCJDxY2GMUhRMfyPzfDwADQ0UcY6NKTpP88Cl9tQjoX3tGVIUiVTpIIKHmhmWQFO6dd9UgzJ92t\u002BWoa\u002Bg5ptAKJ2lxiLqK4P4KxDLxY7guXOtK0D0jx4Lb35yfielSDonR3F78Low0EpbnJfhcdVQteg8M/saS1m/Wlbkt62cEuMWpL5dpMi5fBs2mTJGaf1o4cg/qRQ/DTvXvFYjTFicv4n0yo1XMtDfQvff47JneTBZu5WlXKmO15eCRehyli/CWdlokZ9v0e73YCZcX2mJcENliZDDN2MgZfM11K0orOyH3UmY/ueRKammrjxDMnhuORWlDMxfP2K2SCusOj0BzrM5lIHf8HGb1KAnHElmnTO6x9uXg6AgaN4nIra75S9spJ9JSZ32jgijyThsN\u002BLZD6s38XJhqksTGSujuM27H\u002B9wunfqHVOVxDnS87pntDD7TdLLg/O9CzoUdjByEtU66OlI\u002B72q7zJXYi04jrbQq6U66Gs671v78299lacjY7Fkl8qQ3rizUF6gdCHGRLxDQ4qLN2qqADlNjQgOLVlLdD670/asf4zsh1fMWnt6NW7zOhHcmCxG\u002BpfRA1GwZWLFVQAjSrCFlwP9nq/SneX\u002BE5fZWvMHrtvSNRle2zx7fCI1BwU7Vqq\u002BLWMN3vm8dBzx0y/5lwpvvaZkERWXZrvHgmJN3ZbggvztWy2QOY/iVcD8rMgMQaUXhUle1wWVJsanBhxXLpaGEVAzDHvcn4QWQfsUmvnz\u002B0C9dhgNQau3A==" }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-91985eca-1ad7-6e5a-6192-4e2d50f5fc40/test-blob-3acc92c2-a2f6-471e-5a50-59a1d3aec215?comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-91985eca-1ad7-6e5a-6192-4e2d50f5fc40?comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-0298294cb8c0ae47b9e12bad18076e1c-a2faf433b8fb4e49-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4cc9ea8c-dc2a-c4d3-8085-503807052318", - "x-ms-date": "Fri, 04 Jun 2021 19:05:37 GMT", + "traceparent": "00-bd8fbf7b6a2e984abea52399f754994e-d3dc399519befa4a-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8c27d3bd-aae2-5e89-fd79-e6a5faafb883", + "x-ms-date": "Wed, 11 Aug 2021 19:42:22 GMT", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -216,78 +183,11 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:05:35 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "4cc9ea8c-dc2a-c4d3-8085-503807052318", + "Date": "Wed, 11 Aug 2021 19:42:21 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "8c27d3bd-aae2-5e89-fd79-e6a5faafb883", "x-ms-legal-hold": "false", - "x-ms-request-id": "8afc45b8-a01e-001a-0374-59a2b5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-91985eca-1ad7-6e5a-6192-4e2d50f5fc40?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-92d926f371a49f43bf1f0fc3639d76da-d5b6abfb4ef2a946-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "bed582b3-7c96-e09d-0063-0c5d595056f7", - "x-ms-date": "Fri, 04 Jun 2021 19:05:37 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:05:37 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "bed582b3-7c96-e09d-0063-0c5d595056f7", - "x-ms-request-id": "8afc45b9-a01e-001a-0474-59a2b5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-3acc92c2-a2f6-471e-5a50-59a1d3aec2152021-06-04T19:05:36.5794204ZtrueFri, 04 Jun 2021 19:05:36 GMTFri, 04 Jun 2021 19:05:36 GMT0x8D9278BBC7BA99C1024application/octet-streamCUneKVu5z0tz50oqnFtJWQ==BlockBlobHottrueunlockedavailabletruefalse" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-91985eca-1ad7-6e5a-6192-4e2d50f5fc40/test-blob-3acc92c2-a2f6-471e-5a50-59a1d3aec215", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-965402d632e23c4ba2db0d365a5889e9-96733ab5a020b14a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "85854342-6430-1c81-10ee-050a27f15347", - "x-ms-date": "Fri, 04 Jun 2021 19:05:37 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 19:05:37 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "85854342-6430-1c81-10ee-050a27f15347", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "8afc45ba-a01e-001a-0574-59a2b5000000", + "x-ms-request-id": "b1226753-d01e-004a-3de9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] @@ -295,6 +195,7 @@ ], "Variables": { "RandomSeed": "1873511178", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetLegalHoldAsyncAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetLegalHoldAsyncAsync.json index 9cf5612b67776..c74dbad389c0d 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetLegalHoldAsyncAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetLegalHoldAsyncAsync.json @@ -1,58 +1,49 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-e3433de5-196d-af0f-5341-ab5b0f818e88/test-blob-fb0c9dc6-56d3-3771-7f72-3be22dde2780", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-e3433de5-196d-af0f-5341-ab5b0f818e88", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-b0aaf06e60d7904190f00fcdfa6c025e-5469a83ed6d60c4a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-a962405a026ad3469fbab4d5c2b543bc-7569387473872942-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "8ee551be-f28e-3693-ea71-e2e30958433d", - "x-ms-date": "Fri, 04 Jun 2021 19:06:22 GMT", + "x-ms-client-request-id": "82fd5e23-5c7a-3625-5431-5b010d21fcde", + "x-ms-date": "Wed, 11 Aug 2021 19:42:35 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "RWamuL56AItB0KRmevmtHTU6DT5Rs8iPzAxj+94tgXUaKhap2tXKS5yBugOxCr2FxB6s8tDoLpKdFuyyFgStFE8uTE/jBEJfcMGh0PjF3cFP3ja/gI6kMvuDC8PpGDWY06azg75tosDbTIIORl6Z2DgrYjjO7ZPAiRlUX/h+dliMCf1SEVoD4jt25DQMluyd6jOLvbX9yuYT8vmkGELHXNYpgjxgRsbeKID8WAhetPMtt3TF87ijjj8WPx5hXsn4rohe4hOwPKRsrJU0AXHdtD4FdmDOAmgdhvP8Sganfcm2A6mAANHffXvQWEcjbo3NOIvgW+dpKqsfQFwfs/GdxS/Lfv3IXbNsJfnl/akh+hdmLhF6xiHiTdj9YL90v8qJM5MXV++PBdrYczXugy0C/kZEuITgIv4O6TElyv30+GUvW8oWCqIn1yg3olPr9Mmr+2F4LwdFqRCUCW6+ajvc5HvQvihi7PSkHOFbqYCrIvVoec6ce8he6rK6gQA0aW3tWr7XGzWhSA9t1BMl6QCQ6eZ4VvBtQGizcdR1qGrzb7Nzbk/B0wfAxjC+L6a1OQCyKZcauxJ8fxlVJKpgK6CkeWRfsXqxzxbeuI/ArhHC/jjTw37T2LSg9+81a69dX5uQGrVCVYeGAVqAOwODvNEIkyVyjGgh0aCwvrqLe2NngVj0MJNbgKiwTcEkUp2wHTodLdeJ6tIzb0kUkZbM+4X3Gbmrjow9rBN8wT+m/X4DAKF/bU6M3peFwMBKR+4S5FE8LTnjBY6u4IDEDCmTjHHKEJH1TI03ajoiJc7L8mUkatztas9EIPoS0Y3NyNJt8jNPfzZdHJjEBML+wN/A4+0bn6FNpSKhhvCW43sAaqJotTOafHMvx05EKWUNRmAaUe2fsSgwIEwRrflFxjkcw5oflQusJmd67NdTCHu8lD+Qe5GNYLh5OJXmic956QAVJ2bL7rBUbSuGJcVR3RfRVBi5tUqnj2PipV12xp2XAAPXPeEV8aaPOw1mBjrzKFp9FTS2vzS1bZgD6UhT3qeO7iTCeZ82u2JyKnk9QYko7n0C+LFo4UHOIc9IEghdO1xm1xcVMa66R1nSQ5S6eCwO2vrLUOb2JQ3j81jP7alZFO8c1mlxEr3OR7FYlp2sFKijOTcOkup2cLIKMj1W6lmveC6lnaHCncg8/Ak1nY9vN96vLLNyS4IEpma3Z99/d1xXqB5uB3YG4Jxv0pXhQNIimvtep76lPS2soPc7CzXovISs3fRxAC9oqEsXAnjsI2WTlMzkINCesWvxwmZ/y9VmhhYQNGPdsZrL9v5yjjq0wH2RqHZpA5u0DiyJgD7J6d12sHxi2+8CteMyGSrRKyIwPAHo7Q==", + "RequestBody": "xp0M\u002B9NWcTd/cjviLd4ngEVmpri\u002BegCLQdCkZnr5rR01Og0\u002BUbPIj8wMY/veLYF1GioWqdrVykucgboDsQq9hcQerPLQ6C6SnRbsshYErRRPLkxP4wRCX3DBodD4xd3BT942v4COpDL7gwvD6Rg1mNOms4O\u002BbaLA20yCDkZemdg4K2I4zu2TwIkZVF/4fnZYjAn9UhFaA\u002BI7duQ0DJbsneozi721/crmE/L5pBhCx1zWKYI8YEbG3iiA/FgIXrTzLbd0xfO4o44/Fj8eYV7J\u002BK6IXuITsDykbKyVNAFx3bQ\u002BBXZgzgJoHYbz/EoGp33JtgOpgADR33170FhHI26NzTiL4FvnaSqrH0BcH7PxncUvy379yF2zbCX55f2pIfoXZi4ResYh4k3Y/WC/dL/KiTOTF1fvjwXa2HM17oMtAv5GRLiE4CL\u002BDukxJcr99PhlL1vKFgqiJ9coN6JT6/TJq/theC8HRakQlAluvmo73OR70L4oYuz0pBzhW6mAqyL1aHnOnHvIXuqyuoEANGlt7Vq\u002B1xs1oUgPbdQTJekAkOnmeFbwbUBos3HUdahq82\u002Bzc25PwdMHwMYwvi\u002BmtTkAsimXGrsSfH8ZVSSqYCugpHlkX7F6sc8W3riPwK4Rwv4408N\u002B09i0oPfvNWuvXV\u002BbkBq1QlWHhgFagDsDg7zRCJMlcoxoIdGgsL66i3tjZ4FY9DCTW4CosE3BJFKdsB06HS3XierSM29JFJGWzPuF9xm5q46MPawTfME/pv1\u002BAwChf21OjN6XhcDASkfuEuRRPC054wWOruCAxAwpk4xxyhCR9UyNN2o6IiXOy/JlJGrc7WrPRCD6EtGNzcjSbfIzT382XRyYxATC/sDfwOPtG5\u002BhTaUioYbwluN7AGqiaLUzmnxzL8dORCllDUZgGlHtn7EoMCBMEa35RcY5HMOaH5ULrCZneuzXUwh7vJQ/kHuRjWC4eTiV5onPeekAFSdmy\u002B6wVG0rhiXFUd0X0VQYubVKp49j4qVddsadlwAD1z3hFfGmjzsNZgY68yhafRU0tr80tW2YA\u002BlIU96nju4kwnmfNrticip5PUGJKO59AvixaOFBziHPSBIIXTtcZtcXFTGuukdZ0kOUungsDtr6y1Dm9iUN4/NYz\u002B2pWRTvHNZpcRK9zkexWJadrBSoozk3DpLqdnCyCjI9VupZr3gupZ2hwp3IPPwJNZ2PbzferyyzckuCBKZmt2fff3dcV6gebgd2BuCcb9KV4UDSIpr7Xqe\u002BpT0trKD3Ows16LyErN30cQAvaKhLFwJ47CNlk5TM5CDQnrFr8cJmf8vVZoYWEDRj3bGay/b\u002Bco46tMB9kah2aQObtA4siYA\u002ByenddrB8Yg==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "MRWn8wKmB6BSME+/n/hiKw==", - "Date": "Fri, 04 Jun 2021 19:06:21 GMT", - "ETag": "\"0x8D9278BD781A778\"", - "Last-Modified": "Fri, 04 Jun 2021 19:06:21 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8ee551be-f28e-3693-ea71-e2e30958433d", - "x-ms-content-crc64": "o8IDb+uEFVg=", - "x-ms-request-id": "fefabc5d-701e-000f-4174-59d0c5000000", + "Content-Length": "0", + "Content-MD5": "MRnQ14DidAbppBB1fUGCPw==", + "Date": "Wed, 11 Aug 2021 19:42:35 GMT", + "ETag": "\u00220x8D95D002B66EB7D\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:35 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "82fd5e23-5c7a-3625-5431-5b010d21fcde", + "x-ms-content-crc64": "m7gYpGm\u002BzpI=", + "x-ms-request-id": "b1229c34-d01e-004a-6ee9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:06:21.9171704Z" + "x-ms-version-id": "2021-08-11T19:42:35.9184253Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-e3433de5-196d-af0f-5341-ab5b0f818e88/test-blob-fb0c9dc6-56d3-3771-7f72-3be22dde2780?comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-e3433de5-196d-af0f-5341-ab5b0f818e88?comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-92c122f59acc424883ec38eb8d5a6b27-b51bae804bda684f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "eb72442f-5a1b-305e-cac6-970979422dfb", - "x-ms-date": "Fri, 04 Jun 2021 19:06:22 GMT", + "traceparent": "00-c20dd6bedb00d04493005018b7b899e8-bb5aa0ba5aa15a4c-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "17bafbe0-f9b3-7ee8-c9cb-61b1d6171daf", + "x-ms-date": "Wed, 11 Aug 2021 19:42:35 GMT", "x-ms-legal-hold": "true", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -61,31 +52,25 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:06:21 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "eb72442f-5a1b-305e-cac6-970979422dfb", + "Date": "Wed, 11 Aug 2021 19:42:35 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "17bafbe0-f9b3-7ee8-c9cb-61b1d6171daf", "x-ms-legal-hold": "true", - "x-ms-request-id": "fefabc5f-701e-000f-4374-59d0c5000000", + "x-ms-request-id": "b1229ca9-d01e-004a-55e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-e3433de5-196d-af0f-5341-ab5b0f818e88/test-blob-fb0c9dc6-56d3-3771-7f72-3be22dde2780", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-e3433de5-196d-af0f-5341-ab5b0f818e88", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-12d058da21c2ad43a545c4f162e564bd-6a1a944f85dbed4f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c4b33254-58e6-8521-9c89-4dec61df0486", - "x-ms-date": "Fri, 04 Jun 2021 19:06:22 GMT", + "traceparent": "00-18595938abf5e949abc20c2d30f16f54-bfe18a90ce3ab24d-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "11211eed-e467-c52b-6967-c4c391e160d3", + "x-ms-date": "Wed, 11 Aug 2021 19:42:36 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -94,43 +79,37 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "MRWn8wKmB6BSME+/n/hiKw==", + "Content-MD5": "MRnQ14DidAbppBB1fUGCPw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 19:06:21 GMT", - "ETag": "\"0x8D9278BD781A778\"", - "Last-Modified": "Fri, 04 Jun 2021 19:06:21 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:35 GMT", + "ETag": "\u00220x8D95D002B66EB7D\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:35 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "c4b33254-58e6-8521-9c89-4dec61df0486", - "x-ms-creation-time": "Fri, 04 Jun 2021 19:06:21 GMT", + "x-ms-client-request-id": "11211eed-e467-c52b-6967-c4c391e160d3", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:35 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "fefabc60-701e-000f-4474-59d0c5000000", + "x-ms-request-id": "b1229cf5-d01e-004a-1ce9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:06:21.9171704Z" + "x-ms-version-id": "2021-08-11T19:42:35.9184253Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-e3433de5-196d-af0f-5341-ab5b0f818e88?restype=container&comp=list&include=Legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111?restype=container\u0026comp=list\u0026prefix=test-blob-e3433de5-196d-af0f-5341-ab5b0f818e88\u0026include=Legalhold", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "46b4c465-688e-9515-fc9b-75de973e6389", - "x-ms-date": "Fri, 04 Jun 2021 19:06:22 GMT", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b7c4659e-0bf6-4b48-19ad-82b4969b9fe9", + "x-ms-date": "Wed, 11 Aug 2021 19:42:36 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -138,31 +117,25 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:21 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:35 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "46b4c465-688e-9515-fc9b-75de973e6389", - "x-ms-request-id": "fefabc63-701e-000f-4674-59d0c5000000", + "x-ms-client-request-id": "b7c4659e-0bf6-4b48-19ad-82b4969b9fe9", + "x-ms-request-id": "b1229d2d-d01e-004a-4ee9-8e693e000000", "x-ms-version": "2020-10-02" }, - "ResponseBody": "test-blob-fb0c9dc6-56d3-3771-7f72-3be22dde27802021-06-04T19:06:21.9171704ZtrueFri, 04 Jun 2021 19:06:21 GMTFri, 04 Jun 2021 19:06:21 GMT0x8D9278BD781A7781024application/octet-streamMRWn8wKmB6BSME+/n/hiKw==BlockBlobHottrueunlockedavailabletruetrue" + "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://kasobolcanadanetoauth.blob.core.windows.net/\u0022 ContainerName=\u002290185bea-b711-4aae-a98f-bb14f2a40111\u0022\u003E\u003CPrefix\u003Etest-blob-e3433de5-196d-af0f-5341-ab5b0f818e88\u003C/Prefix\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Etest-blob-e3433de5-196d-af0f-5341-ab5b0f818e88\u003C/Name\u003E\u003CVersionId\u003E2021-08-11T19:42:35.9184253Z\u003C/VersionId\u003E\u003CIsCurrentVersion\u003Etrue\u003C/IsCurrentVersion\u003E\u003CProperties\u003E\u003CCreation-Time\u003EWed, 11 Aug 2021 19:42:35 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EWed, 11 Aug 2021 19:42:35 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8D95D002B66EB7D\u003C/Etag\u003E\u003CContent-Length\u003E1024\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003EMRnQ14DidAbppBB1fUGCPw==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003CLegalHold\u003Etrue\u003C/LegalHold\u003E\u003C/Properties\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-e3433de5-196d-af0f-5341-ab5b0f818e88/test-blob-fb0c9dc6-56d3-3771-7f72-3be22dde2780", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-e3433de5-196d-af0f-5341-ab5b0f818e88", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-039d56968409014a909eba33f1f61b98-89c313d8660ef74a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "9d8663ea-bd2a-35f7-502e-ba5a956ab4da", - "x-ms-date": "Fri, 04 Jun 2021 19:06:22 GMT", + "traceparent": "00-f0164b639d1e46489395f1879a3a1ee6-eac836a016d3a54c-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2b243d62-a81d-49dd-ea68-ab39d56def00", + "x-ms-date": "Wed, 11 Aug 2021 19:42:36 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -171,42 +144,36 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "MRWn8wKmB6BSME+/n/hiKw==", + "Content-MD5": "MRnQ14DidAbppBB1fUGCPw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 19:06:21 GMT", - "ETag": "\"0x8D9278BD781A778\"", - "Last-Modified": "Fri, 04 Jun 2021 19:06:21 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:35 GMT", + "ETag": "\u00220x8D95D002B66EB7D\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:35 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "9d8663ea-bd2a-35f7-502e-ba5a956ab4da", - "x-ms-creation-time": "Fri, 04 Jun 2021 19:06:21 GMT", + "x-ms-client-request-id": "2b243d62-a81d-49dd-ea68-ab39d56def00", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:35 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "fefabc64-701e-000f-4774-59d0c5000000", + "x-ms-request-id": "b1229d6c-d01e-004a-01e9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T19:06:21.9171704Z" + "x-ms-version-id": "2021-08-11T19:42:35.9184253Z" }, - "ResponseBody": "RWamuL56AItB0KRmevmtHTU6DT5Rs8iPzAxj+94tgXUaKhap2tXKS5yBugOxCr2FxB6s8tDoLpKdFuyyFgStFE8uTE/jBEJfcMGh0PjF3cFP3ja/gI6kMvuDC8PpGDWY06azg75tosDbTIIORl6Z2DgrYjjO7ZPAiRlUX/h+dliMCf1SEVoD4jt25DQMluyd6jOLvbX9yuYT8vmkGELHXNYpgjxgRsbeKID8WAhetPMtt3TF87ijjj8WPx5hXsn4rohe4hOwPKRsrJU0AXHdtD4FdmDOAmgdhvP8Sganfcm2A6mAANHffXvQWEcjbo3NOIvgW+dpKqsfQFwfs/GdxS/Lfv3IXbNsJfnl/akh+hdmLhF6xiHiTdj9YL90v8qJM5MXV++PBdrYczXugy0C/kZEuITgIv4O6TElyv30+GUvW8oWCqIn1yg3olPr9Mmr+2F4LwdFqRCUCW6+ajvc5HvQvihi7PSkHOFbqYCrIvVoec6ce8he6rK6gQA0aW3tWr7XGzWhSA9t1BMl6QCQ6eZ4VvBtQGizcdR1qGrzb7Nzbk/B0wfAxjC+L6a1OQCyKZcauxJ8fxlVJKpgK6CkeWRfsXqxzxbeuI/ArhHC/jjTw37T2LSg9+81a69dX5uQGrVCVYeGAVqAOwODvNEIkyVyjGgh0aCwvrqLe2NngVj0MJNbgKiwTcEkUp2wHTodLdeJ6tIzb0kUkZbM+4X3Gbmrjow9rBN8wT+m/X4DAKF/bU6M3peFwMBKR+4S5FE8LTnjBY6u4IDEDCmTjHHKEJH1TI03ajoiJc7L8mUkatztas9EIPoS0Y3NyNJt8jNPfzZdHJjEBML+wN/A4+0bn6FNpSKhhvCW43sAaqJotTOafHMvx05EKWUNRmAaUe2fsSgwIEwRrflFxjkcw5oflQusJmd67NdTCHu8lD+Qe5GNYLh5OJXmic956QAVJ2bL7rBUbSuGJcVR3RfRVBi5tUqnj2PipV12xp2XAAPXPeEV8aaPOw1mBjrzKFp9FTS2vzS1bZgD6UhT3qeO7iTCeZ82u2JyKnk9QYko7n0C+LFo4UHOIc9IEghdO1xm1xcVMa66R1nSQ5S6eCwO2vrLUOb2JQ3j81jP7alZFO8c1mlxEr3OR7FYlp2sFKijOTcOkup2cLIKMj1W6lmveC6lnaHCncg8/Ak1nY9vN96vLLNyS4IEpma3Z99/d1xXqB5uB3YG4Jxv0pXhQNIimvtep76lPS2soPc7CzXovISs3fRxAC9oqEsXAnjsI2WTlMzkINCesWvxwmZ/y9VmhhYQNGPdsZrL9v5yjjq0wH2RqHZpA5u0DiyJgD7J6d12sHxi2+8CteMyGSrRKyIwPAHo7Q==" + "ResponseBody": "xp0M\u002B9NWcTd/cjviLd4ngEVmpri\u002BegCLQdCkZnr5rR01Og0\u002BUbPIj8wMY/veLYF1GioWqdrVykucgboDsQq9hcQerPLQ6C6SnRbsshYErRRPLkxP4wRCX3DBodD4xd3BT942v4COpDL7gwvD6Rg1mNOms4O\u002BbaLA20yCDkZemdg4K2I4zu2TwIkZVF/4fnZYjAn9UhFaA\u002BI7duQ0DJbsneozi721/crmE/L5pBhCx1zWKYI8YEbG3iiA/FgIXrTzLbd0xfO4o44/Fj8eYV7J\u002BK6IXuITsDykbKyVNAFx3bQ\u002BBXZgzgJoHYbz/EoGp33JtgOpgADR33170FhHI26NzTiL4FvnaSqrH0BcH7PxncUvy379yF2zbCX55f2pIfoXZi4ResYh4k3Y/WC/dL/KiTOTF1fvjwXa2HM17oMtAv5GRLiE4CL\u002BDukxJcr99PhlL1vKFgqiJ9coN6JT6/TJq/theC8HRakQlAluvmo73OR70L4oYuz0pBzhW6mAqyL1aHnOnHvIXuqyuoEANGlt7Vq\u002B1xs1oUgPbdQTJekAkOnmeFbwbUBos3HUdahq82\u002Bzc25PwdMHwMYwvi\u002BmtTkAsimXGrsSfH8ZVSSqYCugpHlkX7F6sc8W3riPwK4Rwv4408N\u002B09i0oPfvNWuvXV\u002BbkBq1QlWHhgFagDsDg7zRCJMlcoxoIdGgsL66i3tjZ4FY9DCTW4CosE3BJFKdsB06HS3XierSM29JFJGWzPuF9xm5q46MPawTfME/pv1\u002BAwChf21OjN6XhcDASkfuEuRRPC054wWOruCAxAwpk4xxyhCR9UyNN2o6IiXOy/JlJGrc7WrPRCD6EtGNzcjSbfIzT382XRyYxATC/sDfwOPtG5\u002BhTaUioYbwluN7AGqiaLUzmnxzL8dORCllDUZgGlHtn7EoMCBMEa35RcY5HMOaH5ULrCZneuzXUwh7vJQ/kHuRjWC4eTiV5onPeekAFSdmy\u002B6wVG0rhiXFUd0X0VQYubVKp49j4qVddsadlwAD1z3hFfGmjzsNZgY68yhafRU0tr80tW2YA\u002BlIU96nju4kwnmfNrticip5PUGJKO59AvixaOFBziHPSBIIXTtcZtcXFTGuukdZ0kOUungsDtr6y1Dm9iUN4/NYz\u002B2pWRTvHNZpcRK9zkexWJadrBSoozk3DpLqdnCyCjI9VupZr3gupZ2hwp3IPPwJNZ2PbzferyyzckuCBKZmt2fff3dcV6gebgd2BuCcb9KV4UDSIpr7Xqe\u002BpT0trKD3Ows16LyErN30cQAvaKhLFwJ47CNlk5TM5CDQnrFr8cJmf8vVZoYWEDRj3bGay/b\u002Bco46tMB9kah2aQObtA4siYA\u002ByenddrB8Yg==" }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-e3433de5-196d-af0f-5341-ab5b0f818e88/test-blob-fb0c9dc6-56d3-3771-7f72-3be22dde2780?comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-e3433de5-196d-af0f-5341-ab5b0f818e88?comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-2d6dc0df6c043542a4b60e7e602a35fc-0030773b90a2b54e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "33f375ab-c6b7-a45f-45ef-dbefee82b380", - "x-ms-date": "Fri, 04 Jun 2021 19:06:22 GMT", + "traceparent": "00-66cc06c36389bc43b6a7124b7bd99d44-59068d09c15db44b-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "5851f849-7376-bccb-e66b-5c26bcdbc08f", + "x-ms-date": "Wed, 11 Aug 2021 19:42:36 GMT", "x-ms-legal-hold": "false", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -215,77 +182,11 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 19:06:21 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "33f375ab-c6b7-a45f-45ef-dbefee82b380", + "Date": "Wed, 11 Aug 2021 19:42:35 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "5851f849-7376-bccb-e66b-5c26bcdbc08f", "x-ms-legal-hold": "false", - "x-ms-request-id": "fefabc65-701e-000f-4874-59d0c5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-e3433de5-196d-af0f-5341-ab5b0f818e88?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "20af2b6e-8076-8322-98ac-138798dcce63", - "x-ms-date": "Fri, 04 Jun 2021 19:06:23 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:21 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "20af2b6e-8076-8322-98ac-138798dcce63", - "x-ms-request-id": "fefabc67-701e-000f-4a74-59d0c5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-fb0c9dc6-56d3-3771-7f72-3be22dde27802021-06-04T19:06:21.9171704ZtrueFri, 04 Jun 2021 19:06:21 GMTFri, 04 Jun 2021 19:06:21 GMT0x8D9278BD781A7781024application/octet-streamMRWn8wKmB6BSME+/n/hiKw==BlockBlobHottrueunlockedavailabletruefalse" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-e3433de5-196d-af0f-5341-ab5b0f818e88/test-blob-fb0c9dc6-56d3-3771-7f72-3be22dde2780", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-67f6e1b7ac0a87429bfa88906ad950e7-aa015744a3602b47-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "c2816676-93d3-3309-ae6c-446f8301debb", - "x-ms-date": "Fri, 04 Jun 2021 19:06:23 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 19:06:21 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "c2816676-93d3-3309-ae6c-446f8301debb", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "fefabc68-701e-000f-4b74-59d0c5000000", + "x-ms-request-id": "b1229dab-d01e-004a-37e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [] @@ -293,6 +194,7 @@ ], "Variables": { "RandomSeed": "1700983911", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetLegalHoldAsync_Error.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetLegalHoldAsync_Error.json index b07c288410a3f..7f63584747af0 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetLegalHoldAsync_Error.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetLegalHoldAsync_Error.json @@ -1,18 +1,15 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-e46a497c-133e-505e-a928-6244562eadbb/test-blob-35573bcd-a8ed-a4da-ce8d-83f8bce84dd4?comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-e46a497c-133e-505e-a928-6244562eadbb?comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-ee6f85941383754ba1f67bb1ed02f39a-970d38dae6ff8240-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "93ab7c61-2b1a-d4db-6ec6-16b0906693c1", - "x-ms-date": "Fri, 04 Jun 2021 19:05:39 GMT", + "traceparent": "00-704dfdb3dfcd1742a643b508bf3d0e76-4ff514ceccc75948-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2508d45f-d887-cc6b-39f8-8b8d7fe3b5de", + "x-ms-date": "Wed, 11 Aug 2021 19:42:22 GMT", "x-ms-legal-hold": "true", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -22,58 +19,24 @@ "ResponseHeaders": { "Content-Length": "216", "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:05:38 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "93ab7c61-2b1a-d4db-6ec6-16b0906693c1", + "Date": "Wed, 11 Aug 2021 19:42:21 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "2508d45f-d887-cc6b-39f8-8b8d7fe3b5de", "x-ms-error-code": "BlobNotFound", - "x-ms-request-id": "8afc45be-a01e-001a-0874-59a2b5000000", + "x-ms-request-id": "b12267bf-d01e-004a-11e9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [ - "\n", - "BlobNotFoundThe specified blob does not exist.\n", - "RequestId:8afc45be-a01e-001a-0874-59a2b5000000\n", - "Time:2021-06-04T19:05:38.7819790Z" + "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\n", + "\u003CError\u003E\u003CCode\u003EBlobNotFound\u003C/Code\u003E\u003CMessage\u003EThe specified blob does not exist.\n", + "RequestId:b12267bf-d01e-004a-11e9-8e693e000000\n", + "Time:2021-08-11T19:42:22.2278075Z\u003C/Message\u003E\u003C/Error\u003E" ] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-e46a497c-133e-505e-a928-6244562eadbb?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-27c4cd807656a849997e28b2cce49422-a3a5ce152f40fc46-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "3f97a4d7-ba3d-33b9-f934-b6c1c2bb3cd3", - "x-ms-date": "Fri, 04 Jun 2021 19:05:39 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:05:38 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3f97a4d7-ba3d-33b9-f934-b6c1c2bb3cd3", - "x-ms-request-id": "8afc45bf-a01e-001a-0974-59a2b5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "" } ], "Variables": { "RandomSeed": "1380357212", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetLegalHoldAsync_ErrorAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetLegalHoldAsync_ErrorAsync.json index 68015a284c669..15b752b7f75c5 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetLegalHoldAsync_ErrorAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SetLegalHoldAsync_ErrorAsync.json @@ -1,18 +1,15 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-98bbcd3f-ac02-2c58-8e66-108f66a1243c/test-blob-62bd8c39-d588-01fb-4744-9d499c172b3a?comp=legalhold", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-98bbcd3f-ac02-2c58-8e66-108f66a1243c?comp=legalhold", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-39a464ee8cef6044b8b72730a8b1bbae-06ec77fcf263fa4f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "bf9b6279-2c21-6a7b-d2ba-51bd0f0f9076", - "x-ms-date": "Fri, 04 Jun 2021 19:06:25 GMT", + "traceparent": "00-82f5c95bd03a754da0355c098e6bcf31-7b36d33d13dbd342-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1a234d9f-e75e-0d2d-cae5-3dece881a87b", + "x-ms-date": "Wed, 11 Aug 2021 19:42:36 GMT", "x-ms-legal-hold": "true", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -22,57 +19,24 @@ "ResponseHeaders": { "Content-Length": "216", "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:23 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "bf9b6279-2c21-6a7b-d2ba-51bd0f0f9076", + "Date": "Wed, 11 Aug 2021 19:42:35 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "1a234d9f-e75e-0d2d-cae5-3dece881a87b", "x-ms-error-code": "BlobNotFound", - "x-ms-request-id": "fefabc7d-701e-000f-5974-59d0c5000000", + "x-ms-request-id": "b1229de9-d01e-004a-6ce9-8e693e000000", "x-ms-version": "2020-10-02" }, "ResponseBody": [ - "\n", - "BlobNotFoundThe specified blob does not exist.\n", - "RequestId:fefabc7d-701e-000f-5974-59d0c5000000\n", - "Time:2021-06-04T19:06:24.3311390Z" + "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\n", + "\u003CError\u003E\u003CCode\u003EBlobNotFound\u003C/Code\u003E\u003CMessage\u003EThe specified blob does not exist.\n", + "RequestId:b1229de9-d01e-004a-6ce9-8e693e000000\n", + "Time:2021-08-11T19:42:36.3548692Z\u003C/Message\u003E\u003C/Error\u003E" ] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-98bbcd3f-ac02-2c58-8e66-108f66a1243c?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "39cf219c-6c7b-7218-d2b8-48a4966ffdbb", - "x-ms-date": "Fri, 04 Jun 2021 19:06:25 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 19:06:23 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "39cf219c-6c7b-7218-d2b8-48a4966ffdbb", - "x-ms-request-id": "fefabc7e-701e-000f-5a74-59d0c5000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "" } ], "Variables": { "RandomSeed": "1302795633", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/StartCopyFromUri_ImmutableStorageWithVersioning.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/StartCopyFromUri_ImmutableStorageWithVersioning.json index 84285ce54ccef..a579c84f7f7fb 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/StartCopyFromUri_ImmutableStorageWithVersioning.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/StartCopyFromUri_ImmutableStorageWithVersioning.json @@ -1,61 +1,52 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-29d427af-8b41-13f8-487b-2d3fe9903352/test-blob-77620397-ac40-8741-db9a-6ca999eab53d", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-29d427af-8b41-13f8-487b-2d3fe9903352", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-596af7d4825ec64d8a115c70fce8aa94-6ccad33cdc753345-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-b9c2c6c83c217244894f03253a81bea3-85c0b29121ae114e-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "e89c7398-9b0c-f483-dcd9-627cfb78d9f3", - "x-ms-date": "Fri, 04 Jun 2021 18:41:37 GMT", + "x-ms-client-request-id": "aefc53fc-f75e-d37b-3f07-d52386cadee7", + "x-ms-date": "Wed, 11 Aug 2021 19:42:22 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "wUa24Hmy843Ar5HPbyTJHuB3WcfBBA4C5k1Oph5OeV3G8H6i2VLZ5RDVtpAbchi20U7JIZHue703tPkrZExucjUzCH+mJ0WOnXS27E1+53Q1l9XQhVjM13TAaiVZrYDEZ0Ra52mYEKkJO4MdN45vucyF9s12nezdZzAK5bwgNPDz8YUJIwALnIYrx0rUr5/lUbFY1LazTslXfX84jivt6QaTKkYJZZbMeVpGStaiCbiRJJMLx2A5P6O8sqaA0g1bPt5EQIVZ3OsajFpcbQPytHPHp2qX4iGlWeqjTbPwS6dN6gz4XskzN0io8DoG3dKfyf0yuSujxFu8nuaato43KkGzD4L3+laqk28i7/Hmn3wYA4S2vZF7qSawO8DimIG5cMb5U85PqM6nhyW7gdRq1f9qgrIKgWyvN2VbRr6WyPvuaH8r7UyuyFu1DzVsvyhSRmXAdxbOru5ZShto82EQEb8qzRhVPuizvLlWVXI2Qnc9CQBZ1VDkH7mQ0qMwRdX6pf12QvIP/Qd9Dbtdd1l8IgekK+lgtztvRa1fxGxFgnbkXLB0wACFLQz428eUh6hgFK+bjBnrmu7CB/1FsDibOIpEeBupB2IHH/7dZ9t02r0F/6+8qfZd+MLCsrgDP33TXaI8Tw6Ntg1MlG0bDTISTiw/P7GI3o+U539Y51WpBN+BCQo4N4queEiicBSJQeuPr2SMw//LS34TqGiONM+3opCNmgQn2RaikMdo5W56CqWUyTfwHUDftb6MJI8iIEN5682E+6fmZ9VN6TM4Y2UPmZ3D+WuXxoVPruVFm7WHgHCD7/qh9Q79rmFiozMMp1FZfIvxXybY4iRHNE3CoMwgxmnDtHRqbqOOxUsJNCNRQgeT7B8pliFJqwzWWcDBOw2VQd3KSfPd7w3nYpnaz60A9vFFL7Ss9jBIeQlnkxXjzYk+dPJGhvkUtfwSQjOHbtxe1WLOewxY6EqtgtDpdlv4BJUPnFq6um/4MXm3mrT8wAotCL2yFFF95YunmQQoKj+gGT6dd9KBpBvz1kqToE6WsMHGvG2eRe9EkrbOEiFr0Ac5F4B2X0k4q2Sivz4H6kU9EelCYm3RAtROWeQbspH6hwZCWYnOIFF4jREJ/IaxPKhxkQE4KG2ZZxSsJwVkHPjTqDc3xJC7bvGXytRcyAZOnBw8qSGPwV+YqPF0IvhLFHEYNVNOeXgXtiIQoF2YPZ8OXovoJ3PXQ+bXnxufRkz4TLZjQ5Ky/yKkJfP+fiEBAGtSZsRtY+z+QfJtdtpcd2/VGFSnNfoMW15oRAGA2MXE1p6wTeCIi+nJZQGgRIhIR66DKWbNWspxRQplBR7rfmksqKA7rCqPTI1r3c/4axbVIA==", + "RequestBody": "lwNid0CsQYfbmmypmeq1PcFGtuB5svONwK\u002BRz28kyR7gd1nHwQQOAuZNTqYeTnldxvB\u002BotlS2eUQ1baQG3IYttFOySGR7nu9N7T5K2RMbnI1Mwh/pidFjp10tuxNfud0NZfV0IVYzNd0wGolWa2AxGdEWudpmBCpCTuDHTeOb7nMhfbNdp3s3WcwCuW8IDTw8/GFCSMAC5yGK8dK1K\u002Bf5VGxWNS2s07JV31/OI4r7ekGkypGCWWWzHlaRkrWogm4kSSTC8dgOT\u002BjvLKmgNINWz7eRECFWdzrGoxaXG0D8rRzx6dql\u002BIhpVnqo02z8EunTeoM\u002BF7JMzdIqPA6Bt3Sn8n9Mrkro8RbvJ7mmraONypBsw\u002BC9/pWqpNvIu/x5p98GAOEtr2Re6kmsDvA4piBuXDG\u002BVPOT6jOp4clu4HUatX/aoKyCoFsrzdlW0a\u002Blsj77mh/K\u002B1MrshbtQ81bL8oUkZlwHcWzq7uWUobaPNhEBG/Ks0YVT7os7y5VlVyNkJ3PQkAWdVQ5B\u002B5kNKjMEXV\u002BqX9dkLyD/0HfQ27XXdZfCIHpCvpYLc7b0WtX8RsRYJ25FywdMAAhS0M\u002BNvHlIeoYBSvm4wZ65ruwgf9RbA4mziKRHgbqQdiBx/\u002B3WfbdNq9Bf\u002BvvKn2XfjCwrK4Az99012iPE8OjbYNTJRtGw0yEk4sPz\u002BxiN6PlOd/WOdVqQTfgQkKODeKrnhIonAUiUHrj69kjMP/y0t\u002BE6hojjTPt6KQjZoEJ9kWopDHaOVuegqllMk38B1A37W\u002BjCSPIiBDeevNhPun5mfVTekzOGNlD5mdw/lrl8aFT67lRZu1h4Bwg\u002B/6ofUO/a5hYqMzDKdRWXyL8V8m2OIkRzRNwqDMIMZpw7R0am6jjsVLCTQjUUIHk\u002BwfKZYhSasM1lnAwTsNlUHdyknz3e8N52KZ2s\u002BtAPbxRS\u002B0rPYwSHkJZ5MV482JPnTyRob5FLX8EkIzh27cXtViznsMWOhKrYLQ6XZb\u002BASVD5xaurpv\u002BDF5t5q0/MAKLQi9shRRfeWLp5kEKCo/oBk\u002BnXfSgaQb89ZKk6BOlrDBxrxtnkXvRJK2zhIha9AHOReAdl9JOKtkor8\u002BB\u002BpFPRHpQmJt0QLUTlnkG7KR\u002BocGQlmJziBReI0RCfyGsTyocZEBOChtmWcUrCcFZBz406g3N8SQu27xl8rUXMgGTpwcPKkhj8FfmKjxdCL4SxRxGDVTTnl4F7YiEKBdmD2fDl6L6Cdz10Pm158bn0ZM\u002BEy2Y0OSsv8ipCXz/n4hAQBrUmbEbWPs/kHybXbaXHdv1RhUpzX6DFteaEQBgNjFxNaesE3giIvpyWUBoESISEeugylmzVrKcUUKZQUe635pLA==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "wOkocbnI4QUQlRIqQssAtg==", - "Date": "Fri, 04 Jun 2021 18:41:36 GMT", - "ETag": "\"0x8D927886254853A\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e89c7398-9b0c-f483-dcd9-627cfb78d9f3", - "x-ms-content-crc64": "qqgMsZR1Kso=", - "x-ms-request-id": "16dfee31-301e-0008-2071-5976b8000000", + "Content-Length": "0", + "Content-MD5": "Nv0EkhjnWqBadmu8Rj9GAQ==", + "Date": "Wed, 11 Aug 2021 19:42:21 GMT", + "ETag": "\u00220x8D95D002356291F\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:22 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "aefc53fc-f75e-d37b-3f07-d52386cadee7", + "x-ms-content-crc64": "Z7DRe4ZEdnE=", + "x-ms-request-id": "b122681d-d01e-004a-61e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:36.8377658Z" + "x-ms-version-id": "2021-08-11T19:42:22.3868191Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-29d427af-8b41-13f8-487b-2d3fe9903352/test-blob-9722e48f-ba81-b1ce-2467-6c23ba2907a0", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-e89c7398-9b0c-f483-dcd9-627cfb78d9f3", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-58dd2025a3d2dc4484e6d97d5421dfee-ae9683e5aedb1b4a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "a193e12d-46a7-dd65-a5eb-c3a42e6039b2", - "x-ms-copy-source": "https://seanoauthstage.blob.core.windows.net/test-container-29d427af-8b41-13f8-487b-2d3fe9903352/test-blob-77620397-ac40-8741-db9a-6ca999eab53d", - "x-ms-date": "Fri, 04 Jun 2021 18:41:37 GMT", + "traceparent": "00-1c718be61765d24599dac527d819a61d-9764d336267ae04f-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f860e8ff-ed7a-6014-d008-d28495ffd8c6", + "x-ms-copy-source": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-29d427af-8b41-13f8-487b-2d3fe9903352", + "x-ms-date": "Wed, 11 Aug 2021 19:42:22 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:37 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:22 GMT", "x-ms-legal-hold": "true", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -63,35 +54,29 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:36 GMT", - "ETag": "\"0x8D9278862601C42\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "a193e12d-46a7-dd65-a5eb-c3a42e6039b2", - "x-ms-copy-id": "aba1f9e7-79e3-4a88-ad47-c45cd7243e24", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:21 GMT", + "ETag": "\u00220x8D95D0023640E59\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:22 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "f860e8ff-ed7a-6014-d008-d28495ffd8c6", + "x-ms-copy-id": "1c2c5c1c-ffa7-4004-bcad-5454a3ed0e7f", "x-ms-copy-status": "success", - "x-ms-request-id": "16dfee33-301e-0008-2171-5976b8000000", + "x-ms-request-id": "b12268d7-d01e-004a-7ee9-8e693e000000", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:36.9137218Z" + "x-ms-version-id": "2021-08-11T19:42:22.4778841Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-29d427af-8b41-13f8-487b-2d3fe9903352/test-blob-9722e48f-ba81-b1ce-2467-6c23ba2907a0", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-e89c7398-9b0c-f483-dcd9-627cfb78d9f3", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "d8f5a68f-6596-b8f9-8282-538f2a6f316f", - "x-ms-date": "Fri, 04 Jun 2021 18:41:37 GMT", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "127cc1d2-e118-a279-d0c2-c779e8491b25", + "x-ms-date": "Wed, 11 Aug 2021 19:42:22 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -100,51 +85,45 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "wOkocbnI4QUQlRIqQssAtg==", + "Content-MD5": "Nv0EkhjnWqBadmu8Rj9GAQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 18:41:36 GMT", - "ETag": "\"0x8D9278862601C42\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:22 GMT", + "ETag": "\u00220x8D95D0023640E59\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:22 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "d8f5a68f-6596-b8f9-8282-538f2a6f316f", - "x-ms-copy-completion-time": "Fri, 04 Jun 2021 18:41:36 GMT", - "x-ms-copy-id": "aba1f9e7-79e3-4a88-ad47-c45cd7243e24", + "x-ms-client-request-id": "127cc1d2-e118-a279-d0c2-c779e8491b25", + "x-ms-copy-completion-time": "Wed, 11 Aug 2021 19:42:22 GMT", + "x-ms-copy-id": "1c2c5c1c-ffa7-4004-bcad-5454a3ed0e7f", "x-ms-copy-progress": "1024/1024", - "x-ms-copy-source": "https://seanoauthstage.blob.core.windows.net/test-container-29d427af-8b41-13f8-487b-2d3fe9903352/test-blob-77620397-ac40-8741-db9a-6ca999eab53d", + "x-ms-copy-source": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-29d427af-8b41-13f8-487b-2d3fe9903352", "x-ms-copy-status": "success", - "x-ms-creation-time": "Fri, 04 Jun 2021 18:41:36 GMT", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:22 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:37 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:22 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "16dfee35-301e-0008-2271-5976b8000000", + "x-ms-request-id": "b1226960-d01e-004a-66e9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:36.9137218Z" + "x-ms-version-id": "2021-08-11T19:42:22.4778841Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-29d427af-8b41-13f8-487b-2d3fe9903352/test-blob-9722e48f-ba81-b1ce-2467-6c23ba2907a0", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-e89c7398-9b0c-f483-dcd9-627cfb78d9f3", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-a5bba3f03bf2e34ca72102a3b05e0cd2-83dfe5c7f2e79040-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "88159dcf-616b-6c1c-c8c4-8f958eea7861", - "x-ms-date": "Fri, 04 Jun 2021 18:41:37 GMT", + "traceparent": "00-4e9688b6d4e1c04fb682e944302dae1b-9e689fa369f2ea48-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "d4b220ce-c682-4bad-68f1-d0e57fecf55b", + "x-ms-date": "Wed, 11 Aug 2021 19:42:22 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -153,202 +132,40 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "wOkocbnI4QUQlRIqQssAtg==", + "Content-MD5": "Nv0EkhjnWqBadmu8Rj9GAQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 18:41:36 GMT", - "ETag": "\"0x8D9278862601C42\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:22 GMT", + "ETag": "\u00220x8D95D0023640E59\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:22 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "88159dcf-616b-6c1c-c8c4-8f958eea7861", - "x-ms-copy-completion-time": "Fri, 04 Jun 2021 18:41:36 GMT", - "x-ms-copy-id": "aba1f9e7-79e3-4a88-ad47-c45cd7243e24", + "x-ms-client-request-id": "d4b220ce-c682-4bad-68f1-d0e57fecf55b", + "x-ms-copy-completion-time": "Wed, 11 Aug 2021 19:42:22 GMT", + "x-ms-copy-id": "1c2c5c1c-ffa7-4004-bcad-5454a3ed0e7f", "x-ms-copy-progress": "1024/1024", - "x-ms-copy-source": "https://seanoauthstage.blob.core.windows.net/test-container-29d427af-8b41-13f8-487b-2d3fe9903352/test-blob-77620397-ac40-8741-db9a-6ca999eab53d", + "x-ms-copy-source": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-29d427af-8b41-13f8-487b-2d3fe9903352", "x-ms-copy-status": "success", - "x-ms-creation-time": "Fri, 04 Jun 2021 18:41:36 GMT", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:22 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:37 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:22 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "16dfee36-301e-0008-2371-5976b8000000", + "x-ms-request-id": "b122699a-d01e-004a-18e9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:36.9137218Z" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-29d427af-8b41-13f8-487b-2d3fe9903352?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-5f32f2d526959b4bb609e6b32842d08b-299b399caf4cc94e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8cbff78d-a85a-6d04-0345-0cbe3618bc7d", - "x-ms-date": "Fri, 04 Jun 2021 18:41:37 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8cbff78d-a85a-6d04-0345-0cbe3618bc7d", - "x-ms-request-id": "16dfee37-301e-0008-2471-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-77620397-ac40-8741-db9a-6ca999eab53d2021-06-04T18:41:36.8377658ZtrueFri, 04 Jun 2021 18:41:36 GMTFri, 04 Jun 2021 18:41:36 GMT0x8D927886254853A1024application/octet-streamwOkocbnI4QUQlRIqQssAtg==BlockBlobHottrueunlockedavailabletruetest-blob-9722e48f-ba81-b1ce-2467-6c23ba2907a02021-06-04T18:41:36.9137218ZtrueFri, 04 Jun 2021 18:41:36 GMTFri, 04 Jun 2021 18:41:36 GMT0x8D9278862601C421024application/octet-streamwOkocbnI4QUQlRIqQssAtg==BlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 18:46:37 GMTunlockedtrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-29d427af-8b41-13f8-487b-2d3fe9903352/test-blob-77620397-ac40-8741-db9a-6ca999eab53d", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-124526560f094143938403eede81aeaa-8ded241e80641d44-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "9608f98b-ec2a-e707-533d-c4523be492e0", - "x-ms-date": "Fri, 04 Jun 2021 18:41:37 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9608f98b-ec2a-e707-533d-c4523be492e0", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "16dfee38-301e-0008-2571-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-29d427af-8b41-13f8-487b-2d3fe9903352/test-blob-9722e48f-ba81-b1ce-2467-6c23ba2907a0?comp=legalhold", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-5c6af865fde9dc45b300aa4eb7c9e840-ad79b9e366d03a4d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "3d33576d-260f-8c53-686d-d30469714d15", - "x-ms-date": "Fri, 04 Jun 2021 18:41:37 GMT", - "x-ms-legal-hold": "false", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "3d33576d-260f-8c53-686d-d30469714d15", - "x-ms-legal-hold": "false", - "x-ms-request-id": "16dfee39-301e-0008-2671-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-29d427af-8b41-13f8-487b-2d3fe9903352/test-blob-9722e48f-ba81-b1ce-2467-6c23ba2907a0?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-0c046075cc857841a87455bbc54592ae-2614d246a05e9945-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "e3e437c0-55b1-c6d0-9f9f-bd513d4ff6c3", - "x-ms-date": "Fri, 04 Jun 2021 18:41:37 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "e3e437c0-55b1-c6d0-9f9f-bd513d4ff6c3", - "x-ms-request-id": "16dfee3a-301e-0008-2771-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-29d427af-8b41-13f8-487b-2d3fe9903352/test-blob-9722e48f-ba81-b1ce-2467-6c23ba2907a0", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-598a76c5429bf9418d41ec54ce8ce67a-4a61551ccbf3c44e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "3144c39e-698c-6464-df0d-5eabf4a43b55", - "x-ms-date": "Fri, 04 Jun 2021 18:41:38 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3144c39e-698c-6464-df0d-5eabf4a43b55", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "16dfee3b-301e-0008-2871-5976b8000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:22.4778841Z" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T13:41:37.5795409-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:22.4489909-07:00", "RandomSeed": "588385037", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/StartCopyFromUri_ImmutableStorageWithVersioningAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/StartCopyFromUri_ImmutableStorageWithVersioningAsync.json index cf6e540f209da..27899ac226171 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/StartCopyFromUri_ImmutableStorageWithVersioningAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/StartCopyFromUri_ImmutableStorageWithVersioningAsync.json @@ -1,61 +1,52 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4c809000-d5d6-4a63-20e1-b1e67061a823/test-blob-72d995df-908e-ce86-6836-4269b70f9573", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-4c809000-d5d6-4a63-20e1-b1e67061a823", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-078b898e7f891f43877c69b836328cb7-5d7604acd91aa14b-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-7e79eafa2987134cb69700265ee1bf2c-2d95ef6b7610ed4d-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "96e66ed1-3abb-9481-4aba-24005b5e3c50", - "x-ms-date": "Fri, 04 Jun 2021 18:41:55 GMT", + "x-ms-client-request-id": "c1c863d1-18d9-7e4d-d003-1dfae80b319f", + "x-ms-date": "Wed, 11 Aug 2021 19:42:36 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "wxgd53Y2rYdVslxGsJ+eVaO+rhWdbvZwCrLjn5L5khBLPiJXQ8CsqehRHNszPx3ImOzG+WGA1VUird3DUg31XCBL+nF9RhLiEQQtS1EaPcqUGgelM5ivymjNNZbj6FfaXMC750WsS1Ha4+hdU4kDB28TLzcGTyiHnC8IrxF8/yitU++RX1WF6M+1y1CwUXffyS0mz7kf0wyYM0oVo5tAXuPAr/+acqcajkZoUITY10q4KebjVi9ujn/j+CsKcEQzdWxs8KJ3RFeGDEFzt4KHwFz/XHq1XQi0USGAt3l8Dx4CNdsXa+aoQOSOXUnt+9b8WzjPCxPKfRdkuJ6A943dCfwjcYKnb1R2VxyVJv++xlZKg1tArAQKN7fDs7NHJ0lXsFNMyopUVevkWLP2NFYXpvFINnMxnV34GDnK47ygLi/TPnWscfzM9i5vW1NQFAJgqw3C//HVJRP2VLFQiXIvRCqEI/bhazT1fEBFwUEJqAQ2aTeu3i8+/Rhith1Ke2y7QBcpzPEMf0DYzIKxkGPR7ausGiA7gGX7RSXdfrUXqgHTiYEq39wTKur21hGsjG21kMlxnWFMgL+xLYbLLgCLwCGB3Qbipg3Pme82RKpUT7m3KO3rpgyghwjBebJWR/vpaxXvKq9m0+q7ogRxFjwVXd7NFAYSnxoU4VX+IC1aeFH0TNmUZCQJUFUDLwMILnHMrBzUiTP11sv720lZaLO8YSmyfcljgfi5w8OxDm8WDLLkMnQRhu8d/nUNmYnasOihR87aVbGoaCojGsVwRMdb5M6XdTY/q9o5lX5TVuhv3hLbD8egPLcAPMlJ7WwprbqusbS6QzuxYpv0oMAzVBJCszuzlTT/uqgXljht9b1uD+fDpaQztJvXKawsrJv2zee3BjowdhiFrvYMo6wCRG3ehZDYb69tDv6g22uI0w4MIMlRtu6DPpnPPfatJxHu1eU/TScKHl04Sfg7j5ut/dvo/4LjsI1+W0f3CTG4v+ftsgWFSYXnAgJsGW32R679IkAbxSeOCiRYwPLfEhQrf4kQTd2VJ7NVAf2Ad5cghxOZ+efxnfrAX6fhLYiTB+/uQJrj5frRaPqMxsQqDZOMNznfRhgsOuGOUO41s/orwvkNkjb9PKIYx5HtZNc2lVETVPVPs8HWwQW4VZQLm7T/YQTKHHtcj/qWxn6HP9YKWLqdIV4E2w44NtExROcNDCvc7QLTa3jVt8X7uO1CT4EurvzZbnpW+oX1kuaqK0oSiblTq1HUN+1Cx2qYCSMh9edPApbrM56xhvJ83diSK4t76C8z76MvWncOl6cQvfFi1J3+WiizJ1YboiVfV1kUr5veHSDz7QZDIKcf3Jv2ockAGgk7kw==", + "RequestBody": "35XZco6Qhs5oNkJptw\u002BVc8MYHed2Nq2HVbJcRrCfnlWjvq4VnW72cAqy45\u002BS\u002BZIQSz4iV0PArKnoURzbMz8dyJjsxvlhgNVVIq3dw1IN9VwgS/pxfUYS4hEELUtRGj3KlBoHpTOYr8pozTWW4\u002BhX2lzAu\u002BdFrEtR2uPoXVOJAwdvEy83Bk8oh5wvCK8RfP8orVPvkV9VhejPtctQsFF338ktJs\u002B5H9MMmDNKFaObQF7jwK//mnKnGo5GaFCE2NdKuCnm41Yvbo5/4/grCnBEM3VsbPCid0RXhgxBc7eCh8Bc/1x6tV0ItFEhgLd5fA8eAjXbF2vmqEDkjl1J7fvW/Fs4zwsTyn0XZLiegPeN3Qn8I3GCp29UdlcclSb/vsZWSoNbQKwECje3w7OzRydJV7BTTMqKVFXr5Fiz9jRWF6bxSDZzMZ1d\u002BBg5yuO8oC4v0z51rHH8zPYub1tTUBQCYKsNwv/x1SUT9lSxUIlyL0QqhCP24Ws09XxARcFBCagENmk3rt4vPv0YYrYdSntsu0AXKczxDH9A2MyCsZBj0e2rrBogO4Bl\u002B0Ul3X61F6oB04mBKt/cEyrq9tYRrIxttZDJcZ1hTIC/sS2Gyy4Ai8Ahgd0G4qYNz5nvNkSqVE\u002B5tyjt66YMoIcIwXmyVkf76WsV7yqvZtPqu6IEcRY8FV3ezRQGEp8aFOFV/iAtWnhR9EzZlGQkCVBVAy8DCC5xzKwc1Ikz9dbL\u002B9tJWWizvGEpsn3JY4H4ucPDsQ5vFgyy5DJ0EYbvHf51DZmJ2rDooUfO2lWxqGgqIxrFcETHW\u002BTOl3U2P6vaOZV\u002BU1bob94S2w/HoDy3ADzJSe1sKa26rrG0ukM7sWKb9KDAM1QSQrM7s5U0/7qoF5Y4bfW9bg/nw6WkM7Sb1ymsLKyb9s3ntwY6MHYYha72DKOsAkRt3oWQ2G\u002BvbQ7\u002BoNtriNMODCDJUbbugz6Zzz32rScR7tXlP00nCh5dOEn4O4\u002Bbrf3b6P\u002BC47CNfltH9wkxuL/n7bIFhUmF5wICbBlt9keu/SJAG8UnjgokWMDy3xIUK3\u002BJEE3dlSezVQH9gHeXIIcTmfnn8Z36wF\u002Bn4S2Ikwfv7kCa4\u002BX60Wj6jMbEKg2TjDc530YYLDrhjlDuNbP6K8L5DZI2/TyiGMeR7WTXNpVRE1T1T7PB1sEFuFWUC5u0/2EEyhx7XI/6lsZ\u002Bhz/WCli6nSFeBNsOODbRMUTnDQwr3O0C02t41bfF\u002B7jtQk\u002BBLq782W56VvqF9ZLmqitKEom5U6tR1DftQsdqmAkjIfXnTwKW6zOesYbyfN3YkiuLe\u002BgvM\u002B\u002BjL1p3DpenEL3xYtSd/loosydWG6IlX1dZFK\u002Bb3h0g8w==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "QeypGLGMZQwReEHnjGcLng==", - "Date": "Fri, 04 Jun 2021 18:41:53 GMT", - "ETag": "\"0x8D927886CFFC95C\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:54 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "96e66ed1-3abb-9481-4aba-24005b5e3c50", - "x-ms-content-crc64": "CAczZKklYJI=", - "x-ms-request-id": "b5c955fe-101e-001b-6271-5945f9000000", + "Content-Length": "0", + "Content-MD5": "xdyPm2\u002BWjjnYTT8OqaN\u002BAQ==", + "Date": "Wed, 11 Aug 2021 19:42:35 GMT", + "ETag": "\u00220x8D95D002BC17807\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:36 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "c1c863d1-18d9-7e4d-d003-1dfae80b319f", + "x-ms-content-crc64": "sMivR7cknm0=", + "x-ms-request-id": "b1229e4b-d01e-004a-43e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:54.7373916Z" + "x-ms-version-id": "2021-08-11T19:42:36.5118471Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4c809000-d5d6-4a63-20e1-b1e67061a823/test-blob-7bca1bd9-5e55-d51a-b8c5-4fa301e2b3ea", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-96e66ed1-3abb-9481-4aba-24005b5e3c50", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-49b284a442ea664aa588e65b9c1dcf9a-80af6a7bba28184b-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "cc20cdc6-b641-724a-5310-def5eadd9267", - "x-ms-copy-source": "https://seanoauthstage.blob.core.windows.net/test-container-4c809000-d5d6-4a63-20e1-b1e67061a823/test-blob-72d995df-908e-ce86-6836-4269b70f9573", - "x-ms-date": "Fri, 04 Jun 2021 18:41:55 GMT", + "traceparent": "00-d9238a7bb0562642b04e86f25823d596-cb53ebc39b5c584f-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ab2f296f-a422-97d8-e133-771ef34c2272", + "x-ms-copy-source": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-4c809000-d5d6-4a63-20e1-b1e67061a823", + "x-ms-date": "Wed, 11 Aug 2021 19:42:36 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:55 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:36 GMT", "x-ms-legal-hold": "true", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" @@ -63,35 +54,29 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:53 GMT", - "ETag": "\"0x8D927886D0AEB44\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:54 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "cc20cdc6-b641-724a-5310-def5eadd9267", - "x-ms-copy-id": "a23eabbc-26e6-472c-b884-d20b99aba05a", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:36 GMT", + "ETag": "\u00220x8D95D002BCF0F13\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:36 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "ab2f296f-a422-97d8-e133-771ef34c2272", + "x-ms-copy-id": "016ec896-57ab-4d44-992d-14416a96c8e7", "x-ms-copy-status": "success", - "x-ms-request-id": "b5c955ff-101e-001b-6371-5945f9000000", + "x-ms-request-id": "b1229ec1-d01e-004a-2ee9-8e693e000000", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:54.8113487Z" + "x-ms-version-id": "2021-08-11T19:42:36.6019116Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4c809000-d5d6-4a63-20e1-b1e67061a823/test-blob-7bca1bd9-5e55-d51a-b8c5-4fa301e2b3ea", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-96e66ed1-3abb-9481-4aba-24005b5e3c50", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "34dcdda2-e6c2-b9a9-debc-5811c6e2ac04", - "x-ms-date": "Fri, 04 Jun 2021 18:41:55 GMT", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "32913a07-912f-342d-4232-9921e7fce26c", + "x-ms-date": "Wed, 11 Aug 2021 19:42:36 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -100,51 +85,45 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "QeypGLGMZQwReEHnjGcLng==", + "Content-MD5": "xdyPm2\u002BWjjnYTT8OqaN\u002BAQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 18:41:53 GMT", - "ETag": "\"0x8D927886D0AEB44\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:54 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:36 GMT", + "ETag": "\u00220x8D95D002BCF0F13\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:36 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "34dcdda2-e6c2-b9a9-debc-5811c6e2ac04", - "x-ms-copy-completion-time": "Fri, 04 Jun 2021 18:41:54 GMT", - "x-ms-copy-id": "a23eabbc-26e6-472c-b884-d20b99aba05a", + "x-ms-client-request-id": "32913a07-912f-342d-4232-9921e7fce26c", + "x-ms-copy-completion-time": "Wed, 11 Aug 2021 19:42:36 GMT", + "x-ms-copy-id": "016ec896-57ab-4d44-992d-14416a96c8e7", "x-ms-copy-progress": "1024/1024", - "x-ms-copy-source": "https://seanoauthstage.blob.core.windows.net/test-container-4c809000-d5d6-4a63-20e1-b1e67061a823/test-blob-72d995df-908e-ce86-6836-4269b70f9573", + "x-ms-copy-source": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-4c809000-d5d6-4a63-20e1-b1e67061a823", "x-ms-copy-status": "success", - "x-ms-creation-time": "Fri, 04 Jun 2021 18:41:54 GMT", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:36 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:55 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:36 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "b5c95601-101e-001b-6471-5945f9000000", + "x-ms-request-id": "b1229ef8-d01e-004a-5de9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:54.8113487Z" + "x-ms-version-id": "2021-08-11T19:42:36.6019116Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4c809000-d5d6-4a63-20e1-b1e67061a823/test-blob-7bca1bd9-5e55-d51a-b8c5-4fa301e2b3ea", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-96e66ed1-3abb-9481-4aba-24005b5e3c50", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-afb7c2edb98a8e4994e94438be492421-941258e353d6e74a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "0c53712e-5d00-20a5-90d8-5372381b6e60", - "x-ms-date": "Fri, 04 Jun 2021 18:41:55 GMT", + "traceparent": "00-e1ee92ad82414c4fa15e5df932b64fed-6b63850feecf2541-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "b9170fa1-efbb-3542-9feb-8a0e1c298b57", + "x-ms-date": "Wed, 11 Aug 2021 19:42:36 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -153,201 +132,40 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "QeypGLGMZQwReEHnjGcLng==", + "Content-MD5": "xdyPm2\u002BWjjnYTT8OqaN\u002BAQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 18:41:54 GMT", - "ETag": "\"0x8D927886D0AEB44\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:54 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:36 GMT", + "ETag": "\u00220x8D95D002BCF0F13\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:36 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "0c53712e-5d00-20a5-90d8-5372381b6e60", - "x-ms-copy-completion-time": "Fri, 04 Jun 2021 18:41:54 GMT", - "x-ms-copy-id": "a23eabbc-26e6-472c-b884-d20b99aba05a", + "x-ms-client-request-id": "b9170fa1-efbb-3542-9feb-8a0e1c298b57", + "x-ms-copy-completion-time": "Wed, 11 Aug 2021 19:42:36 GMT", + "x-ms-copy-id": "016ec896-57ab-4d44-992d-14416a96c8e7", "x-ms-copy-progress": "1024/1024", - "x-ms-copy-source": "https://seanoauthstage.blob.core.windows.net/test-container-4c809000-d5d6-4a63-20e1-b1e67061a823/test-blob-72d995df-908e-ce86-6836-4269b70f9573", + "x-ms-copy-source": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-4c809000-d5d6-4a63-20e1-b1e67061a823", "x-ms-copy-status": "success", - "x-ms-creation-time": "Fri, 04 Jun 2021 18:41:54 GMT", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:36 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:55 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:36 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "b5c95602-101e-001b-6571-5945f9000000", + "x-ms-request-id": "b1229f35-d01e-004a-10e9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:54.8113487Z" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4c809000-d5d6-4a63-20e1-b1e67061a823?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "54e30030-a08f-4403-69f6-28e39bd0fd84", - "x-ms-date": "Fri, 04 Jun 2021 18:41:55 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:54 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "54e30030-a08f-4403-69f6-28e39bd0fd84", - "x-ms-request-id": "b5c95603-101e-001b-6671-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-72d995df-908e-ce86-6836-4269b70f95732021-06-04T18:41:54.7373916ZtrueFri, 04 Jun 2021 18:41:54 GMTFri, 04 Jun 2021 18:41:54 GMT0x8D927886CFFC95C1024application/octet-streamQeypGLGMZQwReEHnjGcLng==BlockBlobHottrueunlockedavailabletruetest-blob-7bca1bd9-5e55-d51a-b8c5-4fa301e2b3ea2021-06-04T18:41:54.8113487ZtrueFri, 04 Jun 2021 18:41:54 GMTFri, 04 Jun 2021 18:41:54 GMT0x8D927886D0AEB441024application/octet-streamQeypGLGMZQwReEHnjGcLng==BlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 18:46:55 GMTunlockedtrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4c809000-d5d6-4a63-20e1-b1e67061a823/test-blob-72d995df-908e-ce86-6836-4269b70f9573", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-7c70b9358db78c44ab0ef69fda207cde-6cca5ffc003ac840-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "38429e3b-1937-e5d0-913a-6ded00ce16ca", - "x-ms-date": "Fri, 04 Jun 2021 18:41:55 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:54 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "38429e3b-1937-e5d0-913a-6ded00ce16ca", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "b5c95604-101e-001b-6771-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4c809000-d5d6-4a63-20e1-b1e67061a823/test-blob-7bca1bd9-5e55-d51a-b8c5-4fa301e2b3ea?comp=legalhold", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-053dc39a8629844398e61328d91874c6-2858576c8a9b4442-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "fda73131-c48e-634c-59a2-f66e458504f2", - "x-ms-date": "Fri, 04 Jun 2021 18:41:55 GMT", - "x-ms-legal-hold": "false", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:54 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "fda73131-c48e-634c-59a2-f66e458504f2", - "x-ms-legal-hold": "false", - "x-ms-request-id": "b5c95605-101e-001b-6871-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4c809000-d5d6-4a63-20e1-b1e67061a823/test-blob-7bca1bd9-5e55-d51a-b8c5-4fa301e2b3ea?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-2089c73f19b5ba4c862a78509ed93b3d-8c9ebf3568a3284c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "cfbcd3be-1926-e53c-c4f4-d86f1e9d3608", - "x-ms-date": "Fri, 04 Jun 2021 18:41:55 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:54 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "cfbcd3be-1926-e53c-c4f4-d86f1e9d3608", - "x-ms-request-id": "b5c95606-101e-001b-6971-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4c809000-d5d6-4a63-20e1-b1e67061a823/test-blob-7bca1bd9-5e55-d51a-b8c5-4fa301e2b3ea", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-c4ae14264415154fa604a6765334882f-be9ce343d848c64d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "72af0eea-35c8-70cc-6aca-f382b97507f4", - "x-ms-date": "Fri, 04 Jun 2021 18:41:55 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:54 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "72af0eea-35c8-70cc-6aca-f382b97507f4", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "b5c95607-101e-001b-6a71-5945f9000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:36.6019116Z" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T13:41:55.4785423-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:36.5784406-07:00", "RandomSeed": "1088002537", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SyncCopyFromUri_ImmutableStorageWithVersioning.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SyncCopyFromUri_ImmutableStorageWithVersioning.json index 6fc07b9a41288..de3268727fca2 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SyncCopyFromUri_ImmutableStorageWithVersioning.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SyncCopyFromUri_ImmutableStorageWithVersioning.json @@ -1,61 +1,52 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-9f2868a5-0490-402c-5d08-064f50c914d4/test-blob-885cb046-a912-5994-2207-9c7d48319d89", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-9f2868a5-0490-402c-5d08-064f50c914d4", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-7ee5f1f30adb6743bb062a77c7d4f4bd-db2b236f5b4de948-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-ea308cb8d8cc9346b85a2a07a1bdc73d-86d9f015f2a49840-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "aaea6fb9-49fd-874e-552f-eccd53e82d88", - "x-ms-date": "Fri, 04 Jun 2021 18:41:39 GMT", + "x-ms-client-request-id": "d5e6d8fb-d5b8-a75b-8a45-d2c4121b5ccb", + "x-ms-date": "Wed, 11 Aug 2021 19:42:22 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "fM6zSvNJ443iuFfKhZXSC13SnoXMXoj80858iGiu+CtqfNKCFcrh/MzPpVpRydSNNZAfdZMYvR5Gt3YkzFokM78rXwjCUPaT8KG4/Lguqgr571PXj4KYUr+zO11UvTBxqnKaJWnMyuSajIXyYMBmFw1sKt0HTaQ8kw1IDhSYPjJxRlFFlISgLSRvPQL9pfL/TSRQ55NSal3NXZJchLvPAU1SgRluIIOJy/24lw+iP+4aScHwSFefHtv0dzbyRKhonzu0qiTZkCygxhyVmtNOKx6jQTr63rn2s2M9eqhNl4dUT/fT7ZTKQbmUUIE6CYMIpUsXTgNtbsGCvffAmxWDUi+VQUrbej6K2f+BZY43u6nfNNRdNUmE5uE2UC+cCaajEf1Spcg4LSoNjXQD7AgySwJO4GZBJh3mEVpppCoO7dBZ3lSQ5RbgpgepT6jUgPrYAwUtTig/YergbJRuz4gA/p+kqQ20omXrbjpfl9d0EZBgkKEk4Z+nGnxpsHiCctd+qFAIMNftI2GfQd/u38oTa1oDDT7n3B0A/I+QSvHtafxj4e6Ga+C5c21AhJ+/uTqyVkQefmSYl8wzCDNHXNhvstjji/7bjQB5SprRp1d+QENU3vStz+uXykkhU2OtcRaU0NLG2y071shEpDPJxvB1tcfv8n7kwuPtS8C0ujqczNiEPdaEt2UWGAcraSu3zgRZrJ6cvX6Xrw7u2ZBshxyOp9dbRYgZ8P1i2dp2uFm4NX28Wg2c/w9Z7I3Ild3UqZHrncFTXIl7QLygOuOkIfe1NqQSsCwO8qfIAVj7UVogjTBIixuXZNn0QRpR+8UrtMuWE185wvlk3KoZi1owgO9hgK2zXJbbHdHKHm4SvfbinEyNZD365so2465wftl+w8Er73sXeFg1uvaNbqOKUh60Nu4NoxuxZpnifHjnap74S1qt5857yiT0WKlHbXcmrJCQvEfqcSCleYjhNfvfTU9XlCNJ3GtQOWvKGEpyafkiu9DnV65WDto5CG1FmZUoFQpZ79hU3c8kP4PbH1jVMw+Ov3or9/ahAYZID9T+Cp/WoQNAGHogzd0Awxcqeu6CZNRdttkb/R0TuO5SC837JjTkBX5UlRuVbvKcKjTfd4aXxqv/oFPGu6PmLF+MzsEPBZziRnVwLc65yEjnftLoNEFnukUi+4XgHUnabmi7CZ8wjCWX/DARJ5jcRdgL3zzR/fgeJBR77QoXASgrlr9m/r+ptvKtUTgQVpOsRbWt1T4NCXBwneSLtJ4bgPoI5ZHZdkcZYilJI6zADs6Az6dUaSzqHo1P9WHaHQFTktA9B3EB089tk3MUw+XEsI4WCuX3xhbOHcYEiYDmPkQo9pHbggZdfg==", + "RequestBody": "RrBciBKplFkiB5x9SDGdiXzOs0rzSeON4rhXyoWV0gtd0p6FzF6I/NPOfIhorvgranzSghXK4fzMz6VaUcnUjTWQH3WTGL0eRrd2JMxaJDO/K18IwlD2k/ChuPy4LqoK\u002Be9T14\u002BCmFK/sztdVL0wcapymiVpzMrkmoyF8mDAZhcNbCrdB02kPJMNSA4UmD4ycUZRRZSEoC0kbz0C/aXy/00kUOeTUmpdzV2SXIS7zwFNUoEZbiCDicv9uJcPoj/uGknB8EhXnx7b9Hc28kSoaJ87tKok2ZAsoMYclZrTTiseo0E6\u002Bt659rNjPXqoTZeHVE/30\u002B2UykG5lFCBOgmDCKVLF04DbW7Bgr33wJsVg1IvlUFK23o\u002Bitn/gWWON7up3zTUXTVJhObhNlAvnAmmoxH9UqXIOC0qDY10A\u002BwIMksCTuBmQSYd5hFaaaQqDu3QWd5UkOUW4KYHqU\u002Bo1ID62AMFLU4oP2Hq4GyUbs\u002BIAP6fpKkNtKJl6246X5fXdBGQYJChJOGfpxp8abB4gnLXfqhQCDDX7SNhn0Hf7t/KE2taAw0\u002B59wdAPyPkErx7Wn8Y\u002BHuhmvguXNtQISfv7k6slZEHn5kmJfMMwgzR1zYb7LY44v\u002B240AeUqa0adXfkBDVN70rc/rl8pJIVNjrXEWlNDSxtstO9bIRKQzycbwdbXH7/J\u002B5MLj7UvAtLo6nMzYhD3WhLdlFhgHK2krt84EWayenL1\u002Bl68O7tmQbIccjqfXW0WIGfD9YtnadrhZuDV9vFoNnP8PWeyNyJXd1KmR653BU1yJe0C8oDrjpCH3tTakErAsDvKnyAFY\u002B1FaII0wSIsbl2TZ9EEaUfvFK7TLlhNfOcL5ZNyqGYtaMIDvYYCts1yW2x3Ryh5uEr324pxMjWQ9\u002BubKNuOucH7ZfsPBK\u002B97F3hYNbr2jW6jilIetDbuDaMbsWaZ4nx452qe\u002BEtarefOe8ok9FipR213JqyQkLxH6nEgpXmI4TX7301PV5QjSdxrUDlryhhKcmn5IrvQ51euVg7aOQhtRZmVKBUKWe/YVN3PJD\u002BD2x9Y1TMPjr96K/f2oQGGSA/U/gqf1qEDQBh6IM3dAMMXKnrugmTUXbbZG/0dE7juUgvN\u002ByY05AV\u002BVJUblW7ynCo033eGl8ar/6BTxruj5ixfjM7BDwWc4kZ1cC3OuchI537S6DRBZ7pFIvuF4B1J2m5ouwmfMIwll/wwESeY3EXYC9880f34HiQUe\u002B0KFwEoK5a/Zv6/qbbyrVE4EFaTrEW1rdU\u002BDQlwcJ3ki7SeG4D6COWR2XZHGWIpSSOswA7OgM\u002BnVGks6h6NT/Vh2h0BU5LQPQdxAdPPbZNzFMPlxLCOFgrl98YWzg==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "Iwb/WoifpUiLbEiXqd/G7g==", - "Date": "Fri, 04 Jun 2021 18:41:38 GMT", - "ETag": "\"0x8D9278863AEB1B9\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:39 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "aaea6fb9-49fd-874e-552f-eccd53e82d88", - "x-ms-content-crc64": "5GEPW/GIih4=", - "x-ms-request-id": "16dfee50-301e-0008-3371-5976b8000000", + "Content-Length": "0", + "Content-MD5": "QSuwJDXsLgms8N\u002BNTL\u002BwSw==", + "Date": "Wed, 11 Aug 2021 19:42:22 GMT", + "ETag": "\u00220x8D95D0023A0861C\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:22 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "d5e6d8fb-d5b8-a75b-8a45-d2c4121b5ccb", + "x-ms-content-crc64": "CCUpZWbIfls=", + "x-ms-request-id": "b1226a12-d01e-004a-79e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:39.1064505Z" + "x-ms-version-id": "2021-08-11T19:42:22.8741660Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-9f2868a5-0490-402c-5d08-064f50c914d4/test-blob-1fea8bb9-41e0-4716-6a5c-ff3b147a310c", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-aaea6fb9-49fd-874e-552f-eccd53e82d88", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-829272d9ef261e46a81627d20dc1e544-17b477c6c5bf6d40-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "870a4a17-3d30-78eb-59a2-3fa14a1272da", - "x-ms-copy-source": "https://seanoauthstage.blob.core.windows.net/test-container-9f2868a5-0490-402c-5d08-064f50c914d4/test-blob-885cb046-a912-5994-2207-9c7d48319d89", - "x-ms-date": "Fri, 04 Jun 2021 18:41:39 GMT", + "traceparent": "00-63403fd32c5ea340b9c7eed9990b6495-620f8804577c8049-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1222c699-b21c-b181-8a5f-8088e88e54a2", + "x-ms-copy-source": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-9f2868a5-0490-402c-5d08-064f50c914d4", + "x-ms-date": "Wed, 11 Aug 2021 19:42:22 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:39 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:22 GMT", "x-ms-legal-hold": "true", "x-ms-requires-sync": "true", "x-ms-return-client-request-id": "true", @@ -64,37 +55,31 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:38 GMT", - "ETag": "\"0x8D9278863C2778C\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:39 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "870a4a17-3d30-78eb-59a2-3fa14a1272da", - "x-ms-content-crc64": "5GEPW/GIih4=", - "x-ms-copy-id": "78cdb66a-edc8-4ade-b2ff-8ab939686141", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:22 GMT", + "ETag": "\u00220x8D95D0023B74A8E\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:23 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "1222c699-b21c-b181-8a5f-8088e88e54a2", + "x-ms-content-crc64": "CCUpZWbIfls=", + "x-ms-copy-id": "94cef503-b2aa-4b6f-96ce-89dc77ee8791", "x-ms-copy-status": "success", - "x-ms-request-id": "16dfee51-301e-0008-3471-5976b8000000", + "x-ms-request-id": "b1226aa5-d01e-004a-7fe9-8e693e000000", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:39.2703562Z" + "x-ms-version-id": "2021-08-11T19:42:23.0382827Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-9f2868a5-0490-402c-5d08-064f50c914d4/test-blob-1fea8bb9-41e0-4716-6a5c-ff3b147a310c", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-aaea6fb9-49fd-874e-552f-eccd53e82d88", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-751db3bf4d3be94e90b0ac8314e09b8c-1be81109affa964f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ca235c08-aa6f-5cdb-daaa-b97972e06677", - "x-ms-date": "Fri, 04 Jun 2021 18:41:40 GMT", + "traceparent": "00-ac5a0d700b36fc47babaafac6908fa2c-224ed5916dbf954e-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "8d33e0fd-1ac5-066b-0a39-9480c08d5fdc", + "x-ms-date": "Wed, 11 Aug 2021 19:42:23 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -103,202 +88,40 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "Iwb/WoifpUiLbEiXqd/G7g==", + "Content-MD5": "QSuwJDXsLgms8N\u002BNTL\u002BwSw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 18:41:38 GMT", - "ETag": "\"0x8D9278863C2778C\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:39 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:22 GMT", + "ETag": "\u00220x8D95D0023B74A8E\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:23 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "ca235c08-aa6f-5cdb-daaa-b97972e06677", - "x-ms-copy-completion-time": "Fri, 04 Jun 2021 18:41:39 GMT", - "x-ms-copy-id": "78cdb66a-edc8-4ade-b2ff-8ab939686141", + "x-ms-client-request-id": "8d33e0fd-1ac5-066b-0a39-9480c08d5fdc", + "x-ms-copy-completion-time": "Wed, 11 Aug 2021 19:42:23 GMT", + "x-ms-copy-id": "94cef503-b2aa-4b6f-96ce-89dc77ee8791", "x-ms-copy-progress": "1024/1024", - "x-ms-copy-source": "https://seanoauthstage.blob.core.windows.net/test-container-9f2868a5-0490-402c-5d08-064f50c914d4/test-blob-885cb046-a912-5994-2207-9c7d48319d89", + "x-ms-copy-source": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-9f2868a5-0490-402c-5d08-064f50c914d4", "x-ms-copy-status": "success", - "x-ms-creation-time": "Fri, 04 Jun 2021 18:41:39 GMT", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:23 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:39 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:22 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "16dfee53-301e-0008-3571-5976b8000000", + "x-ms-request-id": "b1226b6b-d01e-004a-25e9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:39.2703562Z" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-9f2868a5-0490-402c-5d08-064f50c914d4?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-515f23bddb452c40b32c637d2d23e74c-69a158f8ed6d3446-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "ee986343-a8ef-536a-04d6-b21b60f2932a", - "x-ms-date": "Fri, 04 Jun 2021 18:41:40 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:38 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "ee986343-a8ef-536a-04d6-b21b60f2932a", - "x-ms-request-id": "16dfee56-301e-0008-3671-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-1fea8bb9-41e0-4716-6a5c-ff3b147a310c2021-06-04T18:41:39.2703562ZtrueFri, 04 Jun 2021 18:41:39 GMTFri, 04 Jun 2021 18:41:39 GMT0x8D9278863C2778C1024application/octet-stream5GEPW/GIih4=Iwb/WoifpUiLbEiXqd/G7g==BlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 18:46:39 GMTunlockedtruetest-blob-885cb046-a912-5994-2207-9c7d48319d892021-06-04T18:41:39.1064505ZtrueFri, 04 Jun 2021 18:41:39 GMTFri, 04 Jun 2021 18:41:39 GMT0x8D9278863AEB1B91024application/octet-streamIwb/WoifpUiLbEiXqd/G7g==BlockBlobHottrueunlockedavailabletrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-9f2868a5-0490-402c-5d08-064f50c914d4/test-blob-1fea8bb9-41e0-4716-6a5c-ff3b147a310c?comp=legalhold", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-c69ed78009926f46b75bad62a69ee9cc-43c3094d33442b48-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "0f36eef2-7847-4387-3a37-048414c09cec", - "x-ms-date": "Fri, 04 Jun 2021 18:41:40 GMT", - "x-ms-legal-hold": "false", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:38 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "0f36eef2-7847-4387-3a37-048414c09cec", - "x-ms-legal-hold": "false", - "x-ms-request-id": "16dfee57-301e-0008-3771-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-9f2868a5-0490-402c-5d08-064f50c914d4/test-blob-1fea8bb9-41e0-4716-6a5c-ff3b147a310c?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-e7c2b6dce3c8f64e849dfd774cd41740-edf525cdd398cc46-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "72294222-84bb-5ae3-9650-dfca52fc2dbf", - "x-ms-date": "Fri, 04 Jun 2021 18:41:40 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:38 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "72294222-84bb-5ae3-9650-dfca52fc2dbf", - "x-ms-request-id": "16dfee58-301e-0008-3871-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-9f2868a5-0490-402c-5d08-064f50c914d4/test-blob-1fea8bb9-41e0-4716-6a5c-ff3b147a310c", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-9d7734157d131c45994a8be1fc2667d1-831dbeaf08957142-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "d261e412-2997-eb31-6ecb-f485bdff9ae5", - "x-ms-date": "Fri, 04 Jun 2021 18:41:40 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:38 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "d261e412-2997-eb31-6ecb-f485bdff9ae5", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "16dfee59-301e-0008-3971-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-9f2868a5-0490-402c-5d08-064f50c914d4/test-blob-885cb046-a912-5994-2207-9c7d48319d89", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-b52f5d11a6ead642a23edc2d714f0ee4-2bdd8e8fab92814a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "6db7a4ca-5b9b-6027-ce0f-6cf435149825", - "x-ms-date": "Fri, 04 Jun 2021 18:41:40 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:38 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "6db7a4ca-5b9b-6027-ce0f-6cf435149825", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "16dfee5a-301e-0008-3a71-5976b8000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:23.0382827Z" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T13:41:39.8473595-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:22.9359914-07:00", "RandomSeed": "1356998150", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SyncCopyFromUri_ImmutableStorageWithVersioningAsync.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SyncCopyFromUri_ImmutableStorageWithVersioningAsync.json index cdb4316db6b18..de50e74bc6cfd 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SyncCopyFromUri_ImmutableStorageWithVersioningAsync.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/SyncCopyFromUri_ImmutableStorageWithVersioningAsync.json @@ -1,61 +1,52 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a29f4a1e-87c8-f2c8-4314-af5882833026/test-blob-9c1525cb-f282-cb00-8d5e-b1d2669620cc", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-a29f4a1e-87c8-f2c8-4314-af5882833026", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-256d33a46021d14ba89d5b3af74f0c2e-0991794a6b170140-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-682250251c37124199350cde11e36078-e1efacea4b7a534d-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "9b03e7e7-77ad-874f-9544-0200c02d7129", - "x-ms-date": "Fri, 04 Jun 2021 18:41:58 GMT", + "x-ms-client-request-id": "f3e66579-dd92-1d15-aa5c-3898bc043e40", + "x-ms-date": "Wed, 11 Aug 2021 19:42:36 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "dDolMhG0g44TQhIPN63plRV1QCabHnorSdMVatb1jKz04uNIXf0UF6GHiD/f8ZTfdBu98VX5MVa/+uk+nxm4HrZmGlTJoTcXYCmFE5U6S1g/NfW6N5pW+7GNiGMU1niIzmqJedY/FtLkpZAsdB3AhK6R/mkj/eYbDx+iPBjTA4mw/EUrsdKB/x8i1pEKKYeUzQS1g9cOZNCEbWm2nNm6EKIHfHfXldPbD/9KACdUEeWYDW8UHn+yoZd0pkNoymJFaMXvA60PvTgw2XTYw2OpL1yEHo9qpvIjVNrfY+6Pc0ScBZhhZQ44iFA240QL2d00ynfn5KzT2sHTzK7SMFlJoWYvO77KSMpNS5U+M8KuF3v8q5h3p4+XySrWjZlgZVj37ELe254faYKsmZgXlab/JbQz1oTA0vnWmHKT9Lox7eY8R0aA0Dzc3UIWyg73gDOD12jlLI/TNhlJB0Mri3TIe6yy2k5fflV3VvhCqgjr3xg+DxxRTMBWaBAsN8j5sFHNTU9hRKXlI1gTbdaWkYsRXicr7XtYdi7rW3I9M0eMfqWmdVy5iZpzWOvDPt7qwNeFG9igzcPWdNcgdukzqPAQhu4x7xsuWNSMuJSPlDdPAZuauBdu67Dh0ACFmBOxQK/6srjvuNC7VsIDFBUuRuCf0HROmPDZoZo+Tx4bqcDB23jklOF/YEjK32FVa9eas4og5ceeYqe/IRAdsWmxoK0CQjidSbH+H3Asg7mOhDbCo5yU+8P4I3nQJXPQYq7fGT+0Uiif/WnZIcZXct7uMJ3aWg3NHaTpCh6+zSQ+Lr3CTGp52jENI6Yzutr9obCb4fTV9gegEfuay0gK4S9Em/IIlSVzdFZszDdnmWPK7GltI+svaDi1ITpv3w/pA0J27h7n9AuLJ2yeaCrQOXiYz97fnL1EFDK6UnPqBJVHg8j18KpE4/dd4vx+kf8N5ejC1g8wCWeEMtrrLKKYoSLXV+Vi20jNVOzngrrBxYMzrGyLJy2FF3lgcL3QWLZUxEHZpzoZqwqf9YIjSIetw21WuH81DXn1UUBsAWqK/Ps2kr156B5JGQFi6zKqYs7xs61Qep82HrfH41X5raqgFfiH7bXKM9pPDZ9+0yFGSu9xe028OoJb/3MFsQTIT2xWwtY5I3UYJoDSAG0At0uVgJlliDFd49p2K+1BxILWhr0zKBFLDSZ6WVTN6jkVW0cobzBrY8c6+N/7wviH1mH9/HmvzY86SnNy6y7dkPigYc+lGVRSayP2+S8yUEot8oLyz+6/ZY647iW8+HeYXWjmWmEo4b0MqpBWudRfCPkoRfms6sAK4PtB7SovlXOsXZzGS/XpBBHE5iRdaau5WOYslLJ+7HKo2w==", + "RequestBody": "yyUVnILyAMuNXrHSZpYgzHQ6JTIRtIOOE0ISDzet6ZUVdUAmmx56K0nTFWrW9Yys9OLjSF39FBehh4g/3/GU33QbvfFV\u002BTFWv/rpPp8ZuB62ZhpUyaE3F2AphROVOktYPzX1ujeaVvuxjYhjFNZ4iM5qiXnWPxbS5KWQLHQdwISukf5pI/3mGw8fojwY0wOJsPxFK7HSgf8fItaRCimHlM0EtYPXDmTQhG1ptpzZuhCiB3x315XT2w//SgAnVBHlmA1vFB5/sqGXdKZDaMpiRWjF7wOtD704MNl02MNjqS9chB6PaqbyI1Ta32Puj3NEnAWYYWUOOIhQNuNEC9ndNMp35\u002BSs09rB08yu0jBZSaFmLzu\u002BykjKTUuVPjPCrhd7/KuYd6ePl8kq1o2ZYGVY9\u002BxC3tueH2mCrJmYF5Wm/yW0M9aEwNL51phyk/S6Me3mPEdGgNA83N1CFsoO94Azg9do5SyP0zYZSQdDK4t0yHusstpOX35Vd1b4QqoI698YPg8cUUzAVmgQLDfI\u002BbBRzU1PYUSl5SNYE23WlpGLEV4nK\u002B17WHYu61tyPTNHjH6lpnVcuYmac1jrwz7e6sDXhRvYoM3D1nTXIHbpM6jwEIbuMe8bLljUjLiUj5Q3TwGbmrgXbuuw4dAAhZgTsUCv\u002BrK477jQu1bCAxQVLkbgn9B0Tpjw2aGaPk8eG6nAwdt45JThf2BIyt9hVWvXmrOKIOXHnmKnvyEQHbFpsaCtAkI4nUmx/h9wLIO5joQ2wqOclPvD\u002BCN50CVz0GKu3xk/tFIon/1p2SHGV3Le7jCd2loNzR2k6Qoevs0kPi69wkxqedoxDSOmM7ra/aGwm\u002BH01fYHoBH7mstICuEvRJvyCJUlc3RWbMw3Z5ljyuxpbSPrL2g4tSE6b98P6QNCdu4e5/QLiydsnmgq0Dl4mM/e35y9RBQyulJz6gSVR4PI9fCqROP3XeL8fpH/DeXowtYPMAlnhDLa6yyimKEi11flYttIzVTs54K6wcWDM6xsiycthRd5YHC90Fi2VMRB2ac6GasKn/WCI0iHrcNtVrh/NQ159VFAbAFqivz7NpK9eegeSRkBYusyqmLO8bOtUHqfNh63x\u002BNV\u002Ba2qoBX4h\u002B21yjPaTw2fftMhRkrvcXtNvDqCW/9zBbEEyE9sVsLWOSN1GCaA0gBtALdLlYCZZYgxXePadivtQcSC1oa9MygRSw0mellUzeo5FVtHKG8wa2PHOvjf\u002B8L4h9Zh/fx5r82POkpzcusu3ZD4oGHPpRlUUmsj9vkvMlBKLfKC8s/uv2WOuO4lvPh3mF1o5lphKOG9DKqQVrnUXwj5KEX5rOrACuD7Qe0qL5VzrF2cxkv16QQRxA==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "gc31eZRjS3DVf1nhcht7iw==", - "Date": "Fri, 04 Jun 2021 18:41:57 GMT", - "ETag": "\"0x8D927886EDBBCCD\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:57 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "9b03e7e7-77ad-874f-9544-0200c02d7129", - "x-ms-content-crc64": "4GkDOkz1HT0=", - "x-ms-request-id": "b5c95616-101e-001b-7071-5945f9000000", + "Content-Length": "0", + "Content-MD5": "3sJj1aG1Iosk\u002BLdjtxciBA==", + "Date": "Wed, 11 Aug 2021 19:42:36 GMT", + "ETag": "\u00220x8D95D002BFC41DB\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:36 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "f3e66579-dd92-1d15-aa5c-3898bc043e40", + "x-ms-content-crc64": "OiK5y8yfXXA=", + "x-ms-request-id": "b1229f66-d01e-004a-3ee9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:57.8575831Z" + "x-ms-version-id": "2021-08-11T19:42:36.8971227Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a29f4a1e-87c8-f2c8-4314-af5882833026/test-blob-847b701e-1d1d-0832-0f3f-bf4f81bf2a27", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-9b03e7e7-77ad-874f-9544-0200c02d7129", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-b1d4aefc880c2b489e0052e86859a1ec-0cbb1adf6de7a542-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "4c7a0eeb-b989-ca22-b5fb-8c6db70006d5", - "x-ms-copy-source": "https://seanoauthstage.blob.core.windows.net/test-container-a29f4a1e-87c8-f2c8-4314-af5882833026/test-blob-9c1525cb-f282-cb00-8d5e-b1d2669620cc", - "x-ms-date": "Fri, 04 Jun 2021 18:41:58 GMT", + "traceparent": "00-2eeb36a5e819aa42948a994963a4d2e8-b21392b3b903264c-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "04967256-0c6e-022e-155f-5e4eda145d7c", + "x-ms-copy-source": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-a29f4a1e-87c8-f2c8-4314-af5882833026", + "x-ms-date": "Wed, 11 Aug 2021 19:42:36 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:58 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:36 GMT", "x-ms-legal-hold": "true", "x-ms-requires-sync": "true", "x-ms-return-client-request-id": "true", @@ -64,37 +55,31 @@ "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:57 GMT", - "ETag": "\"0x8D927886EF11187\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:57 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "4c7a0eeb-b989-ca22-b5fb-8c6db70006d5", - "x-ms-content-crc64": "4GkDOkz1HT0=", - "x-ms-copy-id": "d369a3ef-d747-4237-94ee-1553243c7af7", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:36 GMT", + "ETag": "\u00220x8D95D002C10E431\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:37 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "04967256-0c6e-022e-155f-5e4eda145d7c", + "x-ms-content-crc64": "OiK5y8yfXXA=", + "x-ms-copy-id": "c2011096-cb94-4546-affb-ce835969f7f1", "x-ms-copy-status": "success", - "x-ms-request-id": "b5c95617-101e-001b-7171-5945f9000000", + "x-ms-request-id": "b1229fdf-d01e-004a-24e9-8e693e000000", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:58.0324819Z" + "x-ms-version-id": "2021-08-11T19:42:37.0462272Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a29f4a1e-87c8-f2c8-4314-af5882833026/test-blob-847b701e-1d1d-0832-0f3f-bf4f81bf2a27", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-9b03e7e7-77ad-874f-9544-0200c02d7129", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-d7b79079e96b554ab421231e97feced4-db73b94e35700440-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "726443e2-dd45-9c9e-50cb-4f7380c04a14", - "x-ms-date": "Fri, 04 Jun 2021 18:41:58 GMT", + "traceparent": "00-da99e1039c41c946b0726ae649e6f7f7-8e2050a6b81cbb4a-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "4daadb1a-6c97-12ba-4178-6fbebee32dfa", + "x-ms-date": "Wed, 11 Aug 2021 19:42:37 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -103,201 +88,40 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "gc31eZRjS3DVf1nhcht7iw==", + "Content-MD5": "3sJj1aG1Iosk\u002BLdjtxciBA==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 18:41:57 GMT", - "ETag": "\"0x8D927886EF11187\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:57 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:36 GMT", + "ETag": "\u00220x8D95D002C10E431\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:37 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "726443e2-dd45-9c9e-50cb-4f7380c04a14", - "x-ms-copy-completion-time": "Fri, 04 Jun 2021 18:41:57 GMT", - "x-ms-copy-id": "d369a3ef-d747-4237-94ee-1553243c7af7", + "x-ms-client-request-id": "4daadb1a-6c97-12ba-4178-6fbebee32dfa", + "x-ms-copy-completion-time": "Wed, 11 Aug 2021 19:42:37 GMT", + "x-ms-copy-id": "c2011096-cb94-4546-affb-ce835969f7f1", "x-ms-copy-progress": "1024/1024", - "x-ms-copy-source": "https://seanoauthstage.blob.core.windows.net/test-container-a29f4a1e-87c8-f2c8-4314-af5882833026/test-blob-9c1525cb-f282-cb00-8d5e-b1d2669620cc", + "x-ms-copy-source": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-a29f4a1e-87c8-f2c8-4314-af5882833026", "x-ms-copy-status": "success", - "x-ms-creation-time": "Fri, 04 Jun 2021 18:41:57 GMT", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:37 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:58 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:36 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "b5c9561d-101e-001b-7471-5945f9000000", + "x-ms-request-id": "b122a07e-d01e-004a-39e9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:58.0324819Z" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a29f4a1e-87c8-f2c8-4314-af5882833026?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "748b91cd-939b-3c8f-3c0d-fdcb1c469280", - "x-ms-date": "Fri, 04 Jun 2021 18:41:58 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:57 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "748b91cd-939b-3c8f-3c0d-fdcb1c469280", - "x-ms-request-id": "b5c9561e-101e-001b-7571-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-847b701e-1d1d-0832-0f3f-bf4f81bf2a272021-06-04T18:41:58.0324819ZtrueFri, 04 Jun 2021 18:41:57 GMTFri, 04 Jun 2021 18:41:57 GMT0x8D927886EF111871024application/octet-stream4GkDOkz1HT0=gc31eZRjS3DVf1nhcht7iw==BlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 18:46:58 GMTunlockedtruetest-blob-9c1525cb-f282-cb00-8d5e-b1d2669620cc2021-06-04T18:41:57.8575831ZtrueFri, 04 Jun 2021 18:41:57 GMTFri, 04 Jun 2021 18:41:57 GMT0x8D927886EDBBCCD1024application/octet-streamgc31eZRjS3DVf1nhcht7iw==BlockBlobHottrueunlockedavailabletrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a29f4a1e-87c8-f2c8-4314-af5882833026/test-blob-847b701e-1d1d-0832-0f3f-bf4f81bf2a27?comp=legalhold", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-bbaab9c78e02a44a8891006b4cbda42d-ee59fbd6ea3e2e42-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "eea57ebe-d635-c578-f9f7-c25c1218620d", - "x-ms-date": "Fri, 04 Jun 2021 18:41:58 GMT", - "x-ms-legal-hold": "false", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:57 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "eea57ebe-d635-c578-f9f7-c25c1218620d", - "x-ms-legal-hold": "false", - "x-ms-request-id": "b5c95623-101e-001b-7971-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a29f4a1e-87c8-f2c8-4314-af5882833026/test-blob-847b701e-1d1d-0832-0f3f-bf4f81bf2a27?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-76e7fc7e70902f4b87fa37bea9df6429-c396194eb1fb5949-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "9e0d10ba-a4a1-574b-e2a0-3bb86c34c045", - "x-ms-date": "Fri, 04 Jun 2021 18:41:59 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:58 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "9e0d10ba-a4a1-574b-e2a0-3bb86c34c045", - "x-ms-request-id": "b5c95624-101e-001b-7a71-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a29f4a1e-87c8-f2c8-4314-af5882833026/test-blob-847b701e-1d1d-0832-0f3f-bf4f81bf2a27", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-59b496709774ec4ba8da862519ff25d1-dc83d7c252913b4f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "01a1138e-c30b-306c-3e8a-0c5d9c6833cc", - "x-ms-date": "Fri, 04 Jun 2021 18:41:59 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:58 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "01a1138e-c30b-306c-3e8a-0c5d9c6833cc", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "b5c95625-101e-001b-7b71-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a29f4a1e-87c8-f2c8-4314-af5882833026/test-blob-9c1525cb-f282-cb00-8d5e-b1d2669620cc", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-4491248cc8ec104eae2b9ec40973b9d9-12721e9bd6b38d4f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "582af34e-be92-bf3a-a4d8-0a21589149f4", - "x-ms-date": "Fri, 04 Jun 2021 18:41:59 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:58 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "582af34e-be92-bf3a-a4d8-0a21589149f4", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "b5c95626-101e-001b-7c71-5945f9000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:37.0462272Z" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T13:41:58.5986276-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:36.9584409-07:00", "RandomSeed": "875860913", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/Upload_ImmutableStorageWithVersioning(False).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/Upload_ImmutableStorageWithVersioning(False).json index 0cfface87e4d2..8319d5c23b39b 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/Upload_ImmutableStorageWithVersioning(False).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/Upload_ImmutableStorageWithVersioning(False).json @@ -1,61 +1,52 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d94d9a2e-0b82-d52a-80b1-b697c52ca2b9/test-blob-8a6e5b6f-e880-7d66-a607-9e80caf74769", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-d94d9a2e-0b82-d52a-80b1-b697c52ca2b9", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-c35e74bafc81e742a7d6fb6302b2f379-4b393a90ccb4614b-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-7770bd6eb2254f4f8a81b80c6cd0798e-30ce978533027f42-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "fe70b602-6eda-43ce-7873-a1df0581f604", - "x-ms-date": "Fri, 04 Jun 2021 18:41:23 GMT", + "x-ms-client-request-id": "1bf33119-b094-1a39-6aa4-a61770208b3b", + "x-ms-date": "Wed, 11 Aug 2021 19:42:27 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:23 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:27 GMT", "x-ms-legal-hold": "true", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "i4ER+Rq++Ye8MF0flC6ihDtUhY5S66hFNNAze22qC4hpTAtDG6ifsGLmzVCLRuh3ZBpEdnK5F6DYy8VJi34aEiTUtkgjX2iTtNQsax1Yuu7ouxdTZZUWsDVqak/jViTkzLsrto+fUwSxscGdjKuDgBHWYM9nxq2PvgYSufQYr16vSJ9hLQReSGgSobPTeCOK5+o+DPVUfQUNnPeJjJoQmAFi7UQLIVMMdxhnVCT5u0XiiNEK2qNpWsqZU5EM1bvNAgmxcIrefsaXMZTc7SjgFOCypgPIBb5e+ZJ5cc3BAKJcmlIbSEq7AwoLc6gOjG2iuT+wWi+3BfxKUnf3ZQz41THygFPVxMyV9qL5vJIWUG0l17iNEaZzpJRW0fXTw579Ep12HAwazPRzG2OMvkhpMwIJ0o1Ta8SKftu+f/PWwjMD+6r0oDRhCgrEGfZD5uZM7J3yyfEQqqfZ650wXE0AnFgviMKedJPOqMeDj1HNR5f0cZJV5PhC81EDG7SWMK68w3ydE14jrngKJCEpjRtVC6QFPOq7q7hg7ZVxmlnfN3gZxsvVMDM50MIZS8DXGWU2rQ8PkPTDARjEPCbIshMeKuyoEMZPgNtxzGsnoV/4idQvO+1K0KaEVcWzEPQMcB6v+yHULgif5y0znsSJnGC4zLNSmXcm1FpFJLoBm2/nZFtMeKY+I1rLkFO/FjLi+7lk+kRAudemiCbHjgpOnUu+TDlpPCO6eqhYhwgjZ74oYikBnKArpqqDpu9/d5RQffIIAcn4eL6VqoCc6DLOgyFonyzgTAGqk6aO5ZUzOgMTBwoWGmX0L+pqa/Igjr14tCPOFthobzDwXW4japMpYnB9iOAnuGi7dG9CduAPigToFTFyZSMqqpfZJb330MRWQQmCogbdUPy7EqJoJvlP4dNqO1Vhtv1MUt5ITpKqxKOr6zXXjej9C8U0t1KAwoOeiUPpjZVv9YoMNU8olAJqEE7/vDvEeFTrbDCPLf+qy5BaqsROwDYNPPaqy1eY1XbCyqcEgQVH2RHv/iFl38eLYWm/zek9HE8X8oBFGqz9Upa5zWNYpkqKEtCyX8IVp1wuH2ru2AiMhK1X7I6FAr9k8ayKrBJkMrofNboYi7yNAUojF/pCD3qNLEi1ALm7BBARTm0VivpKyuyvz6JNc/nwyupEYevFIeIx/X/KrjIAYzGqBzxPd3dP2UwOkkDXQLhOxDbOd6IlTCyL4417gBu6rmtxo2y9oVNz9Iieto6iWrzHe+n8MeuOhbsPxJPp1FkxU+PUZZxMkSLiW4MahpWd6InQtAQxvn1/4x6xrd3AiR8vbWOqzfQgeurHGdZoc/4mctsJGSBU/5VmVIF+m+RFItFj6w==", + "RequestBody": "b1tuioDoZn2mB56AyvdHaYuBEfkavvmHvDBdH5QuooQ7VIWOUuuoRTTQM3ttqguIaUwLQxuon7Bi5s1Qi0bod2QaRHZyuReg2MvFSYt\u002BGhIk1LZII19ok7TULGsdWLru6LsXU2WVFrA1ampP41Yk5My7K7aPn1MEsbHBnYyrg4AR1mDPZ8atj74GErn0GK9er0ifYS0EXkhoEqGz03gjiufqPgz1VH0FDZz3iYyaEJgBYu1ECyFTDHcYZ1Qk\u002BbtF4ojRCtqjaVrKmVORDNW7zQIJsXCK3n7GlzGU3O0o4BTgsqYDyAW\u002BXvmSeXHNwQCiXJpSG0hKuwMKC3OoDoxtork/sFovtwX8SlJ392UM\u002BNUx8oBT1cTMlfai\u002BbySFlBtJde4jRGmc6SUVtH108Oe/RKddhwMGsz0cxtjjL5IaTMCCdKNU2vEin7bvn/z1sIzA/uq9KA0YQoKxBn2Q\u002BbmTOyd8snxEKqn2eudMFxNAJxYL4jCnnSTzqjHg49RzUeX9HGSVeT4QvNRAxu0ljCuvMN8nRNeI654CiQhKY0bVQukBTzqu6u4YO2VcZpZ3zd4GcbL1TAzOdDCGUvA1xllNq0PD5D0wwEYxDwmyLITHirsqBDGT4DbccxrJ6Ff\u002BInULzvtStCmhFXFsxD0DHAer/sh1C4In\u002BctM57EiZxguMyzUpl3JtRaRSS6AZtv52RbTHimPiNay5BTvxYy4vu5ZPpEQLnXpogmx44KTp1Lvkw5aTwjunqoWIcII2e\u002BKGIpAZygK6aqg6bvf3eUUH3yCAHJ\u002BHi\u002BlaqAnOgyzoMhaJ8s4EwBqpOmjuWVMzoDEwcKFhpl9C/qamvyII69eLQjzhbYaG8w8F1uI2qTKWJwfYjgJ7hou3RvQnbgD4oE6BUxcmUjKqqX2SW999DEVkEJgqIG3VD8uxKiaCb5T\u002BHTajtVYbb9TFLeSE6SqsSjq\u002Bs1143o/QvFNLdSgMKDnolD6Y2Vb/WKDDVPKJQCahBO/7w7xHhU62wwjy3/qsuQWqrETsA2DTz2qstXmNV2wsqnBIEFR9kR7/4hZd/Hi2Fpv83pPRxPF/KARRqs/VKWuc1jWKZKihLQsl/CFadcLh9q7tgIjIStV\u002ByOhQK/ZPGsiqwSZDK6HzW6GIu8jQFKIxf6Qg96jSxItQC5uwQQEU5tFYr6Ssrsr8\u002BiTXP58MrqRGHrxSHiMf1/yq4yAGMxqgc8T3d3T9lMDpJA10C4TsQ2zneiJUwsi\u002BONe4Abuq5rcaNsvaFTc/SInraOolq8x3vp/DHrjoW7D8ST6dRZMVPj1GWcTJEi4luDGoaVneiJ0LQEMb59f\u002BMesa3dwIkfL21jqs30IHrqxxnWaHP\u002BJnLbCQ==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "ORbBf7jRL/FL5mKy7x1lJQ==", - "Date": "Fri, 04 Jun 2021 18:41:22 GMT", - "ETag": "\"0x8D9278859EB3A3D\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:22 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "fe70b602-6eda-43ce-7873-a1df0581f604", - "x-ms-content-crc64": "WEo76erRzlA=", - "x-ms-request-id": "16dfedc5-301e-0008-5a71-5976b8000000", + "Content-Length": "0", + "Content-MD5": "qq00Dm22Q92VGhhFaoMwrQ==", + "Date": "Wed, 11 Aug 2021 19:42:27 GMT", + "ETag": "\u00220x8D95D0026747505\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:27 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "1bf33119-b094-1a39-6aa4-a61770208b3b", + "x-ms-content-crc64": "PvUApElRl58=", + "x-ms-request-id": "b1227bf4-d01e-004a-51e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:22.7259453Z" + "x-ms-version-id": "2021-08-11T19:42:27.6185349Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d94d9a2e-0b82-d52a-80b1-b697c52ca2b9/test-blob-8a6e5b6f-e880-7d66-a607-9e80caf74769", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-d94d9a2e-0b82-d52a-80b1-b697c52ca2b9", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-35edd65beb681a48b2abeb7e28a94037-78a8a6896293a44c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "6c43a910-6461-ab10-63af-a2210f5915e9", - "x-ms-date": "Fri, 04 Jun 2021 18:41:23 GMT", + "traceparent": "00-969bd734e6736142abc15749018f3fb6-5586687a16fe8c4a-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "f4e48804-c07e-6875-e739-94f0c03d115e", + "x-ms-date": "Wed, 11 Aug 2021 19:42:27 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -64,165 +55,35 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "ORbBf7jRL/FL5mKy7x1lJQ==", + "Content-MD5": "qq00Dm22Q92VGhhFaoMwrQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 18:41:22 GMT", - "ETag": "\"0x8D9278859EB3A3D\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:22 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:27 GMT", + "ETag": "\u00220x8D95D0026747505\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:27 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "6c43a910-6461-ab10-63af-a2210f5915e9", - "x-ms-creation-time": "Fri, 04 Jun 2021 18:41:22 GMT", + "x-ms-client-request-id": "f4e48804-c07e-6875-e739-94f0c03d115e", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:27 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:23 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:27 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "16dfedc7-301e-0008-5b71-5976b8000000", + "x-ms-request-id": "b1227c8c-d01e-004a-49e9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:22.7259453Z" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d94d9a2e-0b82-d52a-80b1-b697c52ca2b9?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-a4340d6abca932498b620ff0c54f0573-3d9b5c3fc7cc8249-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "5ccf4361-8a3d-9fa2-7739-90cf1d54598d", - "x-ms-date": "Fri, 04 Jun 2021 18:41:23 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:22 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "5ccf4361-8a3d-9fa2-7739-90cf1d54598d", - "x-ms-request-id": "16dfedc9-301e-0008-5c71-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-8a6e5b6f-e880-7d66-a607-9e80caf747692021-06-04T18:41:22.7259453ZtrueFri, 04 Jun 2021 18:41:22 GMTFri, 04 Jun 2021 18:41:22 GMT0x8D9278859EB3A3D1024application/octet-streamORbBf7jRL/FL5mKy7x1lJQ==BlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 18:46:23 GMTunlockedtrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d94d9a2e-0b82-d52a-80b1-b697c52ca2b9/test-blob-8a6e5b6f-e880-7d66-a607-9e80caf74769?comp=legalhold", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-92ea7a221b8dfc4a9732d8d14168bc1c-767bb6dadafa2a4c-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "cbbf672b-b88a-23ab-fe72-700206ec24ec", - "x-ms-date": "Fri, 04 Jun 2021 18:41:23 GMT", - "x-ms-legal-hold": "false", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:22 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "cbbf672b-b88a-23ab-fe72-700206ec24ec", - "x-ms-legal-hold": "false", - "x-ms-request-id": "16dfedcc-301e-0008-5d71-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d94d9a2e-0b82-d52a-80b1-b697c52ca2b9/test-blob-8a6e5b6f-e880-7d66-a607-9e80caf74769?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-3195f9d76ef2184cbf1e23b5e6965cb9-9b7992282cca344f-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "b5a30a67-8d94-6b03-ff1e-1fb9b8207300", - "x-ms-date": "Fri, 04 Jun 2021 18:41:23 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:22 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "b5a30a67-8d94-6b03-ff1e-1fb9b8207300", - "x-ms-request-id": "16dfedcd-301e-0008-5e71-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-d94d9a2e-0b82-d52a-80b1-b697c52ca2b9/test-blob-8a6e5b6f-e880-7d66-a607-9e80caf74769", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-e6ddfebb122cc846a453e196a1c816b9-d772cbb564143c41-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "fb9b681f-6e48-1f57-8611-2e7c45557f00", - "x-ms-date": "Fri, 04 Jun 2021 18:41:23 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:22 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "fb9b681f-6e48-1f57-8611-2e7c45557f00", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "16dfedcf-301e-0008-6071-5976b8000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:27.6185349Z" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T13:41:23.0252706-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:27.5405298-07:00", "RandomSeed": "1115969803", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/Upload_ImmutableStorageWithVersioning(False)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/Upload_ImmutableStorageWithVersioning(False)Async.json index d0cdc15231958..cd526b4e2433e 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/Upload_ImmutableStorageWithVersioning(False)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/Upload_ImmutableStorageWithVersioning(False)Async.json @@ -1,61 +1,52 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a4a8b4a6-ae03-36fd-ed9b-750f14b8f359/test-blob-31cf0951-9318-99c1-10a9-2e74c712b902", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-a4a8b4a6-ae03-36fd-ed9b-750f14b8f359", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "traceparent": "00-d75cd8593168e14596536862b38d8afd-5abf7e4f02ab6d40-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], + "traceparent": "00-dae09e5eeda70049b649df6e126d9053-b5eb1d58bf0f6e49-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "3eb07617-6949-22f5-c1a4-909796046558", - "x-ms-date": "Fri, 04 Jun 2021 18:41:42 GMT", + "x-ms-client-request-id": "e050414a-fed2-b6fa-2e97-0c897d338244", + "x-ms-date": "Wed, 11 Aug 2021 19:42:41 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:42 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:41 GMT", "x-ms-legal-hold": "true", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "feQwN+LIDiBtpNF/t3hyM5KnVewHtM0T8w6UWoCJb9ric5IviLx2ifuvw3PBQeKYNvrhH73N+sgXHETUNLOf5DX3nUTmQ6rWMcvxWPFZUrEs/COFqE8cFHjJF2x4olVHD98+yaSdsfNQCu7x3KHXvcmSqDiQGjzl2ojLHCs+Xo52qUgSG4kMjkovNZ1gKjjX8lqi5fkdtvWjWO4c0ZXIEaxfezJZxaI/hhntYeSehLBQ9CnQm3mVWfJSb8Kb8L20ZiPwAa8Ffi23Yl7fL1UQBNM+y9xr93UzyiFABlbgpJZcOfrBroMAS3b8GTkatSqdQWruXCTgSW+tvTaOxHfX173Ig/ZbT1VQPoBlb948GRT3o8Tr8Uhxe++KE/BNcYb+JEF7UjIzQfIVnh6ketmQcaQiliGz7OV1VgcG0DxlA8z5Z0qcwMfiw2HS1VMpzQAW+qJMKtpkSzhbBfsqLXC1r5pRqhOP87DdP9LA4RaRS4gH8NaaGNjxlRsSQLvLt5bwHCa51yPshwbxb+sIpGohyrpyIzyaG5fCYBX3fLP1EYg8z8Tw2HNlGmnQqKnt6fCx8HYBWJNZVgCO9ncN9ApS/F1iy9WlMfFGDAnTyXLt1XYkRos89Ln04njDYeL8WCVefaxLih0bDL+Fu0uKhY2OoCEA6K5+Fgekbulc4c8PSbTkdUvGokpZCTnMtjltaVzrNcDA+29232ekpxs0vivvdXGXphBByP7Wp951sV/ONwSMcasPTk5FbZXkIfouJEsO3UHH1sNMqW3B6lOQAC4H1nAXp0x/4CcjUTh6XKYEp4OTZ9QeBmBBQMc9TWT6tGxn3UqKF3z+jv0ZpISK0U3GvULQ/ZlZ6NAP1meEQZLDKJ3LE39bepAGlNnXBWHctm96dpAhKbbTDvR6ekEVeUxqVnvmv77Oa0KyyWjAguNuMx/4CsoCof/n+AWK4f9O8RqMbK7l9fewrAtNbl9NE4sRDEchHW+BaLR8/8e4RIlDY9hOMxU0iD0oR16+tDKfmeR5eNS4LNSrCgT5afYw92iBCgqH/+B23IMJ+dUQwrOC3WbiP8u0ijYEoigROx9H90/2PaonGJkEApxRrjP+mkhQd4uQTbidzH/Tgly3ZaFkwgKGGoUJWsXM3jwuY9wDBgjgwMOTtqmXWXAqU5U9TJ377Osxd4DCRx3GxG97bmmj0HtU1qXd0QxY78EV3gYvjpGfM3bw0o6HHnmmzfI5G+oHh4MZ6Hb4Hhvf2Ii/rGgXljXe2zvysv3tzLgrNwQZH9PWDlaCFqYbpxRbEfoFyHEQjza9W0CvFNSFLBu9zOYXxrm16J4SlICPwzMml6ED5wRHG6jNXMOTJvmB/OmKXdstQw==", + "RequestBody": "UQnPMRiTwZkQqS50xxK5An3kMDfiyA4gbaTRf7d4cjOSp1XsB7TNE/MOlFqAiW/a4nOSL4i8don7r8NzwUHimDb64R\u002B9zfrIFxxE1DSzn\u002BQ1951E5kOq1jHL8VjxWVKxLPwjhahPHBR4yRdseKJVRw/fPsmknbHzUAru8dyh173Jkqg4kBo85dqIyxwrPl6OdqlIEhuJDI5KLzWdYCo41/JaouX5Hbb1o1juHNGVyBGsX3syWcWiP4YZ7WHknoSwUPQp0Jt5lVnyUm/Cm/C9tGYj8AGvBX4tt2Je3y9VEATTPsvca/d1M8ohQAZW4KSWXDn6wa6DAEt2/Bk5GrUqnUFq7lwk4Elvrb02jsR319e9yIP2W09VUD6AZW/ePBkU96PE6/FIcXvvihPwTXGG/iRBe1IyM0HyFZ4epHrZkHGkIpYhs\u002BzldVYHBtA8ZQPM\u002BWdKnMDH4sNh0tVTKc0AFvqiTCraZEs4WwX7Ki1wta\u002BaUaoTj/Ow3T/SwOEWkUuIB/DWmhjY8ZUbEkC7y7eW8Bwmudcj7IcG8W/rCKRqIcq6ciM8mhuXwmAV93yz9RGIPM/E8NhzZRpp0Kip7enwsfB2AViTWVYAjvZ3DfQKUvxdYsvVpTHxRgwJ08ly7dV2JEaLPPS59OJ4w2Hi/FglXn2sS4odGwy/hbtLioWNjqAhAOiufhYHpG7pXOHPD0m05HVLxqJKWQk5zLY5bWlc6zXAwPtvdt9npKcbNL4r73Vxl6YQQcj\u002B1qfedbFfzjcEjHGrD05ORW2V5CH6LiRLDt1Bx9bDTKltwepTkAAuB9ZwF6dMf\u002BAnI1E4elymBKeDk2fUHgZgQUDHPU1k\u002BrRsZ91Kihd8/o79GaSEitFNxr1C0P2ZWejQD9ZnhEGSwyidyxN/W3qQBpTZ1wVh3LZvenaQISm20w70enpBFXlMalZ75r\u002B\u002BzmtCsslowILjbjMf\u002BArKAqH/5/gFiuH/TvEajGyu5fX3sKwLTW5fTROLEQxHIR1vgWi0fP/HuESJQ2PYTjMVNIg9KEdevrQyn5nkeXjUuCzUqwoE\u002BWn2MPdogQoKh//gdtyDCfnVEMKzgt1m4j/LtIo2BKIoETsfR/dP9j2qJxiZBAKcUa4z/ppIUHeLkE24ncx/04Jct2WhZMIChhqFCVrFzN48LmPcAwYI4MDDk7apl1lwKlOVPUyd\u002B\u002BzrMXeAwkcdxsRve25po9B7VNal3dEMWO/BFd4GL46RnzN28NKOhx55ps3yORvqB4eDGeh2\u002BB4b39iIv6xoF5Y13ts78rL97cy4KzcEGR/T1g5WghamG6cUWxH6BchxEI82vVtArxTUhSwbvczmF8a5teieEpSAj8MzJpehA\u002BcERw==", "StatusCode": 201, "ResponseHeaders": { - "Content-MD5": "gCi3aj3ZcL/SV59heQvWoQ==", - "Date": "Fri, 04 Jun 2021 18:41:41 GMT", - "ETag": "\"0x8D92788651A19C1\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:41 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "3eb07617-6949-22f5-c1a4-909796046558", - "x-ms-content-crc64": "98NA1Ob8skw=", - "x-ms-request-id": "16dfee5d-301e-0008-3b71-5976b8000000", + "Content-Length": "0", + "Content-MD5": "VfluSSu\u002Bxoy40dNXliGbuw==", + "Date": "Wed, 11 Aug 2021 19:42:40 GMT", + "ETag": "\u00220x8D95D002EBF3DB3\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:41 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "e050414a-fed2-b6fa-2e97-0c897d338244", + "x-ms-content-crc64": "W6u3ZHfGeWM=", + "x-ms-request-id": "b122aefd-d01e-004a-32e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:41.4880705Z" + "x-ms-version-id": "2021-08-11T19:42:41.5304115Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a4a8b4a6-ae03-36fd-ed9b-750f14b8f359/test-blob-31cf0951-9318-99c1-10a9-2e74c712b902", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-a4a8b4a6-ae03-36fd-ed9b-750f14b8f359", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-2d4b5ca42d567c49923630c6cbfd72c6-beafe53c14319d40-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "e672a579-ef2a-e1f9-4b2d-1e2e6d621f29", - "x-ms-date": "Fri, 04 Jun 2021 18:41:42 GMT", + "traceparent": "00-01cbc2ddb95aea4da65fb4ea635cc6e1-b269106295054748-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c25653f8-2397-1d74-ad17-2e2b869d7c4e", + "x-ms-date": "Wed, 11 Aug 2021 19:42:41 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -64,164 +55,35 @@ "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "1024", - "Content-MD5": "gCi3aj3ZcL/SV59heQvWoQ==", + "Content-MD5": "VfluSSu\u002Bxoy40dNXliGbuw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 18:41:41 GMT", - "ETag": "\"0x8D92788651A19C1\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:41 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:41 GMT", + "ETag": "\u00220x8D95D002EBF3DB3\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:41 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "e672a579-ef2a-e1f9-4b2d-1e2e6d621f29", - "x-ms-creation-time": "Fri, 04 Jun 2021 18:41:41 GMT", + "x-ms-client-request-id": "c25653f8-2397-1d74-ad17-2e2b869d7c4e", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:41 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:42 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:41 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "16dfee5e-301e-0008-3c71-5976b8000000", + "x-ms-request-id": "b122afac-d01e-004a-49e9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:41.4880705Z" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a4a8b4a6-ae03-36fd-ed9b-750f14b8f359?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "f11d4128-7e92-092d-5975-76690546af4b", - "x-ms-date": "Fri, 04 Jun 2021 18:41:42 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:41 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "f11d4128-7e92-092d-5975-76690546af4b", - "x-ms-request-id": "16dfee60-301e-0008-3d71-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-31cf0951-9318-99c1-10a9-2e74c712b9022021-06-04T18:41:41.4880705ZtrueFri, 04 Jun 2021 18:41:41 GMTFri, 04 Jun 2021 18:41:41 GMT0x8D92788651A19C11024application/octet-streamgCi3aj3ZcL/SV59heQvWoQ==BlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 18:46:42 GMTunlockedtrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a4a8b4a6-ae03-36fd-ed9b-750f14b8f359/test-blob-31cf0951-9318-99c1-10a9-2e74c712b902?comp=legalhold", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-818bc6913765cc4d8a55ffa0da2f27c9-7cc1ea700e80614b-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "2c05fa91-2e44-b396-8687-d0664a43eebc", - "x-ms-date": "Fri, 04 Jun 2021 18:41:42 GMT", - "x-ms-legal-hold": "false", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:41 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "2c05fa91-2e44-b396-8687-d0664a43eebc", - "x-ms-legal-hold": "false", - "x-ms-request-id": "16dfee61-301e-0008-3e71-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a4a8b4a6-ae03-36fd-ed9b-750f14b8f359/test-blob-31cf0951-9318-99c1-10a9-2e74c712b902?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-22eed6ba5f99394a8ecfa1bd4a5ff377-434b3887ffe7ea48-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "0bd7f4d0-8340-c906-6e46-4c86810b6fb5", - "x-ms-date": "Fri, 04 Jun 2021 18:41:42 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:41 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "0bd7f4d0-8340-c906-6e46-4c86810b6fb5", - "x-ms-request-id": "16dfee62-301e-0008-3f71-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-a4a8b4a6-ae03-36fd-ed9b-750f14b8f359/test-blob-31cf0951-9318-99c1-10a9-2e74c712b902", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-1c3365ffb4263b479af66a6633a98c39-36a7fc4817601b46-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "55963edb-e36b-5f7b-3f70-c9897c9055c3", - "x-ms-date": "Fri, 04 Jun 2021 18:41:42 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:41 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "55963edb-e36b-5f7b-3f70-c9897c9055c3", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "16dfee63-301e-0008-4071-5976b8000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:41.5304115Z" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T13:41:42.1518121-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:41.4155048-07:00", "RandomSeed": "216042087", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/Upload_ImmutableStorageWithVersioning(True).json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/Upload_ImmutableStorageWithVersioning(True).json index ffb51ae5e297b..95081237adf3e 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/Upload_ImmutableStorageWithVersioning(True).json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/Upload_ImmutableStorageWithVersioning(True).json @@ -1,129 +1,108 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-84844935-5830-b1d9-25cd-b6d0a86083ac/test-blob-53b01450-c1d4-c5f5-f548-b0081ff82ce9?comp=block&blockid=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-84844935-5830-b1d9-25cd-b6d0a86083ac?comp=block\u0026blockid=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "512", "Content-Type": "application/octet-stream", - "traceparent": "00-f37c36fe792aa94eb149b89f7dbed8ea-bf490a9270bab54d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "bfb96fe1-efc0-d90d-f6e7-01a5e6679473", - "x-ms-date": "Fri, 04 Jun 2021 18:41:26 GMT", + "traceparent": "00-a8d0ae7bea42ac4d983b7debae9c65d5-7364230c05719541-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "c03b1cd2-db93-eeed-fe02-3d0cc9e062ac", + "x-ms-date": "Wed, 11 Aug 2021 19:42:27 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "sXK/L9jgw1Qu4HEvZZHy0aeY+Wj3F/50U76O6KjRkSyhzR41oVPTb1FcJPNQxmBkVd9ghv7E8pp0S9sZUdusXE5EjZhyvC9TxIkXmvIKJI1eKpLIcAou3dqEwVV4uR51r8elCzjH8ZivDcJ1rFenaSZOuydI4+xDFrC+7vva2wproeoqZBlUlzj5GWNIuTCC3VgvKf72LczbYvWHCQOd1TK3CQtsfAQN+STvTsqI+l2AOxGiqrELdHMeTwEjzI00XEMxkK8lFWBTIS/aB98CUmiYB87y+iqAq5SXTi0C6SyWuvKGV2mtWyWwT4mBMW2UHPyZi8W/QmEYseUajcczUDcCQ03se/v+6qyoQquh/nonAjEwaV5n13eRbaaEk81dfP9Rf+0fqKABmqAZFv+1d7Jr8ouWA+fZm2zVWw1UelfeS8asUH+MB1qQLs69TsB42/bzGaBCx3gYd+OBSkyTrR9JOss5CSYz3+owBdQYG0yrXX8XYGG3nINNlNibCr0N/YGvcxT1PtHPwDm1EcKj/1yW1u3Ne0y+kp1I63VOl9QtIwdSaac4th6tSJ8nAYvBqZR8BDTPQII08OF3rFNcgChlh+26UZa0Xh/PHzOslpARhkHh0pOgXuOFHnjGwQnLUcd3wnqeBlj9yKYUACBPiFpQZSYRe66VxCgKNTMe7Zw=", + "RequestBody": "UBSwU9TB9cX1SLAIH/gs6bFyvy/Y4MNULuBxL2WR8tGnmPlo9xf\u002BdFO\u002Bjuio0ZEsoc0eNaFT029RXCTzUMZgZFXfYIb\u002BxPKadEvbGVHbrFxORI2YcrwvU8SJF5ryCiSNXiqSyHAKLt3ahMFVeLkeda/HpQs4x/GYrw3CdaxXp2kmTrsnSOPsQxawvu772tsKa6HqKmQZVJc4\u002BRljSLkwgt1YLyn\u002B9i3M22L1hwkDndUytwkLbHwEDfkk707KiPpdgDsRoqqxC3RzHk8BI8yNNFxDMZCvJRVgUyEv2gffAlJomAfO8voqgKuUl04tAukslrryhldprVslsE\u002BJgTFtlBz8mYvFv0JhGLHlGo3HM1A3AkNN7Hv7/uqsqEKrof56JwIxMGleZ9d3kW2mhJPNXXz/UX/tH6igAZqgGRb/tXeya/KLlgPn2Zts1VsNVHpX3kvGrFB/jAdakC7OvU7AeNv28xmgQsd4GHfjgUpMk60fSTrLOQkmM9/qMAXUGBtMq11/F2Bht5yDTZTYmwq9Df2Br3MU9T7Rz8A5tRHCo/9cltbtzXtMvpKdSOt1TpfULSMHUmmnOLYerUifJwGLwamUfAQ0z0CCNPDhd6xTXIAoZYftulGWtF4fzx8zrJaQEYZB4dKToF7jhR54xsEJy1HHd8J6ngZY/cimFAAgT4g=", "StatusCode": 201, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "bfb96fe1-efc0-d90d-f6e7-01a5e6679473", - "x-ms-content-crc64": "hUB2r35rMHk=", - "x-ms-request-id": "16dfedd3-301e-0008-6371-5976b8000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:27 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "c03b1cd2-db93-eeed-fe02-3d0cc9e062ac", + "x-ms-content-crc64": "pjEU5F67ksA=", + "x-ms-request-id": "b1227ce8-d01e-004a-12e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-84844935-5830-b1d9-25cd-b6d0a86083ac/test-blob-53b01450-c1d4-c5f5-f548-b0081ff82ce9?comp=block&blockid=AAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-84844935-5830-b1d9-25cd-b6d0a86083ac?comp=block\u0026blockid=AAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "512", "Content-Type": "application/octet-stream", - "traceparent": "00-f37c36fe792aa94eb149b89f7dbed8ea-28a71d5edc1baf44-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "0e11a5c7-0821-e384-0f61-c9acd9480796", - "x-ms-date": "Fri, 04 Jun 2021 18:41:26 GMT", + "traceparent": "00-a8d0ae7bea42ac4d983b7debae9c65d5-0631aebc6db5564c-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "88e9c00d-0359-3a3c-abbe-a6d4c8b306bb", + "x-ms-date": "Wed, 11 Aug 2021 19:42:27 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "FgTOazXTFnOA6OMJ7YtewjaVHXVb47nWGOL9UZPRJd/aCf77UuNShjnypiiXpKg4ykf/nQB3QTJK91NT1cXfrsMEL+ONYnBSQ5Y8aT2RP3M6xYZL0YjeY8jLsVqQ/7F0EvdlknXEq2fXrFlqO9f1ubjfGRA+k906JssawbEVwkPlyFZGK6z+dRkfcyUudCfw1vihseagNX4aK2ypqeq2wuoVhHOBr40M4KP3Hx+3C7GkKuq5dBFdRZLXLAA/VMsvaLE7GO+0bydqldBCqRVeYh+6BX///U3ZuD/gqoKNzIzYyLdufPLB77rCTt5AG5t8eMnhhU9ML2pjYWCw08Wk3chEauFe8OUs+RXEPK5vmJyjZDG4q0c8i5hMChqSERv1HXEW/LG6HofktIs5iPK79MnDDG+T6zGBB95IEubKmuf5zh49WJzr6EWq1Pe7AwOmkBVRzgSsYjJAlPTScgygGRqkP7nTfpst1yQp6Rc5xgPbooHRecvjTWzs/cSnGXY5CbvcF8RK0hF5JPbggngaBs7w99CKz59OwPFM5oHXhb6t8N9bXa4/kM9vWFXVAsvz0fb1tiKlrzobjlbS/euQoZ43MpKYv6kfsWYAGnZKeL0mWRWK4s6cB0ClQM5YbJPk37a2ndA4WhJN1QW8pZTD0BWYrKTWBb/PmypR837ax0U=", + "RequestBody": "WlBlJhF7rpXEKAo1Mx7tnBYEzms10xZzgOjjCe2LXsI2lR11W\u002BO51hji/VGT0SXf2gn\u002B\u002B1LjUoY58qYol6SoOMpH/50Ad0EySvdTU9XF367DBC/jjWJwUkOWPGk9kT9zOsWGS9GI3mPIy7FakP\u002BxdBL3ZZJ1xKtn16xZajvX9bm43xkQPpPdOibLGsGxFcJD5chWRius/nUZH3MlLnQn8Nb4obHmoDV\u002BGitsqanqtsLqFYRzga\u002BNDOCj9x8ftwuxpCrquXQRXUWS1ywAP1TLL2ixOxjvtG8napXQQqkVXmIfugV///1N2bg/4KqCjcyM2Mi3bnzywe\u002B6wk7eQBubfHjJ4YVPTC9qY2FgsNPFpN3IRGrhXvDlLPkVxDyub5ico2QxuKtHPIuYTAoakhEb9R1xFvyxuh6H5LSLOYjyu/TJwwxvk\u002BsxgQfeSBLmyprn\u002Bc4ePVic6\u002BhFqtT3uwMDppAVUc4ErGIyQJT00nIMoBkapD\u002B5036bLdckKekXOcYD26KB0XnL401s7P3Epxl2OQm73BfEStIReST24IJ4GgbO8PfQis\u002BfTsDxTOaB14W\u002BrfDfW12uP5DPb1hV1QLL89H29bYipa86G45W0v3rkKGeNzKSmL\u002BpH7FmABp2Sni9JlkViuLOnAdApUDOWGyT5N\u002B2tp3QOFoSTdUFvKWUw9A=", "StatusCode": 201, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "0e11a5c7-0821-e384-0f61-c9acd9480796", - "x-ms-content-crc64": "CeMLQQIwC1Q=", - "x-ms-request-id": "16dfedd5-301e-0008-6471-5976b8000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:27 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "88e9c00d-0359-3a3c-abbe-a6d4c8b306bb", + "x-ms-content-crc64": "sxG\u002BRxTytWc=", + "x-ms-request-id": "b1227da4-d01e-004a-2de9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-84844935-5830-b1d9-25cd-b6d0a86083ac/test-blob-53b01450-c1d4-c5f5-f548-b0081ff82ce9?comp=blocklist", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-84844935-5830-b1d9-25cd-b6d0a86083ac?comp=blocklist", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "188", "Content-Type": "application/xml", - "traceparent": "00-f37c36fe792aa94eb149b89f7dbed8ea-f995985317790848-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "40dd46e1-8655-0551-3b05-79f73a906163", - "x-ms-date": "Fri, 04 Jun 2021 18:41:26 GMT", + "traceparent": "00-a8d0ae7bea42ac4d983b7debae9c65d5-0482a60c7cd9c842-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "09feca6d-daf6-de53-337e-140249391143", + "x-ms-date": "Wed, 11 Aug 2021 19:42:28 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:26 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:27 GMT", "x-ms-legal-hold": "true", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "RequestBody": "\uFEFF\u003CBlockList\u003E\u003CLatest\u003EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\u003C/Latest\u003E\u003CLatest\u003EAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\u003C/Latest\u003E\u003C/BlockList\u003E", "StatusCode": 201, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:25 GMT", - "ETag": "\"0x8D927885BD005F9\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "40dd46e1-8655-0551-3b05-79f73a906163", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:27 GMT", + "ETag": "\u00220x8D95D0026CB7E7E\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:28 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "09feca6d-daf6-de53-337e-140249391143", "x-ms-content-crc64": "uZyvATng5EM=", - "x-ms-request-id": "16dfedd6-301e-0008-6571-5976b8000000", + "x-ms-request-id": "b1227e5c-d01e-004a-40e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:25.9031033Z" + "x-ms-version-id": "2021-08-11T19:42:28.1889406Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-84844935-5830-b1d9-25cd-b6d0a86083ac/test-blob-53b01450-c1d4-c5f5-f548-b0081ff82ce9", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/ccc0c3b3-39f3-484e-82af-1eeedc495adf/test-blob-84844935-5830-b1d9-25cd-b6d0a86083ac", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-6655720199a4a0419beae8443572eb5a-cd6133e0a6a6f64d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "93cb8550-c66a-e741-78f9-cef0615ba4a2", - "x-ms-date": "Fri, 04 Jun 2021 18:41:26 GMT", + "traceparent": "00-3a918d72f552dc409f8d9989c4f963aa-8fa536a2c7a0724f-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "fe660fb6-fcb4-edc4-5233-dba2f4829ad5", + "x-ms-date": "Wed, 11 Aug 2021 19:42:28 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -133,163 +112,33 @@ "Accept-Ranges": "bytes", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 18:41:25 GMT", - "ETag": "\"0x8D927885BD005F9\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:27 GMT", + "ETag": "\u00220x8D95D0026CB7E7E\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:28 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "93cb8550-c66a-e741-78f9-cef0615ba4a2", - "x-ms-creation-time": "Fri, 04 Jun 2021 18:41:25 GMT", + "x-ms-client-request-id": "fe660fb6-fcb4-edc4-5233-dba2f4829ad5", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:28 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:26 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:27 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "16dfedd7-301e-0008-6671-5976b8000000", + "x-ms-request-id": "b1227f12-d01e-004a-58e9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:25.9031033Z" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-84844935-5830-b1d9-25cd-b6d0a86083ac?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-ba3cedf36d10f64896622565af15cf92-140d25f271587647-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "b4a6a36b-cec4-f0f8-cd7e-85bb2ed38bf6", - "x-ms-date": "Fri, 04 Jun 2021 18:41:26 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "b4a6a36b-cec4-f0f8-cd7e-85bb2ed38bf6", - "x-ms-request-id": "16dfedd8-301e-0008-6771-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-53b01450-c1d4-c5f5-f548-b0081ff82ce92021-06-04T18:41:25.9031033ZtrueFri, 04 Jun 2021 18:41:25 GMTFri, 04 Jun 2021 18:41:25 GMT0x8D927885BD005F91024application/octet-streamBlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 18:46:26 GMTunlockedtrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-84844935-5830-b1d9-25cd-b6d0a86083ac/test-blob-53b01450-c1d4-c5f5-f548-b0081ff82ce9?comp=legalhold", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-9384a2e7c5c1854489acc7a76e093235-ecd7fd4ff0544f4e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "bd8515e7-efb5-4fdd-b75b-6c548dd4b6ad", - "x-ms-date": "Fri, 04 Jun 2021 18:41:26 GMT", - "x-ms-legal-hold": "false", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "bd8515e7-efb5-4fdd-b75b-6c548dd4b6ad", - "x-ms-legal-hold": "false", - "x-ms-request-id": "16dfedd9-301e-0008-6871-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-84844935-5830-b1d9-25cd-b6d0a86083ac/test-blob-53b01450-c1d4-c5f5-f548-b0081ff82ce9?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-1d287e8887be6e45b7b09d887a15ff4e-38756cd8095c8f4d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "19d3bb41-ce4e-a041-5a36-8bdbf3adaf21", - "x-ms-date": "Fri, 04 Jun 2021 18:41:26 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "19d3bb41-ce4e-a041-5a36-8bdbf3adaf21", - "x-ms-request-id": "16dfedda-301e-0008-6971-5976b8000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-84844935-5830-b1d9-25cd-b6d0a86083ac/test-blob-53b01450-c1d4-c5f5-f548-b0081ff82ce9", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-811f8c1db66de94c973245b317834936-389d3293014b4840-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "d213be43-9c00-955e-b5f1-17f242a617f3", - "x-ms-date": "Fri, 04 Jun 2021 18:41:26 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "d213be43-9c00-955e-b5f1-17f242a617f3", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "16dfeddb-301e-0008-6a71-5976b8000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:28.1889406Z" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T13:41:26.3881928-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:27.7675334-07:00", "RandomSeed": "1800587515", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "ccc0c3b3-39f3-484e-82af-1eeedc495adf" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/Upload_ImmutableStorageWithVersioning(True)Async.json b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/Upload_ImmutableStorageWithVersioning(True)Async.json index cf1097e822f85..4f58e36157c00 100644 --- a/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/Upload_ImmutableStorageWithVersioning(True)Async.json +++ b/sdk/storage/Azure.Storage.Blobs/tests/SessionRecords/ImmutableStorageWithVersioningTests/Upload_ImmutableStorageWithVersioning(True)Async.json @@ -1,129 +1,108 @@ -{ +{ "Entries": [ { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4b9cf928-89e4-ce3d-3508-78862524c510/test-blob-e28536cc-1842-1f4f-3b98-ab4feab68ddb?comp=block&blockid=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-4b9cf928-89e4-ce3d-3508-78862524c510?comp=block\u0026blockid=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "512", "Content-Type": "application/octet-stream", - "traceparent": "00-3160d0cbe63df2449802b64ae653c275-6e6b1d1b186ec84a-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "5d8d132f-cd1e-a92b-6c34-e5dbdb8161b3", - "x-ms-date": "Fri, 04 Jun 2021 18:41:44 GMT", + "traceparent": "00-d8cffb5d061c9e4fa004ae2e3f781327-0776a885ba0fad45-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "a52500f6-1c36-adc2-553d-767841b79ba1", + "x-ms-date": "Wed, 11 Aug 2021 19:42:41 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "PG8aNbppx93pZLrozSxyexw/8qlio/MQqn0PS93u5H97nEm1CpBVY2+o+N5dZlIPJjAzqsTjeZl8Coo9WXv/+4A7bTDjvHGL6Y46uqoVs0QqACSsujm6mCOvOf8GGArzqP1dIfgiLGq/p8A1qL/vZlZFE1hXUkBGgNQNM4JxhdGERxGst5FLCNS57RJ4he9jwNKpwASym1W9FqEkFPjoTiLvsWGtQq/E+QqDnWUtzvrkqXKvx8TM0au876DwJ/Pb0Z7widSOtX4j5Mf6Lv3vj0imP2qGOYZeIt+28VIP1NEXp8zHPUQmVvP0jOP90qKtzWBXSuiIVZcXkWb02MQrFBD144cxKFIEf+h3kayjYVA9CSTyt4npjlE1r6vdMX4uyHfSB+8bfKQNU8v/EcTqcy8Wt86gOVyGDFQ1/HimJk1qSMg10VpgIY1/5GO+6XyNSjt7x3qvjo8bS/ua5YAsZi19lcn7taLVtZVBIVT5yCLYqLE8Kl7Turk5GYVexjsNU301QVSzkpSYpRHkbmw7IYPYwj3O7zzPqdoPwpsdd+9ZNM7Ww4fOJBYdo4RN70xN/vgChQP+PmNBZpd5o8/4ey4iijmeZF37Cp0nsEu3gbqNwsSjG/HrW/VqlF3vVIBGJShWKmQTrpmaBntm1o4YiuTd7OELVF89Ny5DNNAAC7U=", + "RequestBody": "zDaF4kIYTx87mKtP6raN2zxvGjW6acfd6WS66M0scnscP/KpYqPzEKp9D0vd7uR/e5xJtQqQVWNvqPjeXWZSDyYwM6rE43mZfAqKPVl7//uAO20w47xxi\u002BmOOrqqFbNEKgAkrLo5upgjrzn/BhgK86j9XSH4Iixqv6fANai/72ZWRRNYV1JARoDUDTOCcYXRhEcRrLeRSwjUue0SeIXvY8DSqcAEsptVvRahJBT46E4i77FhrUKvxPkKg51lLc765Klyr8fEzNGrvO\u002Bg8Cfz29Ge8InUjrV\u002BI\u002BTH\u002Bi79749Ipj9qhjmGXiLftvFSD9TRF6fMxz1EJlbz9Izj/dKirc1gV0roiFWXF5Fm9NjEKxQQ9eOHMShSBH/od5Gso2FQPQkk8reJ6Y5RNa\u002Br3TF\u002BLsh30gfvG3ykDVPL/xHE6nMvFrfOoDlchgxUNfx4piZNakjINdFaYCGNf\u002BRjvul8jUo7e8d6r46PG0v7muWALGYtfZXJ\u002B7Wi1bWVQSFU\u002Bcgi2KixPCpe07q5ORmFXsY7DVN9NUFUs5KUmKUR5G5sOyGD2MI9zu88z6naD8KbHXfvWTTO1sOHziQWHaOETe9MTf74AoUD/j5jQWaXeaPP\u002BHsuIoo5nmRd\u002BwqdJ7BLt4G6jcLEoxvx61v1apRd71SARiUoVipkE66ZmgZ7ZtaOGIo=", "StatusCode": 201, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:43 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "5d8d132f-cd1e-a92b-6c34-e5dbdb8161b3", - "x-ms-content-crc64": "nlMqFJVw85c=", - "x-ms-request-id": "16dfee69-301e-0008-4471-5976b8000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:41 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "a52500f6-1c36-adc2-553d-767841b79ba1", + "x-ms-content-crc64": "aqeK8/oSS6I=", + "x-ms-request-id": "b122b003-d01e-004a-14e9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4b9cf928-89e4-ce3d-3508-78862524c510/test-blob-e28536cc-1842-1f4f-3b98-ab4feab68ddb?comp=block&blockid=AAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-4b9cf928-89e4-ce3d-3508-78862524c510?comp=block\u0026blockid=AAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "512", "Content-Type": "application/octet-stream", - "traceparent": "00-3160d0cbe63df2449802b64ae653c275-b89c3bedbd652a43-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "8288ab84-5a14-298a-d57c-380137e7d1d3", - "x-ms-date": "Fri, 04 Jun 2021 18:41:44 GMT", + "traceparent": "00-d8cffb5d061c9e4fa004ae2e3f781327-793062fef34cdd46-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "ab5d160a-ccb4-a186-e013-1dace3e08f26", + "x-ms-date": "Wed, 11 Aug 2021 19:42:41 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "HeGKImFXVXoTKggVdoWFZlEKeBJonzrQyBnzNs96yZn6xUj0A/UpjYdyzuBLSsaxqdzixYj5TX2nuVlIYx+qmGFvGrE8kGNb4eqK9tFZhX1SQYzymAMRAXfLTUqc4CloxzV+3DAVdRl5huSdblesTTTb9SGSuABeXRk5cUIYvwDBIi6c2qhNPcxyeBEfc5IgHgAVwOsH1Q80IH4W2wTXYMbj3EwoEHKMjrhVHz/uP+qGGVJCA/8VuUwfZ7opNmHImxdKO5ZG9w6NiDEysrbPRuCUkMKxlV3HziMACKm4YldXjIQnowRTPyJEtHrN4gaWTyHZlaaeFga6g2xzRu5k1Sba2yYxqKLcQFCgbeDi+ewdariH38ywuHV9bSCY4Pkz399U8gbfZKd//FVV/qkl2Il/Vds13PVZKSOwtDuBRF9WbI0BjgfmPQYRCOJ3WrnMV5WWGIod/gLp+sjjL69s/bj1/5IcJEmCmRjVJNQT4s9p5Fym6ivUOG6KF5M+Aw1WpAsqgVsnrzNLFH9ySNku1hj5eUpTxhKMIMYkkQ22RJUKf3/I6WBzQjQpWtasYvCUXEF6RIrCA934nWCVAh4llNDpZ8haZey3hjYWKWs8377VjzTLO/8LR3uhz0sA3kAVA8YFw/soOvdUwr5TrNlyvL6iwHLqWlnR3R9NuJWht6g=", + "RequestBody": "5N3s4QtUXz03LkM00AALtR3hiiJhV1V6EyoIFXaFhWZRCngSaJ860MgZ8zbPesmZ\u002BsVI9AP1KY2Hcs7gS0rGsanc4sWI\u002BU19p7lZSGMfqphhbxqxPJBjW\u002BHqivbRWYV9UkGM8pgDEQF3y01KnOApaMc1ftwwFXUZeYbknW5XrE002/UhkrgAXl0ZOXFCGL8AwSIunNqoTT3McngRH3OSIB4AFcDrB9UPNCB\u002BFtsE12DG49xMKBByjI64VR8/7j/qhhlSQgP/FblMH2e6KTZhyJsXSjuWRvcOjYgxMrK2z0bglJDCsZVdx84jAAipuGJXV4yEJ6MEUz8iRLR6zeIGlk8h2ZWmnhYGuoNsc0buZNUm2tsmMaii3EBQoG3g4vnsHWq4h9/MsLh1fW0gmOD5M9/fVPIG32Snf/xVVf6pJdiJf1XbNdz1WSkjsLQ7gURfVmyNAY4H5j0GEQjid1q5zFeVlhiKHf4C6frI4y\u002BvbP249f\u002BSHCRJgpkY1STUE\u002BLPaeRcpuor1DhuiheTPgMNVqQLKoFbJ68zSxR/ckjZLtYY\u002BXlKU8YSjCDGJJENtkSVCn9/yOlgc0I0KVrWrGLwlFxBekSKwgPd\u002BJ1glQIeJZTQ6WfIWmXst4Y2FilrPN\u002B\u002B1Y80yzv/C0d7oc9LAN5AFQPGBcP7KDr3VMK\u002BU6zZcrw=", "StatusCode": 201, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:43 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "8288ab84-5a14-298a-d57c-380137e7d1d3", - "x-ms-content-crc64": "Gfs9+pyN6rc=", - "x-ms-request-id": "b5c9559f-101e-001b-1f71-5945f9000000", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:41 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "ab5d160a-ccb4-a186-e013-1dace3e08f26", + "x-ms-content-crc64": "z9cVetu7TnI=", + "x-ms-request-id": "54b3a512-b01e-0073-4ae9-8e9222000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4b9cf928-89e4-ce3d-3508-78862524c510/test-blob-e28536cc-1842-1f4f-3b98-ab4feab68ddb?comp=blocklist", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-4b9cf928-89e4-ce3d-3508-78862524c510?comp=blocklist", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", "Content-Length": "188", "Content-Type": "application/xml", - "traceparent": "00-3160d0cbe63df2449802b64ae653c275-3638814463133946-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "2f56bfa4-dff9-b09e-8c34-d63793856af9", - "x-ms-date": "Fri, 04 Jun 2021 18:41:44 GMT", + "traceparent": "00-d8cffb5d061c9e4fa004ae2e3f781327-7c6944bcf2a4c845-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "2a6dc3db-ef5a-62ed-8ceb-7d0baf7ec58c", + "x-ms-date": "Wed, 11 Aug 2021 19:42:42 GMT", "x-ms-immutability-policy-mode": "Unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:44 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:41 GMT", "x-ms-legal-hold": "true", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, - "RequestBody": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", + "RequestBody": "\uFEFF\u003CBlockList\u003E\u003CLatest\u003EAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\u003C/Latest\u003E\u003CLatest\u003EAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\u003C/Latest\u003E\u003C/BlockList\u003E", "StatusCode": 201, "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:43 GMT", - "ETag": "\"0x8D92788667CD089\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:43 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "2f56bfa4-dff9-b09e-8c34-d63793856af9", + "Content-Length": "0", + "Date": "Wed, 11 Aug 2021 19:42:41 GMT", + "ETag": "\u00220x8D95D002F240544\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:42 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", + "x-ms-client-request-id": "2a6dc3db-ef5a-62ed-8ceb-7d0baf7ec58c", "x-ms-content-crc64": "uZyvATng5EM=", - "x-ms-request-id": "b5c955a2-101e-001b-2071-5945f9000000", + "x-ms-request-id": "b122b151-d01e-004a-2ce9-8e693e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:43.8127241Z" + "x-ms-version-id": "2021-08-11T19:42:42.1908804Z" }, "ResponseBody": [] }, { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4b9cf928-89e4-ce3d-3508-78862524c510/test-blob-e28536cc-1842-1f4f-3b98-ab4feab68ddb", + "RequestUri": "https://kasobolcanadanetoauth.blob.core.windows.net/90185bea-b711-4aae-a98f-bb14f2a40111/test-blob-4b9cf928-89e4-ce3d-3508-78862524c510", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Authorization": "Sanitized", - "traceparent": "00-b6fc1babbbfb2c4696ac51c7e198faf7-6b60454e1599f64e-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "785cacb6-a290-fcda-25bd-9e2518b6cf07", - "x-ms-date": "Fri, 04 Jun 2021 18:41:44 GMT", + "traceparent": "00-588fdddf18389d43ba29d8b6adb52328-f39a672a76a14248-00", + "User-Agent": "azsdk-net-Storage.Blobs/12.10.0-alpha.20210811.1 (.NET Framework 4.8.4300.0; Microsoft Windows 10.0.19043 )", + "x-ms-client-request-id": "1fd14941-6472-95cb-bd25-f529dd7f7956", + "x-ms-date": "Wed, 11 Aug 2021 19:42:42 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-10-02" }, @@ -133,162 +112,33 @@ "Accept-Ranges": "bytes", "Content-Length": "1024", "Content-Type": "application/octet-stream", - "Date": "Fri, 04 Jun 2021 18:41:43 GMT", - "ETag": "\"0x8D92788667CD089\"", - "Last-Modified": "Fri, 04 Jun 2021 18:41:43 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], + "Date": "Wed, 11 Aug 2021 19:42:41 GMT", + "ETag": "\u00220x8D95D002F240544\u0022", + "Last-Modified": "Wed, 11 Aug 2021 19:42:42 GMT", + "Server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "785cacb6-a290-fcda-25bd-9e2518b6cf07", - "x-ms-creation-time": "Fri, 04 Jun 2021 18:41:43 GMT", + "x-ms-client-request-id": "1fd14941-6472-95cb-bd25-f529dd7f7956", + "x-ms-creation-time": "Wed, 11 Aug 2021 19:42:42 GMT", "x-ms-immutability-policy-mode": "unlocked", - "x-ms-immutability-policy-until-date": "Fri, 04 Jun 2021 18:46:44 GMT", + "x-ms-immutability-policy-until-date": "Wed, 11 Aug 2021 19:47:41 GMT", "x-ms-is-current-version": "true", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-legal-hold": "true", - "x-ms-request-id": "b5c955a3-101e-001b-2171-5945f9000000", + "x-ms-request-id": "b122b1ee-d01e-004a-34e9-8e693e000000", "x-ms-server-encrypted": "true", "x-ms-version": "2020-10-02", - "x-ms-version-id": "2021-06-04T18:41:43.8127241Z" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4b9cf928-89e4-ce3d-3508-78862524c510?restype=container&comp=list&include=Immutabilitypolicy%2CLegalhold", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "e78080bb-f228-9f68-6ed4-fab5c6a67d07", - "x-ms-date": "Fri, 04 Jun 2021 18:41:44 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 04 Jun 2021 18:41:43 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "e78080bb-f228-9f68-6ed4-fab5c6a67d07", - "x-ms-request-id": "b5c955a6-101e-001b-2371-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": "test-blob-e28536cc-1842-1f4f-3b98-ab4feab68ddb2021-06-04T18:41:43.8127241ZtrueFri, 04 Jun 2021 18:41:43 GMTFri, 04 Jun 2021 18:41:43 GMT0x8D92788667CD0891024application/octet-streamBlockBlobHottrueunlockedavailabletrueFri, 04 Jun 2021 18:46:44 GMTunlockedtrue" - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4b9cf928-89e4-ce3d-3508-78862524c510/test-blob-e28536cc-1842-1f4f-3b98-ab4feab68ddb?comp=legalhold", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-420fcb20d1dfcb4aab13c4ef1c3ae8bb-b77a0afc5d81b94b-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "986a91ea-e735-8edf-1b2a-f7d8ab64794d", - "x-ms-date": "Fri, 04 Jun 2021 18:41:44 GMT", - "x-ms-legal-hold": "false", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:43 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "986a91ea-e735-8edf-1b2a-f7d8ab64794d", - "x-ms-legal-hold": "false", - "x-ms-request-id": "b5c955a7-101e-001b-2471-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4b9cf928-89e4-ce3d-3508-78862524c510/test-blob-e28536cc-1842-1f4f-3b98-ab4feab68ddb?comp=immutabilityPolicies", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-3729b411401fc949ac034f97f5cdd962-fb5b6f6b0424c24d-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "34ca4ac1-e43b-6ed1-0f19-3d8a1bd0652e", - "x-ms-date": "Fri, 04 Jun 2021 18:41:44 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 04 Jun 2021 18:41:43 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-client-request-id": "34ca4ac1-e43b-6ed1-0f19-3d8a1bd0652e", - "x-ms-request-id": "b5c955a8-101e-001b-2571-5945f9000000", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": [] - }, - { - "RequestUri": "https://seanoauthstage.blob.core.windows.net/test-container-4b9cf928-89e4-ce3d-3508-78862524c510/test-blob-e28536cc-1842-1f4f-3b98-ab4feab68ddb", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/xml", - "Authorization": "Sanitized", - "traceparent": "00-d754ac1f74a98d4c91f630772722589c-5ecc6bb90b1a604b-00", - "User-Agent": [ - "azsdk-net-Storage.Blobs/12.9.0-alpha.20210604.1", - "(.NET 5.0.6; Microsoft Windows 10.0.19043)" - ], - "x-ms-client-request-id": "60178fbb-4599-5f11-990e-ebb33ccd8d06", - "x-ms-date": "Fri, 04 Jun 2021 18:41:44 GMT", - "x-ms-return-client-request-id": "true", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Date": "Fri, 04 Jun 2021 18:41:44 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "x-ms-client-request-id": "60178fbb-4599-5f11-990e-ebb33ccd8d06", - "x-ms-delete-type-permanent": "false", - "x-ms-request-id": "b5c955a9-101e-001b-2671-5945f9000000", - "x-ms-version": "2020-10-02" + "x-ms-version-id": "2021-08-11T19:42:42.1908804Z" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2021-06-04T13:41:44.2043825-05:00", + "DateTimeOffsetNow": "2021-08-11T12:42:41.6725019-07:00", "RandomSeed": "1710926182", - "Storage_TestConfigOAuth": "OAuthTenant\nseanoauthstage\nU2FuaXRpemVk\nhttps://seanoauthstage.blob.core.windows.net\nhttps://seanoauthstage.file.core.windows.net\nhttps://seanoauthstage.queue.core.windows.net\nhttps://seanoauthstage.table.core.windows.net\n\n\n\n\nhttps://seanoauthstage-secondary.blob.core.windows.net\nhttps://seanoauthstage-secondary.file.core.windows.net\nhttps://seanoauthstage-secondary.queue.core.windows.net\nhttps://seanoauthstage-secondary.table.core.windows.net\n68390a19-a643-458b-b726-408abf67b4fc\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://seanoauthstage.blob.core.windows.net/;QueueEndpoint=https://seanoauthstage.queue.core.windows.net/;FileEndpoint=https://seanoauthstage.file.core.windows.net/;BlobSecondaryEndpoint=https://seanoauthstage-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanoauthstage-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanoauthstage-secondary.file.core.windows.net/;AccountName=seanoauthstage;AccountKey=Sanitized\n\n\n" + "Storage_TestConfigOAuth": "OAuthTenant\nkasobolcanadanetoauth\nU2FuaXRpemVk\nhttps://kasobolcanadanetoauth.blob.core.windows.net\nhttp://kasobolcanadanetoauth.file.core.windows.net\nhttp://kasobolcanadanetoauth.queue.core.windows.net\nhttp://kasobolcanadanetoauth.table.core.windows.net\n\n\n\n\nhttp://kasobolcanadanetoauth-secondary.blob.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.file.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.queue.core.windows.net\nhttp://kasobolcanadanetoauth-secondary.table.core.windows.net\nc6b5fe1a-9b59-4975-92c4-d9f728c3c371\nSanitized\n72f988bf-86f1-41af-91ab-2d7cd011db47\nhttps://login.microsoftonline.com/\nCloud\nBlobEndpoint=https://kasobolcanadanetoauth.blob.core.windows.net/;QueueEndpoint=http://kasobolcanadanetoauth.queue.core.windows.net/;FileEndpoint=http://kasobolcanadanetoauth.file.core.windows.net/;BlobSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.queue.core.windows.net/;FileSecondaryEndpoint=http://kasobolcanadanetoauth-secondary.file.core.windows.net/;AccountName=kasobolcanadanetoauth;AccountKey=Sanitized\n\nkasobol\nba45b233-e2ef-4169-8808-49eb0d8eba0d", + "_containerName": "90185bea-b711-4aae-a98f-bb14f2a40111" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Common/tests/Shared/StorageTestBase.cs b/sdk/storage/Azure.Storage.Common/tests/Shared/StorageTestBase.cs index d55841b47c5b3..195bd2b3782c3 100644 --- a/sdk/storage/Azure.Storage.Common/tests/Shared/StorageTestBase.cs +++ b/sdk/storage/Azure.Storage.Common/tests/Shared/StorageTestBase.cs @@ -536,19 +536,21 @@ public string AccountSasPermissionsToPermissionsString(AccountSasPermissions per return sb.ToString(); } - public async Task GetAuthToken() + public async Task GetAuthToken(string[] scopes = default, TenantConfiguration tenantConfiguration = default) { if (Mode == RecordedTestMode.Playback) { return "auth token"; } - IConfidentialClientApplication application = ConfidentialClientApplicationBuilder.Create(TestConfigOAuth.ActiveDirectoryApplicationId) - .WithAuthority(AzureCloudInstance.AzurePublic, TestConfigOAuth.ActiveDirectoryTenantId) - .WithClientSecret(TestConfigOAuth.ActiveDirectoryApplicationSecret) + tenantConfiguration ??= TestConfigOAuth; + + IConfidentialClientApplication application = ConfidentialClientApplicationBuilder.Create(tenantConfiguration.ActiveDirectoryApplicationId) + .WithAuthority(AzureCloudInstance.AzurePublic, tenantConfiguration.ActiveDirectoryTenantId) + .WithClientSecret(tenantConfiguration.ActiveDirectoryApplicationSecret) .Build(); - string[] scopes = new string[] { "https://storage.azure.com/.default" }; + scopes ??= new string[] { "https://storage.azure.com/.default" }; AcquireTokenForClientParameterBuilder result = application.AcquireTokenForClient(scopes); AuthenticationResult authenticationResult = await result.ExecuteAsync(); diff --git a/sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Scenario.Tests/tests/Microsoft.Azure.WebJobs.Extensions.Storage.Scenario.Tests.csproj b/sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Scenario.Tests/tests/Microsoft.Azure.WebJobs.Extensions.Storage.Scenario.Tests.csproj index 28c54d79dcd8d..1526d2fd8b745 100644 --- a/sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Scenario.Tests/tests/Microsoft.Azure.WebJobs.Extensions.Storage.Scenario.Tests.csproj +++ b/sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Scenario.Tests/tests/Microsoft.Azure.WebJobs.Extensions.Storage.Scenario.Tests.csproj @@ -5,11 +5,10 @@ - - + + - diff --git a/sdk/tables/Azure.Data.Tables/CHANGELOG.md b/sdk/tables/Azure.Data.Tables/CHANGELOG.md index f60e4fc73676d..cd7449c95633a 100644 --- a/sdk/tables/Azure.Data.Tables/CHANGELOG.md +++ b/sdk/tables/Azure.Data.Tables/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 12.2.0-beta.1 (Unreleased) +## 12.2.0-beta.2 (Unreleased) ### Features Added @@ -10,6 +10,22 @@ ### Other Changes +## 12.2.0-beta.1 (2021-08-10) + +Thank you to our developer community members who helped to make Azure Tables better with their contributions to this release: + +- Yifan Bian _([yifanbian-msft](https://github.com/yifanbian-msft))_ +- David Gardiner _([flcdrg](https://github.com/flcdrg))_ + +### Features Added + +- Added an extension method to the Builder extensions that accepts just the Table Uri. (A community contribution, courtesy of _[flcdrg](https://github.com/flcdrg))_. + +### Bugs Fixed + +- Fixed and issue with connection string parsing for Azure Storage Emulator connection strings. (A community contribution, courtesy of _[yifanbian-msft](https://github.com/yifanbian-msft))_. + + ## 12.1.0 (2021-07-07) ### Features Added diff --git a/sdk/tables/Azure.Data.Tables/api/Azure.Data.Tables.netstandard2.0.cs b/sdk/tables/Azure.Data.Tables/api/Azure.Data.Tables.netstandard2.0.cs index 64aa3023bc734..8ac4486448cf7 100644 --- a/sdk/tables/Azure.Data.Tables/api/Azure.Data.Tables.netstandard2.0.cs +++ b/sdk/tables/Azure.Data.Tables/api/Azure.Data.Tables.netstandard2.0.cs @@ -484,6 +484,7 @@ namespace Microsoft.Extensions.Azure public static partial class TableClientBuilderExtensions { public static Azure.Core.Extensions.IAzureClientBuilder AddTableServiceClient(this TBuilder builder, string connectionString) where TBuilder : Azure.Core.Extensions.IAzureClientFactoryBuilder { throw null; } + public static Azure.Core.Extensions.IAzureClientBuilder AddTableServiceClient(this TBuilder builder, System.Uri serviceUri) where TBuilder : Azure.Core.Extensions.IAzureClientFactoryBuilderWithCredential { throw null; } public static Azure.Core.Extensions.IAzureClientBuilder AddTableServiceClient(this TBuilder builder, System.Uri serviceUri, Azure.Data.Tables.TableSharedKeyCredential sharedKeyCredential) where TBuilder : Azure.Core.Extensions.IAzureClientFactoryBuilder { throw null; } public static Azure.Core.Extensions.IAzureClientBuilder AddTableServiceClient(this TBuilder builder, TConfiguration configuration) where TBuilder : Azure.Core.Extensions.IAzureClientFactoryBuilderWithConfiguration { throw null; } } diff --git a/sdk/tables/Azure.Data.Tables/src/Azure.Data.Tables.csproj b/sdk/tables/Azure.Data.Tables/src/Azure.Data.Tables.csproj index 85f944585666d..780999f922a4d 100644 --- a/sdk/tables/Azure.Data.Tables/src/Azure.Data.Tables.csproj +++ b/sdk/tables/Azure.Data.Tables/src/Azure.Data.Tables.csproj @@ -2,7 +2,7 @@ This client library enables working with the Microsoft Azure Table service Microsoft Azure.Data.Tables client library - 12.2.0-beta.1 + 12.2.0-beta.2 12.1.0 TableSDK;$(DefineConstants) diff --git a/sdk/tables/Azure.Data.Tables/src/Extensions/TableClientBuilderExtensions.cs b/sdk/tables/Azure.Data.Tables/src/Extensions/TableClientBuilderExtensions.cs index 94c7abaf1c4a0..f94452d2cfad4 100644 --- a/sdk/tables/Azure.Data.Tables/src/Extensions/TableClientBuilderExtensions.cs +++ b/sdk/tables/Azure.Data.Tables/src/Extensions/TableClientBuilderExtensions.cs @@ -21,6 +21,17 @@ public static IAzureClientBuilder AddTab return builder.RegisterClientFactory(options => new TableServiceClient(connectionString, options)); } + /// + /// Registers a instance with the provided + /// + public static IAzureClientBuilder AddTableServiceClient(this TBuilder builder, Uri serviceUri) + where TBuilder : IAzureClientFactoryBuilderWithCredential + { + return builder.RegisterClientFactory( + (options, token) => token != null ? new TableServiceClient(serviceUri, token, options) : new TableServiceClient(serviceUri, options), + requiresCredential: false); + } + /// /// Registers a instance with the provided and /// diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md b/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md index 595d2b4ff5b65..2e7f50d43e0bb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/CHANGELOG.md @@ -1,5 +1,15 @@ # Release History +## 5.2.0-beta.2 (Unreleased) + +### Features Added + +### Breaking Changes + +### Bugs Fixed + +### Other Changes + ## 5.2.0-beta.1 (2021-08-09) ### Features Added diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj index 08d2d6bb5d0bc..5ebc5be6b19e0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj @@ -2,7 +2,7 @@ Azure Cognitive Services Text Analytics is a cloud service that provides advanced natural language processing over raw text, and features like Language Detection, Sentiment Analysis, Key Phrase Extraction, Named Entity Recognition, Personally Identifiable Information (PII) Recognition, Linked Entity Recognition, Text Analytics for Health, and more. Microsoft Azure.AI.TextAnalytics client library - 5.2.0-beta.1 + 5.2.0-beta.2 5.1.0 Microsoft Azure Text Analytics diff --git a/sdk/translation/Azure.AI.Translation.Document/CHANGELOG.md b/sdk/translation/Azure.AI.Translation.Document/CHANGELOG.md index b8a3aee6aba0d..ef51a8740a232 100644 --- a/sdk/translation/Azure.AI.Translation.Document/CHANGELOG.md +++ b/sdk/translation/Azure.AI.Translation.Document/CHANGELOG.md @@ -1,5 +1,15 @@ # Release History +## 1.0.0-beta.5 (Unreleased) + +### Features Added + +### Breaking Changes + +### Bugs Fixed + +### Other Changes + ## 1.0.0-beta.4 (2021-08-10) ### Features Added diff --git a/sdk/translation/Azure.AI.Translation.Document/src/Azure.AI.Translation.Document.csproj b/sdk/translation/Azure.AI.Translation.Document/src/Azure.AI.Translation.Document.csproj index 2d57b79d06d7c..25de98f236c3a 100644 --- a/sdk/translation/Azure.AI.Translation.Document/src/Azure.AI.Translation.Document.csproj +++ b/sdk/translation/Azure.AI.Translation.Document/src/Azure.AI.Translation.Document.csproj @@ -3,7 +3,7 @@ Translator is a cloud-based machine translation service and is part of the Azure Cognitive Services family of cognitive APIs used to build intelligent apps. Translator is easy to integrate in your applications, websites, tools, and solutions. It allows you to add multi-language user experiences in 90 languages and dialects. And it can be used on any hardware platform with any operating system for text translation. Microsoft Azure.AI.Translation.Document client library - 1.0.0-beta.4 + 1.0.0-beta.5 Microsoft Azure Document Translation $(RequiredTargetFrameworks)